hbVPRoi

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

图片ROI区域结构体,参数为ROI区域的四条边下标,编号从 0 开始。ROI区域的 width 等于 right - left + 1height = bottom - top + 1

  • 成员

    成员名称描述
    leftROI区域的左边下标。
    topROI区域的上边下标。
    rightROI区域的右边下标。
    bottomROI区域的下边下标。