来自Mat图像的OpenCV子图像

时间:2012-10-17 09:52:34

标签: c++ image image-processing opencv contour

  

可能重复:
  Understanding region of interest in openCV 2.4

我想从图像(Mat格式)获得一个子图像(由下面的红框限定的图像)。我该怎么做?

enter image description here

这是我目前的进展:

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);
}

1 个答案:

答案 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)来避免这种情况。

我希望它有所帮助, 祝你好运