1 | initial version |
Specific area of an image could be referenced as ROI, described in docs as:
// create a new 320x240 image
Mat img(Size(320,240),CV_8UC3);
// select a ROI
Mat roi(img, Rect(10,10,100,100));
// fill the ROI with (0,255,0) (which is green in RGB space);
// the original 320x240 image will be modified
roi = Scalar(0,255,0);
2 | No.2 Revision |
Specific area of an image could be referenced as ROI, described in docs as:
// create a new 320x240 image
Mat img(Size(320,240),CV_8UC3);
// select a ROI
Mat roi(img, Rect(10,10,100,100));
// fill the ROI with (0,255,0) (which is green in RGB space);
// the original 320x240 image will be modified
roi = Scalar(0,255,0);
In Java it looks like:
Mat roi = img.submat(rowStart, rowEnd, colStart, colEnd);