hbVPRoi

typedef struct hbVPRoi { int32_t left; int32_t top; int32_t right; int32_t bottom; } hbVPRoi;

The picture ROI region structure, the parameters are the four sides subscripts of the ROI region, numbered from 0 . The width of the ROI region is equal to right - left + 1 , height = bottom - top + 1 .

  • Member

    Member NameDescription
    leftThe left subscript of the ROI area.
    topThe upper subscript of the ROI area.
    rightThe right subscript of the ROI area.
    bottomThe lower subscript of the ROI area.