Open wohali opened 1 year ago
A performance analysis of an average worker process shows most of the time is being spent in binary dilation (when peak sum Hough fails) and the median filter blur at the start of hough angle identification. By comparison actual probabilistic Hough edge detection is lightweight.
Notes to self on getting opencv with CUDA bindings working on Windows:
import cv2
It would be nice if CUDA could be applied here.
The current state of affairs (September 2023):
cv2.HoughLinesP()
, (sample code) and might be worth exploring on its own.