Classes | |
class | RuntimeParameters |
Class containing parameters that defines the behavior of sl.Camera.Grab(). More... | |
struct | CameraParameters |
Structure containing the intrinsic parameters of a camera. More... | |
struct | CalibrationParameters |
Structure containing intrinsic and extrinsic parameters of the camera (translation and rotation). More... | |
struct | SVOData |
Structure containing data that can be stored in and retrieved from SVOs. That information will be ingested with sl.Camera.ingestDataIntoSVO and retrieved with sl.Camera.retrieveSVOData. More... | |
Enumerations | |
enum class | DEPTH_MODE |
Lists available depth computation modes. More... | |
enum class | MEASURE |
Lists retrievable measures. More... | |
enum class | REGION_OF_INTEREST_AUTO_DETECTION_STATE |
Lists the different states of region of interest auto detection. More... | |
|
strong |
Lists available depth computation modes.
|
strong |
Lists retrievable measures.
Enumerator | |
---|---|
DISPARITY | Disparity map. Each pixel contains 1 float. |
DEPTH | Depth map in sl.UNIT defined in sl.InitParameters.coordinateUnits. Each pixel contains 1 float. |
CONFIDENCE | Certainty/confidence of the depth map. Each pixel contains 1 float. |
XYZ | Point cloud. Each pixel contains 4 float (X, Y, Z, not used). |
XYZRGBA | Colored point cloud. Each pixel contains 4 float (X, Y, Z, color). |
XYZBGRA | Colored point cloud. Each pixel contains 4 float (X, Y, Z, color). |
XYZARGB | Colored point cloud. Each pixel contains 4 float (X, Y, Z, color). |
XYZABGR | Colored point cloud. Each pixel contains 4 float (X, Y, Z, color). |
NORMALS | Normal vectors map. Each pixel contains 4 float (X, Y, Z, 0). |
DISPARITY_RIGHT | Disparity map for right sensor. Each pixel contains 1 float. |
DEPTH_RIGHT | Depth map for right sensor. Each pixel contains 1 float. |
XYZ_RIGHT | Point cloud for right sensor. Each pixel contains 4 float (X, Y, Z, not used). |
XYZRGBA_RIGHT | Colored point cloud for right sensor. Each pixel contains 4 float (X, Y, Z, color). The color needs to be read as an unsigned char[4] representing the RGBA color. |
XYZBGRA_RIGHT | Colored point cloud for right sensor. Each pixel contains 4 float (X, Y, Z, color). The color needs to be read as an unsigned char[4] representing the BGRA color. |
XYZARGB_RIGHT | Colored point cloud for right sensor. Each pixel contains 4 float (X, Y, Z, color). The color needs to be read as an unsigned char[4] representing the ARGB color. |
XYZABGR_RIGHT | Colored point cloud for right sensor. Each pixel contains 4 float (X, Y, Z, color). The color needs to be read as an unsigned char[4] representing the ABGR color. |
NORMALS_RIGHT | Normal vectors map for right view. Each pixel contains 4 float (X, Y, Z, 0). |
DEPTH_U16_MM | Depth map in millimeter whatever the sl.UNIT defined in sl.InitParameters.coordinateUnits. |
DEPTH_U16_MM_RIGHT | Depth map in millimeter for right sensor. Each pixel contains 1 unsigned short. |
|
strong |
Lists the different states of region of interest auto detection.