IplImage結構中的一個元素;struct _IplROI *roi; //圖像感興趣區域,當該值非空時,只對該區域進行處理 。
基本介紹
- 中文名:IplROI
- 實質:IplImage結構中的一個元素
- 注釋:ROI :表示感興趣的區域.
- 實質:程式
ROI :Region of Interest,表示感興趣的區域.
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;