lines = cv2.HoughLinesP(edges,1,np.pi/180,100,minLineLength,maxLineGap,cv2.THRESH_BINARY)
I am using this code to detect line in a PNG image, and the function returns a numpy array :
array([[[124, 235, 393, 235]],
[[124, 233, 393, 233]]])
I wanted to know what these values mean in order to get the length and direction of the line detected.
*The image used contains only one horizontal line.