gpt4 book ai didi

python - OpenCV:适合检测到的边缘

转载 作者:太空狗 更新时间:2023-10-29 22:29:52 26 4
gpt4 key购买 nike

我使用 Canny 边缘检测来检测水波的边缘。但是,我想为这条边拟合一条曲线。这在 OpenCV 中可能吗?

这是边缘检测之前的图像: Image before edge detection.

这是边缘检测操作的结果: Result after detecting

代码是从 OpenCV 教程中的示例复制而来的:

import cv2
import numpy as np
from matplotlib import pyplot as plt

img = cv2.imread('BW.JPG',0)
edges = cv2.Canny(img,100,200)

plt.plot(1),plt.imshow(edges,cmap = 'gray')
plt.title('WAVE')
plt.show()

最佳答案

波浪非常简单,因此我们将多项式曲线拟合到由 cv2 的输出定义的主边。首先,我们要获取该主边的点。假设您的原点与图像上的一样,位于左上角。查看原始图像,我认为如果我们只取 (750, 1500) 范围内具有最大 y 的点,我们将对我们的兴趣点有一个很好的近似。

import cv2
import numpy as np
from matplotlib import pyplot as plt
from numba import jit

# Show plot
img = cv2.imread('wave.jpg',0)
edges = cv2.Canny(img,100,200)

# http://stackoverflow.com/a/29799815/1698058
# Get index of matching value.
@jit(nopython=True)
def find_first(item, vec):
"""return the index of the first occurence of item in vec"""
for i in range(len(vec)):
if item == vec[i]:
return i
return -1

bounds = [750, 1500]
# Now the points we want are the lowest-index 255 in each row
window = edges[bounds[1]:bounds[0]:-1].transpose()

xy = []
for i in range(len(window)):
col = window[i]
j = find_first(255, col)
if j != -1:
xy.extend((i, j))
# Reshape into [[x1, y1],...]
data = np.array(xy).reshape((-1, 2))
# Translate points back to original positions.
data[:, 1] = bounds[1] - data[:, 1]

如果我们绘制这些点,我们可以看到它们非常接近我们的目标。

plt.figure(1, figsize=(8, 16))
ax1 = plt.subplot(211)
ax1.imshow(edges,cmap = 'gray')
ax2 = plt.subplot(212)
ax2.axis([0, edges.shape[1], edges.shape[0], 0])
ax2.plot(data[:,1])
plt.show()

extracted points

现在我们已经有了一个坐标对数组,我们可以使用 numpy.polyfit生成最佳拟合多项式的系数,以及 numpy.poly1d从这些系数生成函数。

xdata = data[:,0]
ydata = data[:,1]

z = np.polyfit(xdata, ydata, 5)
f = np.poly1d(z)

然后绘图验证

t = np.arange(0, edges.shape[1], 1)
plt.figure(2, figsize=(8, 16))
ax1 = plt.subplot(211)
ax1.imshow(edges,cmap = 'gray')
ax2 = plt.subplot(212)
ax2.axis([0, edges.shape[1], edges.shape[0], 0])
ax2.plot(t, f(t))
plt.show()

showing curve

关于python - OpenCV:适合检测到的边缘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32146633/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com