This repository was archived by the owner on Nov 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutils.py
121 lines (91 loc) · 3.33 KB
/
utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
import cv2 as cv
import numpy as np
import math
# Returns image to be analysed
def readImage():
# Show menu
print (30 * '-')
print ('Options: ')
print ('1. Provide an image path')
print ('2. Capture photo with webcam')
print (30 * '-')
option = getInput('[1-2]')
while option != 1 and option != 2:
print ("Invalid number. Try again...")
option = getInput()
if option == 1:
filepath = input('Image path: ')
img = cv.imread(filepath, cv.IMREAD_COLOR)
else:
print('Press space to capture image')
img = captureImage()
return img
def getInput(range):
option = input('Enter your option ' + range + ': ')
option = int(option)
return option
def captureImage():
cam = cv.VideoCapture(0)
img_counter = 0
while True:
ret, frame = cam.read()
cv.imshow("Press space to capture image", frame)
if not ret:
break
k = cv.waitKey(1)
# SPACE pressed
if k%256 == 32:
break
cam.release()
cv.destroyAllWindows()
return frame
def saveImage(img, filename='example.png'):
cv.imwrite(filename, img)
# Shows an image and waits for user input before destroying the respective window
def showImage(image, windowName='OpenCV'):
cv.imshow(windowName, image)
cv.waitKey(0)
cv.destroyAllWindows()
def calcDistance(x1, y1, x2, y2):
return math.sqrt(math.pow(x1 - x2, 2) + math.pow(y1 - y2, 2))
def calcCornerAngles(cnt_img, corners):
angles = []
d1 = int(calcDistance(corners[0], corners[1], corners[2], corners[3]))
d2 = int(calcDistance(corners[2], corners[3], corners[4], corners[5]))
d3 = int(calcDistance(corners[4], corners[5], corners[6], corners[7]))
d4 = int(calcDistance(corners[6], corners[7], corners[0], corners[1]))
max_radius = min([d1, d2, d3, d4])
for k in range(len(corners) - 1):
if(k % 2 != 0):
continue
blank_img = np.zeros((len(cnt_img), len(cnt_img[0])), np.uint8)
cv.circle(blank_img, (corners[k], corners[k + 1]), max_radius // 2, (255, 255, 255))
intersect_img = cv.bitwise_and(cnt_img, blank_img)
intersect_pts = np.where(intersect_img > 1)
if(len(intersect_pts[0]) < 2 or len(intersect_pts[1]) < 2):
angles.append(0)
continue
vector1 = (intersect_pts[1][0] - corners[k], intersect_pts[0][0] - corners[k + 1])
vector2 = (intersect_pts[1][1] - corners[k], intersect_pts[0][1] - corners[k + 1])
scalar_p = vector1[0] * vector2[0] + vector1[1] * vector2[1]
norm1 = math.sqrt(math.pow(vector1[0], 2) + math.pow(vector1[1], 2))
norm2 = math.sqrt(math.pow(vector2[0], 2) + math.pow(vector2[1], 2))
angle = math.acos(scalar_p / (norm1 * norm2)) * 180 / math.pi
angles.append(angle)
return angles
# Returns the maximum number of joined object pixels
def getMaxCircleWidth(img_binary):
max = 0
for i in range(len(img_binary)):
line_max = 0
line_aux = 0
for j in range(len(img_binary[i])):
if img_binary[i][j] != 0:
line_aux += 1
else:
if line_max < line_aux:
line_max = line_aux
line_aux = 0
if max < line_max:
max = line_max
return max