-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_processor.py
More file actions
47 lines (37 loc) · 2.17 KB
/
Copy pathimage_processor.py
File metadata and controls
47 lines (37 loc) · 2.17 KB
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
import cv2
class Graphics:
@staticmethod
def draw_rect(image, pt1, pt2, text=None, font=cv2.FONT_ITALIC, rect=True, rect_color=(0, 255, 0), rect_thickness=2,
line=False, line_color=(0, 0, 255), line_thickness=5):
if rect:
cv2.rectangle(image, pt1, pt2, rect_color, rect_thickness)
# cv2.GaussianBlur(img, (5, 5), 15)
diagonal = (pt2[0] - pt1[0], pt2[1] - pt1[1])[0]
if text is not None:
cv2.rectangle(image, (pt1[0], pt2[1]), (pt2[0], pt2[1] + 50), rect_color, cv2.FILLED)
cv2.putText(image, text, (pt1[0] + 20, pt2[1] + 35), font, 1, (255, 255, 255), 2)
# print("diagonal length ", diagonal)
point1 = pt1
point2 = (pt2[0], pt1[1])
point3 = pt2
point4 = (pt1[0], pt2[1])
dist_pt1_pt2 = point2[0] - point1[0]
dist_pt1_pt4 = point4[1] - point1[1]
if line:
cv2.line(image, point1, (int(point1[0] + dist_pt1_pt2 * 0.25), point2[1]), line_color,
line_thickness) # point1 to right
cv2.line(image, point1, (point4[0], int(point1[1] + dist_pt1_pt4 * 0.25)), line_color,
line_thickness) # point1 to bottom
cv2.line(image, point2, (int(point2[0] - dist_pt1_pt2 * 0.25), point2[1]), line_color,
line_thickness) # point2 to left
cv2.line(image, point2, (point2[0], int(point2[1] + dist_pt1_pt4 * 0.25)), line_color,
line_thickness) # point2 to bottom
cv2.line(image, point3, (int(point3[0] - dist_pt1_pt2 * 0.25), point3[1]), line_color,
line_thickness) # point3 to left
cv2.line(image, point3, (point3[0], int(point3[1] - dist_pt1_pt4 * 0.25)), line_color,
line_thickness) # point3 to top
cv2.line(image, point4, (int(point4[0] + dist_pt1_pt2 * 0.25), point4[1]), line_color,
line_thickness) # point4 to right
cv2.line(image, point4, (point4[0], int(point4[1] - dist_pt1_pt4 * 0.25)), line_color,
line_thickness) # point4 to top
return image