Skip to content

Instantly share code, notes, and snippets.

@Mehdi-Amine
Created November 5, 2021 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mehdi-Amine/e10263f0ecf85c36373988477ab2d4de to your computer and use it in GitHub Desktop.
Save Mehdi-Amine/e10263f0ecf85c36373988477ab2d4de to your computer and use it in GitHub Desktop.
Hough lines from the cropped image
lines = cv2.HoughLinesP(cropped_image, 2, np.pi/180, 100, np.array([]), minLineLength=40, maxLineGap=5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment