Source code for isaaclab.sensors.tacsl_sensor.visuotactile_sensor_cfg

# Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause


# needed to import for allowing type-hinting: torch.Tensor | None
from __future__ import annotations

from dataclasses import MISSING

from isaaclab.markers import VisualizationMarkersCfg
from isaaclab.markers.config import VISUO_TACTILE_SENSOR_MARKER_CFG
from isaaclab.utils import configclass
from isaaclab.utils.assets import ISAACLAB_NUCLEUS_DIR

from ..camera.tiled_camera_cfg import TiledCameraCfg
from ..sensor_base_cfg import SensorBaseCfg
from .visuotactile_sensor import VisuoTactileSensor

##
# GelSight Render Configuration
##


@configclass
class GelSightRenderCfg:
    """Configuration for GelSight sensor rendering parameters.

    This configuration defines the rendering parameters for example-based tactile image synthesis
    using the Taxim approach.

    Reference:
        Si, Z., & Yuan, W. (2022). Taxim: An example-based simulation model for GelSight
        tactile sensors. IEEE Robotics and Automation Letters, 7(2), 2361-2368.
        https://arxiv.org/abs/2109.04027

    Data Directory Structure:
        The sensor data should be organized in the following structure::

            base_data_path/
            └── sensor_data_dir_name/
                ├── bg.jpg              # Background image (required)
                ├── polycalib.npz       # Polynomial calibration data (required)
                └── real_bg.npy         # Real background data (optional)

    Example:
        Using predefined sensor configuration::

            from isaaclab_assets.sensors import GELSIGHT_R15_CFG

            sensor_cfg = VisuoTactileSensorCfg(render_cfg=GELSIGHT_R15_CFG)

        Using custom sensor data::

            custom_cfg = GelSightRenderCfg(
                base_data_path="/path/to/my/sensors",
                sensor_data_dir_name="my_custom_sensor",
                image_height=480,
                image_width=640,
                mm_per_pixel=0.05,
            )
    """

    base_data_path: str | None = f"{ISAACLAB_NUCLEUS_DIR}/TacSL"
    """Base path to the directory containing sensor calibration data.

    If ``None``, defaults to Isaac Lab Nucleus directory at
    ``{ISAACLAB_NUCLEUS_DIR}/TacSL``. Download the data from Nucleus if not present locally.
    If a custom path is provided, uses the data directly from that location without downloading.
    """

    sensor_data_dir_name: str = MISSING
    """Directory name containing the sensor calibration and background data.

    This should be a relative path (directory name) inside the :attr:`base_data_path`.
    """

    background_path: str = "bg.jpg"
    """Filename of the background image within the data directory."""

    calib_path: str = "polycalib.npz"
    """Filename of the polynomial calibration data within the data directory."""

    real_background: str = "real_bg.npy"
    """Filename of the real background data within the data directory."""

    image_height: int = MISSING
    """Height of the tactile image in pixels."""

    image_width: int = MISSING
    """Width of the tactile image in pixels."""

    num_bins: int = 120
    """Number of bins for gradient magnitude and direction quantization."""

    mm_per_pixel: float = MISSING
    """Millimeters per pixel conversion factor for reconstructing 2D tactile image from the height map."""


##
# Visuo-Tactile Sensor Configuration
##


[docs]@configclass class VisuoTactileSensorCfg(SensorBaseCfg): """Configuration for the visuo-tactile sensor. This sensor provides both camera-based tactile sensing and force field tactile sensing. It can capture tactile RGB/depth images and compute penalty-based contact forces. """ class_type: type = VisuoTactileSensor # Sensor type and capabilities render_cfg: GelSightRenderCfg = MISSING """Configuration for GelSight sensor rendering. This defines the rendering parameters for converting depth maps to realistic tactile images. Defaults to GelSight R1.5 parameters. Use predefined configs like GELSIGHT_R15_CFG or GELSIGHT_MINI_CFG from isaaclab_assets.sensors for standard sensor models. """ enable_camera_tactile: bool = True """Whether to enable camera-based tactile sensing.""" enable_force_field: bool = True """Whether to enable force field tactile sensing.""" # Force field configuration tactile_array_size: tuple[int, int] = MISSING """Number of tactile points for force field sensing in (rows, cols) format.""" tactile_margin: float = MISSING """Margin for tactile point generation (in meters). This parameter defines the exclusion margin from the edges of the elastomer mesh when generating the tactile point grid. It ensures that force field points are not generated on the very edges of the sensor surface where geometry might be unstable or less relevant for contact. """ contact_object_prim_path_expr: str | None = None """Prim path expression to find the contact object for force field computation. This specifies the object that will make contact with the tactile sensor. The sensor will automatically find the SDF collision mesh within this object for optimal force field computation. .. note:: The expression can contain the environment namespace regex ``{ENV_REGEX_NS}`` which will be replaced with the environment namespace. Example: ``{ENV_REGEX_NS}/ContactObject`` will be replaced with ``/World/envs/env_.*/ContactObject``. .. attention:: For force field computation to work properly, the contact object must have an SDF collision mesh. The sensor will search for the first SDF mesh within the specified prim hierarchy. """ # Force field physics parameters normal_contact_stiffness: float = 1.0 """Normal contact stiffness for penalty-based force computation.""" friction_coefficient: float = 2.0 """Friction coefficient for shear forces.""" tangential_stiffness: float = 0.1 """Tangential stiffness for shear forces.""" camera_cfg: TiledCameraCfg | None = None """Camera configuration for tactile RGB/depth sensing. If None, camera-based sensing will be disabled even if :attr:`enable_camera_tactile` is True. """ # Visualization visualizer_cfg: VisualizationMarkersCfg = VISUO_TACTILE_SENSOR_MARKER_CFG.replace( prim_path="/Visuals/TactileSensor" ) """The configuration object for the visualization markers. .. note:: This attribute is only used when debug visualization is enabled. """ trimesh_vis_tactile_points: bool = False """Whether to visualize tactile points for debugging using trimesh. Defaults to False.""" visualize_sdf_closest_pts: bool = False """Whether to visualize SDF closest points for debugging. Defaults to False."""