Raycaster sensor#
gs.sensors.Raycaster (also available as gs.sensors.Lidar) casts a fixed pattern of rays from a link and returns the hit points and distances, for lidar, proximity, and obstacle sensing. gs.sensors.DepthCamera drives the same machinery with a camera ray grid and adds read_image(). For usage, how ray casting works, choosing a pattern, and hardware presets, see the raycaster sensing guide.
gs.sensors.Raycaster#
- class genesis.options.sensors.options.Raycaster(*, history_length: int = 0, delay: float = 0.0, jitter: float = 0.0, draw_debug: bool = False, entity_idx: int = -1, resolution: tuple[float, ...] | float = 0.0, bias: tuple[float, ...] | float = 0.0, noise: tuple[float, ...] | float = 0.0, random_walk: tuple[float, ...] | float = 0.0, link_idx_local: int = 0, pos_offset: tuple[float, float, float] = (0.0, 0.0, 0.0), euler_offset: tuple[float, float, float] = (0.0, 0.0, 0.0), pattern: genesis.options.sensors.raycaster.RaycastPattern, min_range: float = 0.0, max_range: float = 20.0, no_hit_value: float | None = None, return_world_frame: bool = False, return_points: bool = True, debug_sphere_radius: float = 0.02, debug_ray_start_color: tuple[float, float, float, float] = (0.5, 0.5, 1.0, 1.0), debug_ray_hit_color: tuple[float, float, float, float] = (1.0, 0.5, 0.5, 1.0)) None[source]#
Raycaster sensor that performs ray casting to get distance measurements and point clouds.
- Parameters:
pattern (RaycastPatternOptions) – The raycasting pattern for the sensor.
min_range (float, optional) – The minimum sensing range in meters. Defaults to 0.0.
max_range (float, optional) – The maximum sensing range in meters. Defaults to 20.0.
no_hit_value (float, optional) – The value to return for no hit. Defaults to max_range if not specified.
return_world_frame (bool, optional) – Whether to return points in the world frame. Defaults to False (local frame).
return_points (bool, optional) – Whether to return the per-ray hit points. Defaults to True. When False,
read().pointsis None and only the hit distances are measured, cutting the sensor’s memory footprint and per-step cost to about a quarter. Pick False for distance-only sensing (e.g. depth images); keep True when the point cloud is needed.debug_sphere_radius (float, optional) – The radius of each debug sphere drawn in the scene. Defaults to 0.02.
debug_ray_start_color (array-like[float, float, float, float], optional) – The color of each debug ray start sphere drawn in the scene. Defaults to (0.5, 0.5, 1.0, 1.0).
debug_ray_hit_color (array-like[float, float, float, float], optional) – The color of each debug ray hit point sphere drawn in the scene. Defaults to (1.0, 0.5, 0.5, 1.0).
- class genesis.engine.sensors.raycaster.RaycasterSensor(options: Raycaster, idx: int, shared_context, shared_metadata, manager: SensorManager)[source]#
Bases:
KinematicSensorMixin,SimpleSensor[Raycaster,RaycastContext,RaycasterSharedMetadata,RaycasterReturnType]
gs.sensors.DepthCamera#
A raycaster with a DepthCameraPattern; read_image() reshapes the per-ray distances into a depth image of shape ([n_envs,] height, width).
- class genesis.options.sensors.options.DepthCamera(*, history_length: int = 0, delay: float = 0.0, jitter: float = 0.0, draw_debug: bool = False, entity_idx: int = -1, resolution: tuple[float, ...] | float = 0.0, bias: tuple[float, ...] | float = 0.0, noise: tuple[float, ...] | float = 0.0, random_walk: tuple[float, ...] | float = 0.0, link_idx_local: int = 0, pos_offset: tuple[float, float, float] = (0.0, 0.0, 0.0), euler_offset: tuple[float, float, float] = (0.0, 0.0, 0.0), pattern: genesis.options.sensors.raycaster.DepthCameraPattern, min_range: float = 0.0, max_range: float = 20.0, no_hit_value: float | None = None, return_world_frame: bool = False, return_points: bool = True, debug_sphere_radius: float = 0.02, debug_ray_start_color: tuple[float, float, float, float] = (0.5, 0.5, 1.0, 1.0), debug_ray_hit_color: tuple[float, float, float, float] = (1.0, 0.5, 0.5, 1.0)) None[source]#
Depth camera that uses ray casting to obtain depth images.
- Parameters:
pattern (DepthCameraPattern) – The raycasting pattern configuration for the sensor.
- class genesis.engine.sensors.depth_camera.DepthCameraSensor(options: Raycaster, idx: int, shared_context, shared_metadata, manager: SensorManager)[source]#
Bases:
RaycasterSensor,Sensor[DepthCamera,RaycastContext,RaycasterSharedMetadata,RaycasterReturnType]
Ray patterns#
A pattern is a local description of the rays: it fixes a start point and a unit direction per ray in the sensor’s frame. Pass an instance as the pattern argument, or subclass RaycastPattern for a custom layout.
- class genesis.options.sensors.raycaster.SphericalPattern(fov: tuple[float | tuple[float, float], float | tuple[float, float]] = (360.0, 60.0), n_points: tuple[int, int] = (128, 64), angular_resolution: tuple[float | None, float | None] = (None, None), angles: tuple[Optional[Sequence[float]], Optional[Sequence[float]]] = (None, None))[source]#
Configuration for spherical ray pattern.
Either specify: - (
n_points,fov) for uniform spacing by count. - (angular_resolution,fov) for uniform spacing by resolution. -anglesfor custom angles.- Parameters:
fov (tuple[float | tuple[float, float], float | tuple[float, float]]) – Field of view in degrees for horizontal and vertical directions. Defaults to (360.0, 30.0). If a single float is provided, the FOV is centered around 0 degrees. If a tuple is provided, it specifies the (min, max) angles.
n_points (tuple[int, int]) – Number of horizontal/azimuth and vertical/elevation scan lines. Defaults to (64, 128).
angular_resolution (tuple[float, float], optional) – Horizontal and vertical angular resolution in degrees. Overrides n_points if provided.
angles (tuple[Sequence[float], Sequence[float]], optional) – Array of horizontal/vertical angles. Overrides the other options if provided.
- class genesis.options.sensors.raycaster.GridPattern(resolution: float = 0.1, size: tuple[float, float] = (2.0, 2.0), direction: tuple[float, float, float] = (0.0, 0.0, -1.0))[source]#
Configuration for grid-based ray casting.
Defines a 2D grid of rays in the sensor coordinate system.
- Parameters:
resolution (float) – Grid spacing in meters.
size (tuple[float, float]) – Grid dimensions (length, width) in meters.
direction (tuple[float, float, float]) – Ray direction vector.
- class genesis.options.sensors.raycaster.DepthCameraPattern(res: tuple[int, int] = (128, 96), fx: float | None = None, fy: float | None = None, cx: float | None = None, cy: float | None = None, fov_horizontal: float = 90.0, fov_vertical: float | None = None)[source]#
Configuration for pinhole depth camera ray casting.
You can configure the camera intrinsics in several ways: 1. Provide fx and fy directly (and optionally cx, cy) 2. Provide fov_horizontal only (fy computed to maintain aspect ratio) 3. Provide fov_vertical only (fx computed to maintain aspect ratio) 4. Provide both fov_horizontal and fov_vertical
If cx or cy are not provided, they default to the image center.
- Parameters:
res (tuple[int, int]) – The resolution of the camera, specified as a tuple (width, height).
fx (float | None) – Focal length in x direction in pixels. Computed from fov_horizontal if None.
fy (float | None) – Focal length in y direction in pixels. Computed from fov_vertical if None.
cx (float | None) – Principal point x coordinate in pixels. Defaults to image center if None.
cy (float | None) – Principal point y coordinate in pixels. Defaults to image center if None.
fov_horizontal (float) – Horizontal field of view in degrees. Used to compute fx if fx is None.
fov_vertical (float | None) – Vertical field of view in degrees. Used to compute fy if fy is None.
See also#
Sensors: sensor overview.
Raycaster sensors: usage, how ray casting works, patterns, and hardware presets.
Camera sensor: visual (RGB) sensing.