0

ではopencv、サークル ファインダーにハフ変換を使用しています。コードは次のとおりです。

HoughCircles (diff, circles, CV_HOUGH_GRADIENT, 2, src.cols / 5, 200, 80, 20, 62);    

for (size_t i = 0; i < circles.size(); i++ )
{
    //if(circles[i][2]<62)
    {
        Point center(cvRound(circles[i][0]), cvRound(circles[i][1]));
        int radius = cvRound(circles[i][2]);
        // draw the green circle center
        circle( src, center, 3, Scalar(0,255,255), -1, 8, 0 );
        // draw the blue circle outline
        circle(src, center, radius, Scalar(0,255,0), 3, 8, 0 );
    }
}

私が直面している問題は、3 つの円が見つかった場合、3 番目の中心座標が整数ではなく分数であることがあり、4 つの円が見つかった場合にもこのエラーが発生することです。

xyz.exe の 0x75ebc41f で未処理の例外: Microsoft C++ 例外: cv::Exception at memory location 0x002df08c..

cout座標を中心にしようとした場合。

4

1 に答える 1

0

うーん、これは面白いです。私はあなたのコードを実行し、前後に記入しましたが、問題はありませんでした. 正直なところ、私は Linux と Mac マシンでしかテストしていません。これが私の完全な長さのコードです。それを試して、何が起こるか見てください。また、このソリューションはこちらで確認してください。

int main(int argc, char* argv[]) {

VideoCapture capture(0);
if (!capture.isOpened()) {
    LOG(FATAL) << "COULD NOT OPEN CAPTURE";
}

Mat frame;
capture >> frame;
if (frame.empty()) {
    LOG(FATAL) << "FRAME IS EMPTY!";
}

char key;
while ((int)key != 27) {

    capture >> frame;

    Mat gray;
    cvtColor(frame, gray, CV_BGR2GRAY);
    GaussianBlur(gray, gray, Size(9, 9), 2, 2);

    vector<Vec3f> circles;
    HoughCircles(gray, circles, CV_HOUGH_GRADIENT, 2, gray.cols/5,200,80,20,62);

    for (size_t i = 0; i < circles.size(); ++i) {
        Point center(cvRound(circles[i][0]), cvRound(circles[i][1]));
        int radius = cvRound(circles[i][2]);
        // draw the green circle center
        circle(frame, center, 3, Scalar(0,255,255), -1, 8, 0 );
        // draw the blue circle outline
        circle(frame, center, radius, Scalar(0,255,0), 3, 8, 0 );
    }

    imshow("frame", frame);
    key = waitKey(1);
}

return 0;
}
于 2013-02-22T21:52:52.943 に答える