Configure a Join Color Depth View
Combine the streams of a color and a depth camera already registered in your config to create a view that outputs the combined and aligned image.
This specific model is good if you don’t need to align the streams.
If you need to adjust the alignment between the depth and color frames, use the align_color_depth_extrinsics
model or thealign_color_depth_homography
model.
On the COMPONENTS subtab, navigate to the Create Component menu.
Enter a name for your camera, select the type camera
, and select the join_color_depth
model.

Fill in the attributes for your join color depth view:

{
"name": "<camera_name>",
"type": "camera",
"model" : "join_color_depth",
"attributes": {
"output_image_type": "<color|depth>",
"color_camera_name": "<camera_name>",
"depth_camera_name": "<camera_name>",
"intrinsic_parameters": {
"width_px": <integer>, # the expected width of the aligned pic
"height_px": <integer>, # the expected height of the aligned pic
"fx": <float64>,
"fy": <float64>,
"ppx": <float64>,
"ppy": <float64>
},
"distortion_parameters": {
"rk1": <float64>,
"rk2": <float64>,
"rk3": <float64>,
"tp1": <float64>,
"tp2": <float64>
},
"debug": <boolean>
}
}
The following attributes are available for join color depth views:
Name | Inclusion | Description |
---|---|---|
output_image_type | Required | Specify color or depth for the output stream. |
color_camera_name | Required | Name of the color camera to pull images from. |
depth_camera_name | Required | Name of the depth camera to pull images from. |
intrinsic_parameters | Required | The intrinsic parameters of the camera used to do 2D <-> 3D projections:
|
distortion_parameters | Optional | Modified Brown-Conrady parameters used to correct for distortions caused by the shape of the camera lens:
|
debug | Optional | Enables the debug outputs from the camera if true . Defaults to false . |
View the camera stream
Once your camera is connected, go to the CONTROL tab, and click on the camera’s dropdown menu. Toggle “View Camera”. If everything is configured correctly, you will see the live video feed from your camera.