gpt4 book ai didi

image - 图片中的笔划检测算法检测直线和曲线

转载 作者:行者123 更新时间:2023-12-04 10:48:13 25 4
gpt4 key购买 nike

我正在寻找一种算法来检测图片中的所有线条(包括曲线等),以便我可以在绘图程序(如画图)中使用我的软件重新绘制它。现在我只想把它重新涂成黑色和白色。我的方法是制作图片的模板并尝试将所有黑色像素读取为线条并最后绘制它。线计算是这样的:

 * for every pixel
* Point p = (x, y)
* List<Point> line
* while p is not marked
* mark p
* p = adjacent darkest pixel //brightness of a pixel is calculated by pixel luminance divided by 2 + luminance of the 8 adjacent pixels divided by 16
* add p to line
* end while
* draw line
* end for

我的方法有效,但不是很好。一些轮廓被检测为两条线。

My approach

你们对我的算法有什么改进,或者更好的吗?

最佳答案

试试 Canny Edge Detection,这是一种流行的边缘检测算法。它已经在 OpenCV 中实现为 cv2.Canny() .使用屏幕截图输入图像,结果如下:

输入图片

结果(倒置和非倒置版本)

这是 Python OpenCV 中的一个实现

import cv2

# Load image, convert to grayscale, and perform Canny edge detection
image = cv2.imread('1.png')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
canny = 255 - cv2.Canny(gray, 120, 255, 1)

# Show image
cv2.imshow('canny', canny)
cv2.waitKey()

注意:要自动确定下限和上限阈值,请查看 Zero-parameter, automatic Canny edge detection with Python and OpenCV

关于image - 图片中的笔划检测算法检测直线和曲线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59603026/

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