現在、私は画像処理プロジェクトを開発しており、javacv を使用して画像処理コンポーネントを開発しています。画像の興味深い部分を抽出できたので、これらのオブジェクトの x 座標と y 座標を読み取る必要があります。これは私が抽出した画像です
そして、それらのオブジェクトを特定し、それらのオブジェクトの周りに正方形を描く必要があります. いくつかのチュートリアルを実行し、次のコードを使用してオブジェクトを識別しようとしました。
IplImage img="sourceimage";
CvSize sz = cvSize(img.width(), img.height());
IplImage gry=cvCreateImage(sz, img.depth(), 1);
cvCvtColor(img, gry, CV_BGR2GRAY);
cvThreshold(gry, gry, 200, 250, CV_THRESH_BINARY);
CvMemStorage mem = CvMemStorage.create();
CvSeq contours = new CvSeq();
CvSeq ptr = new CvSeq();
cvFindContours(gry, mem, contours, Loader.sizeof(CvContour.class) , CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE, cvPoint(0,0));
CvRect boundbox;
for (ptr = contours; ptr != null; ptr = ptr.h_next()) {
boundbox = cvBoundingRect(ptr, 0);
if(boundbox.height()>10||boundbox.height()>10){
cvRectangle( gry, cvPoint( boundbox.x(), boundbox.y() ), cvPoint( boundbox.x() + boundbox.width(), boundbox.y() + boundbox.height()),CvScalar.BLUE, 0, 0, 0 );
System.out.println(boundbox.x()+", "+boundbox.y());
}
}
cvShowImage("contures", gry);
cvWaitKey(0);
ただし、オブジェクトの周りに長方形として描画されません。これらのオブジェクトを識別するために cvFindContours メソッドを使用できるかどうか知りたいですか? javacv/opencv を使用して目的をアーカイブする方法を説明してください。