我想从图像(Mat格式)获得一个子图像(由下面的红框限定的图像)。我该怎么做?
这是我目前的进展:
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);
}
答案 0 :(得分:28)
您可以开始选择轮廓(在您的情况下,与手相对应的轮廓)。 然后,计算此轮廓的边界矩形。 最后,你从中创建一个新的矩阵标题。
int n=0;// Here you will need to define n differently (for instance pick the largest contour instead of the first one)
cv::Rect rect(contours[n]);
cv::Mat miniMat;
miniMat = imgray(rect);
警告:在这种情况下,miniMat是imgray的子区域。这意味着如果修改前者,也可以修改后者。使用miniMat.copyTo(anotherMat)
来避免这种情况。
我希望它有所帮助, 祝你好运