You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the frames are rendered with a fixed frame rate, this can however slow down the simulation loop quite significantly.
Therefore, this feature allows to render only at the time when an image is request.
One can switch in this mode by setting frame rate to zero.
Copy file name to clipboardExpand all lines: python/rcsss/_core/sim.pyi
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -159,11 +159,18 @@ class SimCameraSet:
159
159
160
160
classSimCameraSetConfig:
161
161
cameras: dict[str, SimCameraConfig]
162
-
frame_rate: int
163
162
max_buffer_frames: int
164
163
resolution_height: int
165
164
resolution_width: int
166
165
def__init__(self) ->None: ...
166
+
@property
167
+
defframe_rate(self) ->int:
168
+
"""
169
+
The frame rate in which the cameras render in Hz. If set to zero, the camera frames will render on demand and without fixed rate which takes away compute effort.
0 commit comments