-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
80 lines (62 loc) · 2.21 KB
/
settings.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
import cv2
import numpy as np
# Define the filename of the video
with open("videoName.txt", "r") as f:
video_name = f.read()
filename = video_name
# Load the video
cap = cv2.VideoCapture(filename)
# Read the first frame
ret, frame = cap.read()
# Create a window and display the first frame
cv2.namedWindow("Draw Polygon")
cv2.imshow("Draw Polygon", frame)
# Define the two lists for storing the vertices of the polygons
area1 = []
area2 = []
# Define the function for mouse event
def draw_polygon(event, x, y, flags, param):
global area1, area2, frame
# Left mouse button click adds a point to the polygon
if event == cv2.EVENT_LBUTTONDOWN:
if len(area1) < 4:
area1.append((x, y))
cv2.circle(frame, (x, y), 5, (0, 0, 255), -1)
elif len(area2) < 4:
area2.append((x, y))
cv2.circle(frame, (x, y), 5, (0, 255, 0), -1)
# If both polygons are drawn, save the coordinates and exit the window
if len(area1) == 4 and len(area2) == 4:
with open('polygon_coordinates.txt', 'w') as f:
f.write(f"{area1}\n")
f.write(f"{area2}\n")
cv2.destroyAllWindows()
# Right mouse button click removes the last point from the polygon
elif event == cv2.EVENT_RBUTTONDOWN:
if len(area2) > 0:
area2.pop()
frame = frame.copy()
for pt in area1:
cv2.circle(frame, pt, 5, (0, 0, 255), -1)
for pt in area2:
cv2.circle(frame, pt, 5, (0, 255, 0), -1)
# cv2.imshow("Draw Polygon", frame)
elif len(area1) > 0:
area1.pop()
frame = frame.copy()
for pt in area1:
cv2.circle(frame, pt, 5, (0, 0, 255), -1)
# cv2.imshow("Draw Polygon", frame)
# Set the mouse callback function
cv2.setMouseCallback("Draw Polygon", draw_polygon)
# Loop until the user closes the window
while True:
cv2.imshow("Draw Polygon", frame)
frame = cv2.resize(frame, (1280, 720))
key = cv2.waitKey(1)
# If the user presses 'q', exit the loop
if key == ord('q'):
break
# Release the video capture and destroy all windows
cap.release()
cv2.destroyAllWindows()