IplROI
说明 : 百度说明 IplImage结构中的一个元素;struct _IplROI *roi; //图像感兴趣区域,当该值非空时,只对该区域进行处理 。
函数构造
typedef struct _IplROI
{
int coi; /* 0 - no COI (all channels are selected), 1 - 0th channel is selected ...*/
int xOffset;
int yOffset;
int width;
int height;
}
IplROI;
int coi :
int xOffset :
int yOffset :
int width :
int height :