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
StereoCamParam_ttypedef 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
stixel_t3. Object_t
Object_tLast updated
Was this helpful?
