書いているコードに問題がありbwlabel
、C++ で操作しようとしています。OpenCVチュートリアルのドキュメントに従おうとしたため、メモリの割り当て解除の問題が発生しました。理由はわかりません。refcount
変数の変数本体に問題があるようですMat
。
これが私のコードです:
void VideoSeg::bwlabel(IplImage *srce, IplImage *out)
{
namedWindow( "wndNameOut", CV_GUI_NORMAL );
cvConvertScale(srce,srce,255.);
Ptr<IplImage> srcx = srce;
Mat src(srcx);
imshow( "wndNameOut", src); //The image is succesfully plotted
SimpleBlobDetector blobDetector( params );
blobDetector.create("SimpleBlob");
blobDetector.detect(src, keyPoints ); // The problem appears in this line
for(int i=0; i<keyPoints.size(); i++ )
{
cv::floodFill(src,keyPoints[i].pt, Scalar::all((i+1)*255/(keyPoints.size()+1)));
}
IplImage outx = src;
//http://docs.opencv.org/doc/tutorials/core/interoperability_with_OpenCV_1/interoperability_with_OpenCV_1.html
(*out) = outx;
cout << "Keypoints " << keyPoints.size() << endl;
}