可能重複:
Understanding region of interest in openCV 2.4OpenCV的子圖像
我想從圖像獲取子圖像(一個由下面的紅色框爲界) (墊格式)。我該怎麼做呢?
這是我迄今取得的進展:
include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
using namespace std;
using namespace cv;
int main()
{
Mat imgray, thresh;
vector<vector<Point> >contours;
vector<Point> cnt;
vector<Vec4i> hierarchy;
Point leftmost;
Mat im = imread("igoy1.jpg");
cvtColor(im, imgray, COLOR_BGR2GRAY);
threshold(imgray, thresh, 127, 255, 0);
findContours(thresh, contours, hierarchy, RETR_TREE,CHAIN_APPROX_SIMPLE);
}
這個問題如已被提問和回答,至少[這裏](http://stackoverflow.com/questions/12705817/understanding-region-of-interest- in-opencv-2-4/12706208#12706208)and [there](http://stackoverflow.com/questions/12369697/access-sub-matrix-of-a-multidimensional-mat-in-opencv/12370641#12370641 ) – remi