1

Xcode4 OSX10.7でopenCV2.3.1を使用しています

基本的な背景の減算後に輪郭を見つけてさまざまな色で表示する(デモ)コードがあります。この部分は機能します。

特定のサイズよりも小さい輪郭を除外したいのですが、contourArea()を呼び出すと、次のアサーションが失敗します。

OpenCV Error: Assertion failed (0 <= i && i < (int)vv.size()) in getMat, file /opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_graphics_opencv/opencv/work/OpenCV-2.3.1/modules/core/src/matrix.cpp, line 912
terminate called throwing an exception

関連するコードは次のとおりです。

for( ; idx >= 0; idx = hierarchy[idx][0] ) {
           //double area = contourArea(contours);
           //cout << area << endl;
           Scalar color( rand()&255, rand() &255, rand()&255);
           drawContours(dst, contours, idx, color);
       }

これが最後のforループです:

#include "opencv/cv.h"
#include "opencv/highgui.h"
#include <iostream>
#include <vector>
#include "opencv2/video/background_segm.hpp"


using namespace std;
using namespace cv;

void refineSegments(const Mat& img, Mat& mask, Mat& dst)
{
int niters = 3;

vector<vector<Point> > contours;
vector<Vec4i> hierarchy;

Mat temp;

dilate(mask, temp, Mat(), Point(-1,-1), niters);
erode(temp, temp, Mat(), Point(-1,-1), niters*2);
dilate(temp, temp, Mat(), Point(-1,-1), niters);

findContours( temp, contours, hierarchy, CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE );

dst = Mat::zeros(img.size(), CV_8UC3);

if( contours.size() == 0 )
    return;

// iterate through all the top-level contours,
// draw each connected component with its own random color
int idx = 0;

for( ; idx >= 0; idx = hierarchy[idx][0] ) {
    double area = contourArea(contours);
    cout << area << endl;
    Scalar color( rand()&255, rand() &255, rand()&255);
    drawContours(dst, contours, idx, color);
}
}

ソースのコードの一部に不満を言っているのは次のとおりです。

if( k == STD_VECTOR_VECTOR )
{
    int t = type(i);
    const vector<vector<uchar> >& vv = *(const vector<vector<uchar> >*)obj;
    CV_Assert( 0 <= i && i < (int)vv.size() );
    const vector<uchar>& v = vv[i];

    return !v.empty() ? Mat(size(i), t, (void*)&v[0]) : Mat();
}

しかし、私はこれの頭や尾を作ることはできません...私はgetMatに渡されるintですが、それが実際に何であるか、そしてなぜそれが0未満でなければならないのかは私を超えています>__<。この標準関数がこれを行うことは私には非常に奇妙に思えますが、誰かがこれに少し光を当てることができますか?

4

1 に答える 1

1

単純なタイプミスです。あなたはcontourArea関数にすべての輪郭を与えています:

double area = contourArea(contours);

あなたはおそらく欲しかった

double area = contourArea(contours[idx]);
于 2012-03-14T12:36:50.830 に答える