fixed angle check in squares.py (thanks to Abid Rahman)
This commit is contained in:
parent
603e3e4bc0
commit
191e969243
@ -3,7 +3,7 @@ import cv2
|
||||
|
||||
|
||||
def angle_cos(p0, p1, p2):
|
||||
d1, d2 = p0-p1, p2-p1
|
||||
d1, d2 = (p0-p1).astype('float'), (p2-p1).astype('float')
|
||||
return abs( np.dot(d1, d2) / np.sqrt( np.dot(d1, d1)*np.dot(d2, d2) ) )
|
||||
|
||||
def find_squares(img):
|
||||
|
Loading…
Reference in New Issue
Block a user