匹配模板的OpenCV坐标

时间:2018-07-02 21:49:08

标签: java opencv coordinate-systems template-matching

我目前正在尝试使用以下图像从openCV教程编程模板匹配器: enter image description here image

我成功地获得了比赛,但是我不需要像绘制矩形那样的可视化

 Imgproc.rectangle(img, matchLoc, new Point(matchLoc.x + templ.cols(),
            matchLoc.y + templ.rows()), new Scalar(0, 255, 0));

更重要的是,我不想获取匹配模板的坐标。

        System.out.println(String.format("X: %s \nY: %s" , matchLoc.x, matchLoc.y)); 
       -> X: 259.0  Y: 349.0

如何检索创建结果矩形的每个Point的坐标,或者可能已经有用于该矩形的方法?

0 个答案:

没有答案