Hi,
Do we have any script available in compose for detecting lines/rectangles in a picture using hough transform.
Thanks!
Regards,
Raja
Since Compose also supports Python, I would use OpenCV package for that, for example:
import cv2 lines = cv2.HoughLines(edges,1,np.pi/180,200)​
Roberta Varela
Since Compose also supports Python, I would use OpenCV package for that, for example:
Regards,
Roberta Varela