Page cover

Data structure and parameter description

This section lists the important data structures used in the project to help understand the core implementation logic.

Data structure

1. StereoCamParam_t

Represents the parameter structure of the camera, including internal and external parameters, parallax range and other information.

typedef struct _StereoCamParam_t {
double m_dBaseLine; // Stereo camera baseline distance (unit: meter)
double m_dMaxDist; // Maximum depth distance (unit: meter)
int m_nNumberOfDisp; // Disparity range
int m_nWindowSize; // Matching window size
struct {
double m_dFocalLength; // Focal length
double m_dCameraHeight; // Camera height (unit: meter)
double m_dPitchDeg; // Camera pitch angle (unit: degree)
Size m_sizeSrc; // Image resolution
} objCamParam;
} StereoCamParam_t;

2. stixel_t

Core data structure used to describe columnar pixels (Stixel).


3. Object_t

Represents the target object after segmentation.

Last updated

Was this helpful?