使用openCV库和python检测图像中的5条最佳线?

dy1byipe  于 2022-12-27  发布在  Python
关注(0)|答案(2)|浏览(182)

我尝试使用Hough变换来确定给定图像(作为参数)中质量和长度最好的5条线。下面的代码标记了它在图像中检测到的线(如果它是一个相对简单的图像)。我如何让他只标记最好的k条线?

  1. import sys
  2. import math
  3. import cv2 as cv
  4. import numpy as np
  5. import sys
  6. import numpy as np
  7. from matplotlib import pyplot as plt
  8. def main(argv):
  9. default_file = "path to image"
  10. filename = argv[0] if len(argv) > 0 else default_file
  11. # Loads an image
  12. src = cv.imread(cv.samples.findFile(filename), cv.IMREAD_GRAYSCALE)
  13. # Check if image is loaded fine
  14. if src is None:
  15. print('Error opening image!')
  16. print('Usage: hough_lines.py [image_name -- default ' + default_file + '] \n')
  17. return -1
  18. #edge detection
  19. dst = cv.Canny(src, 50, 200, None, 3)
  20. # Copy edges to the images that will display the results in BGR
  21. cdst = cv.cvtColor(dst, cv.COLOR_GRAY2BGR)
  22. cdstP = np.copy(cdst)
  23. lines = cv.HoughLines(dst, 1, np.pi / 180, 150, None, 0, 0)
  24. if lines is not None:
  25. for i in range(0, len(lines)):
  26. rho = lines[i][0][0]
  27. theta = lines[i][0][1]
  28. a = math.cos(theta)
  29. b = math.sin(theta)
  30. x0 = a * rho
  31. y0 = b * rho
  32. pt1 = (int(x0 + 1000 * (-b)), int(y0 + 1000 * (a)))
  33. pt2 = (int(x0 - 1000 * (-b)), int(y0 - 1000 * (a)))
  34. cv.line(cdst, pt1, pt2, (0, 0, 255), 3, cv.LINE_AA)
  35. linesP = cv.HoughLinesP(dst, 1, np.pi / 180, 50, None, 50, 10)
  36. if linesP is not None:
  37. for i in range(0, len(linesP)):
  38. l = linesP[i][0]
  39. cv.line(cdstP, (l[0], l[1]), (l[2], l[3]), (0, 0, 255), 3, cv.LINE_AA)
  40. cv.imshow("Source", src)
  41. #cv.imshow("Detected Lines (in red) - Standard Hough Line Transform", cdst)
  42. cv.imshow("Detected Lines (in red) - Probabilistic Line Transform", cdstP)
  43. cv.waitKey()
  44. return 0
  45. if __name__ == "__main__":
  46. main(sys.argv[1:])

我试图检测图像中的最佳k线

3vpjnl9f

3vpjnl9f1#

我不知道,但你可以试试

  1. import cv2
  2. import numpy as np
  3. img = cv2.imread("image.jpg")
  4. gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
  5. lines = cv2.HoughLinesP(gray, 1, np.pi/180, 50, None, 50, 10)
  6. # Sort lines based on length
  7. lines = sorted(lines, key=lambda x: cv2.norm(x[0]))
  8. k = 5
  9. lines = lines[:k]
  10. for line in lines:
  11. x1, y1, x2, y2 = line[0]
  12. cv2.line(img, (x1, y1), (x2, y2), (0, 0, 255), 3)
  13. cv2.imshow("Image with best k lines", img)
  14. cv2.waitKey()
展开查看全部
vaqhlq81

vaqhlq812#

这里是OpenCv4.6.0的最新版本

  1. import cv2
  2. import numpy as np
  3. # Load the image and convert it to grayscale
  4. image = cv2.imread('image.jpg')
  5. gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
  6. # Compute the Hough Transform
  7. edges = cv2.Canny(gray, 50, 150, apertureSize=3)
  8. lines = cv2.HoughLines(edges, 1, np.pi/180, 200)
  9. # Calculate the length of each line
  10. lengths = []
  11. for line in lines:
  12. for rho,theta in line:
  13. a = np.cos(theta)
  14. b = np.sin(theta)
  15. x0 = a*rho
  16. y0 = b*rho
  17. x1 = int(x0 + 1000*(-b))
  18. y1 = int(y0 + 1000*(a))
  19. x2 = int(x0 - 1000*(-b))
  20. y2 = int(y0 - 1000*(a))
  21. line_length = np.sqrt((x2-x1)**2 + (y2-y1)**2)
  22. lengths.append(line_length)
  23. # Sort the lines in descending order of length
  24. sorted_lines = sorted(lines, key=lambda line: lengths[lines.index(line)], reverse=True)
  25. # Mark the best k lines
  26. k = 5
  27. for line in sorted_lines[:k]:
  28. for rho,theta in line:
  29. a = np.cos(theta)
  30. b = np.sin(theta)
  31. x0 = a*rho
  32. y0 = b*rho
  33. x1 = int(x0 + 1000*(-b))
  34. y1 = int(y0 + 1000*(a))
  35. x2 = int(x0 - 1000*(-b))
  36. y2 = int(y0 - 1000*(a))
  37. cv2.line(image, (x1, y1), (x2, y2), (255, 0, 0), 2)
  38. # Show the image
  39. cv2.imshow("Lines", image)
  40. cv2.waitKey(0)
  41. cv2.destroyAllWindows()
展开查看全部

相关问题