First time here? Check out the FAQ!
answered 2018-03-02 03:50:04 -0600
yes, you can.... try with this code : lines = cv2.HoughLinesP(canny_edges, 2, np.pi/180, 30,50, 200) cnt=1 for line in lines: cnt+=1 print cnt
printed count value is the total score of lines in your input image.