robokudo.descriptors.camera_configs.config_kinect_robot_wo_transform

Classes

CameraConfig

Configuration class for a Kinect camera setup without transform lookup.

Module Contents

class robokudo.descriptors.camera_configs.config_kinect_robot_wo_transform.CameraConfig

Configuration class for a Kinect camera setup without transform lookup.

This class defines the configuration parameters for a Kinect camera in a robotic setup, similar to config_kinect_robot.py but with viewpoint lookup disabled. It includes interface settings, topic names, and transformation settings.

Variables:
  • interface_type – Type of camera interface, set to “Kinect”

  • depthOffset – Offset value for depth measurements

  • filterBlurredImages – Flag to enable/disable filtering of blurred images

  • color2depth_ratio – Ratio between color and depth image resolution (x, y)

  • hi_res_mode – Enable high resolution mode for better depth-to-RGB matching

  • topic_depth – ROS topic for depth image data

  • topic_color – ROS topic for color image data

  • topic_cam_info – ROS topic for camera information

  • depth_hints – Transport hints for depth image subscription

  • color_hints – Transport hints for color image subscription

  • tf_from – Frame ID of the camera’s optical frame

  • tf_to – Target frame ID for transformations

  • lookup_viewpoint – Flag to enable viewpoint lookup (disabled in this config)

  • only_stable_viewpoints – Flag to use only stable viewpoints

  • max_viewpoint_distance – Maximum allowed distance for viewpoint changes

  • max_viewpoint_rotation – Maximum allowed rotation for viewpoint changes

  • semantic_map – Filename of the semantic map configuration

Note

This configuration is identical to config_kinect_robot.py except that lookup_viewpoint is set to False by default.

interface_type = 'Kinect'
depthOffset = 0
filterBlurredImages = True
color2depth_ratio = (0.5, 0.5)
hi_res_mode = True
topic_depth = '/kinect_head/depth_registered/image_raw/compressedDepth'
topic_color = '/kinect_head/rgb/image_color/compressed'
topic_cam_info = '/kinect_head/rgb/camera_info'
depth_hints = 'compressedDepth'
color_hints = 'compressed'
lookup_viewpoint = False
tf_from = 'head_mount_kinect_rgb_optical_frame'
tf_to = 'map'
only_stable_viewpoints = True
max_viewpoint_distance = 0.01
max_viewpoint_rotation = 1.0
semantic_map = 'semantic_map_iai_kitchen.yaml'