gpt4 book ai didi

python - OpenCV 检测并追踪图像上最暗的线条并覆盖网格

转载 作者:太空宇宙 更新时间:2023-11-03 21:43:29 25 4
gpt4 key购买 nike

我正在尝试在 EKG 上重新创建描记图,然后将它们叠加到新网格上,但我对如何最好地描记实际描记图感到困惑。在接下来的图像中,有 6 个独立的描摹我想在基本上带有网格的白色背景上重新创建。任何帮助将不胜感激。

我已经设法找到边缘并从 jpg 中裁剪它,所以我只剩下这张图片:enter image description here

我正在尝试使用 OpenCV 的 findContours 或 Hough Line 变换来检测描​​迹,但我在高斯模糊后发现的边缘结果是:enter image description here .. 这不是很有帮助。

霍夫线看起来像这样:enter image description here

有人能指出我正确的方向吗?提前致谢。

编辑:

我做了局部直方图,然后是高斯模糊和另一个 Canny 边缘检测。局部直方图图像为:enter image description here

然后精明的边缘检测是: enter image description here

最佳答案

您可以尝试使用 Sobel 和 Laplacian 检测器,如下所示

img = cv2.imread('experiment.png')
img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
img = cv2.GaussianBlur(img,(3,3),0)
laplacian = cv2.Laplacian(img,cv2.CV_64F)
sobelx = cv2.Sobel(img,cv2.CV_64F,1,0,ksize=1)

figure = plt.figure(figsize=(10,10))

sobel = figure.add_subplot(1,2,1)
sobel.imshow(sobelx,cmap='gray')
sobel.set_title('Sobel in x')
sobel.set_axis_off()

laplacianfig = figure.add_subplot(1,2,2)
laplacianfig.imshow(laplacian,cmap='gray')
laplacianfig.set_title('Laplacian')
laplacianfig.set_axis_off()

给你下面的输出

enter image description here

如您所见,Sobel 算子可用于检测直线。也许您可以绘制像素强度低于平均值的那些点。

关于python - OpenCV 检测并追踪图像上最暗的线条并覆盖网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42258048/

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