繁体   English   中英

为什么 cv.matchShape 不像它声称的那样对翻译不变?

[英]Why cv.matchShape is NOT invariant to translation as it claims?

我有两个要匹配的轮廓(将它们视为任意二维闭合曲线)。 opencv声称matchShapes function 在平移、旋转和缩放下是不变的。 但在我看来情况并非如此,当我将 shift (10, 5)添加到其中一条曲线时,function 返回不同的结果,更不用说如果我做了更奇怪的事情。 这是为什么?

匹配形状

可重现的例子:

t = np.arange(0, np.pi, 0.001)
x, y = np.cos(t), np.sin(t)
xy = np.stack([x, y], -1)
print(cv.matchShapes(xy, xy, 1, 0))
print(cv.matchShapes(xy, xy + (2, 10), 1, 0))

您发送到cv.matchShapes()的对象需要是contour对象,它不同于直接的 2D numpy数组。 以下代码将您的曲线转换为 plot,

在此处输入图像描述

然后到图像并找到2条曲线的轮廓。

在此处输入图像描述

最后cv.matchShapes()运行。

output: 0为自匹配, 6.637412841570267e-12为与翻译曲线的匹配,翻译下的匹配非常准确。

import numpy as np
import cv2 as cv
import matplotlib.pyplot as plt

fig  = plt.figure()
ax   = fig.add_subplot(111)
t    = np.arange(0, np.pi, 0.001)
x, y = np.cos(t), np.sin(t)
ax.plot(x, y)

x_new = x + 2
y_new = y + 10
ax.plot(x_new, y_new, 'b')

[s.set_visible(False) for s in ax.spines.values()]
[t.set_visible(False) for t in ax.get_xticklines()]
[t.set_visible(False) for t in ax.get_yticklines()]
ax.axis('off')

plt.savefig('xy.jpg')

xy_img          = cv.imread('xy.jpg',  cv.IMREAD_COLOR)
xy_cpy          = cv.cvtColor(xy_img,   cv.COLOR_BGR2GRAY)
(threshold, bw) = cv.threshold(xy_cpy, 127, 255, cv.THRESH_BINARY)
contours, hier  = cv.findContours(bw, cv.RETR_LIST, cv.CHAIN_APPROX_NONE)
contours        = contours[0:-1] # remove box surounding whole image

print(cv.matchShapes(contours[0], contours[0], method=cv.CONTOURS_MATCH_I1, parameter=0))
print(cv.matchShapes(contours[0], contours[1], method=cv.CONTOURS_MATCH_I1, parameter=0))

cv.namedWindow("xy")
cv.drawContours(xy_img, contours, -1, (0, 255, 0), 3)
cv.imshow("xy", xy_img)

cv.waitKey()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM