web-dev-qa-db-ja.com

MatイメージからのOpenCVサブイメージ

重複の可能性:
openCV 2.4の関心領域を理解する

画像(マット形式)からサブ画像(下の赤いボックスで囲まれた画像)を取得します。どうすればいいですか?

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);
}
13
Og Namdik

輪郭(この場合は、手に対応する輪郭)の選択を開始できます。次に、この輪郭の外接する四角形を計算します。最後に、それから新しいマトリックスヘッダーを作成します。

_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)を使用します。

お役に立てば幸いです

29