Spaces:
Sleeping
Sleeping
remove world
Browse files- visualization/logger.py +3 -3
visualization/logger.py
CHANGED
@@ -149,7 +149,7 @@ class SimulationLogger:
|
|
149 |
rotation_q = euler_to_quaternion(helper_keyframe['angle'])
|
150 |
|
151 |
rr.log(
|
152 |
-
f"world/
|
153 |
rr.Transform3D(
|
154 |
translation=position,
|
155 |
rotation=rr.Quaternion(xyzw=rotation_q),
|
@@ -159,7 +159,7 @@ class SimulationLogger:
|
|
159 |
)
|
160 |
|
161 |
rr.log(
|
162 |
-
f"world/
|
163 |
rr.Pinhole(
|
164 |
image_from_camera=self.K,
|
165 |
width=1920,
|
@@ -169,7 +169,7 @@ class SimulationLogger:
|
|
169 |
)
|
170 |
|
171 |
rr.log(
|
172 |
-
f"world/
|
173 |
rr.Points3D(colors=[1.0, 1.0, 0.0, 1.0]),
|
174 |
timeless=True
|
175 |
)
|
|
|
149 |
rotation_q = euler_to_quaternion(helper_keyframe['angle'])
|
150 |
|
151 |
rr.log(
|
152 |
+
f"world/helper_camera_{keyframe_idx}",
|
153 |
rr.Transform3D(
|
154 |
translation=position,
|
155 |
rotation=rr.Quaternion(xyzw=rotation_q),
|
|
|
159 |
)
|
160 |
|
161 |
rr.log(
|
162 |
+
f"world/helper_camera_{keyframe_idx}/image",
|
163 |
rr.Pinhole(
|
164 |
image_from_camera=self.K,
|
165 |
width=1920,
|
|
|
169 |
)
|
170 |
|
171 |
rr.log(
|
172 |
+
f"world/helper_camera_{keyframe_idx}/point",
|
173 |
rr.Points3D(colors=[1.0, 1.0, 0.0, 1.0]),
|
174 |
timeless=True
|
175 |
)
|