搜索
typedef struct hbVPRoi { int32_t left; int32_t top; int32_t right; int32_t bottom; } hbVPRoi;
图片ROI区域结构体,参数为ROI区域的四条边下标,编号从 0 开始。ROI区域的 width 等于 right - left + 1 ,height = bottom - top + 1 。
0
width
right - left + 1
height = bottom - top + 1
成员
left
top
right
bottom