我是OpenCV的新手,我一直在寻找教程和这里的问题,但我无法理解并为模板匹配设置了一个阈值。
这是我目前正在使用的代码。 选择照片时触发的功能
BitmapDrawable drawable = (BitmapDrawable) imgView.getDrawable();
Bitmap viewBitmap = drawable.getBitmap();
Bitmap bitmapMatch = BitmapFactory.decodeResource(getResources(), R.drawable.template_1);
run(viewBitmap, bitmapMatch, "result.png", Imgproc.TM_CCOEFF_NORMED);
运行功能
public void run(Bitmap inFile, Bitmap templateFile, String outFile, int match_method) {
System.out.println("\nRunning Template Matching");
Mat img = new Mat();
Utils.bitmapToMat(inFile, img);
Mat templ = new Mat();
Utils.bitmapToMat(templateFile, templ);
// / Create the result matrix
int result_cols = img.cols() - templ.cols() + 1;
int result_rows = img.rows() - templ.rows() + 1;
Mat result = new Mat(result_rows, result_cols, CvType.CV_32FC1);
// / Do the Matching and Normalize
Imgproc.matchTemplate(img, templ, result, match_method);
// Core.normalize(result, result, 0, 1, Core.NORM_MINMAX, -1, new Mat());
// / Localizing the best match with minMaxLoc
Core.MinMaxLocResult mmr = Core.minMaxLoc(result);
Point matchLoc;
if (match_method == Imgproc.TM_SQDIFF || match_method == Imgproc.TM_SQDIFF_NORMED) {
matchLoc = mmr.minLoc;
} else {
matchLoc = mmr.maxLoc;
}
Log.d(TAG, "point: " + mmr.maxVal);
// / Show me what you got
// Core.rectangle(img, matchLoc, new Point(matchLoc.x + templ.cols(),
// matchLoc.y + templ.rows()), new Scalar(255, 255, 255));
// Save the visualized detection.
System.out.println("Writing "+ outFile);
if (match >= 0.8)
SaveImage(img,outFile);
else
Log.d(TAG, "No Match Found");
}
我想在if语句if (match >= 0.8)
添加一个阈值,以便在匹配等于或超过阈值(0.8)时保存图像。否则,图像将不会保存。
请帮助,谢谢。
答案 0 :(得分:1)
Core.MinMaxLocResult
包含maxLoc
,maxVal
,minLoc
和minVal
值。只需根据具体情况分配match=mmr.maxVal
或match=mmr.minVal
。
或者,您可以在result
Mat中索引以获取您的值,然后测试它是否超过0.8:
double[] resultVal = result.get(matchLoc.y, matchLoc.x);
if (resultVal[0] >= 0.8) ...