-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
29 lines (25 loc) · 797 Bytes
/
main.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
import sys
import cv2
import os
import gui.util.cv_drawline as cvline
import gui.backend_gui_bridge as bridge
def main():
assert len(sys.argv) == 2;
assert os.path.isfile(sys.argv[1])
cap = cv2.VideoCapture(sys.argv[1])
ret, frame = cap.read()
rois = cv2.selectROIs("Select Areas", frame)
cv2.destroyWindow("Select Areas")
lines = cvline.selectLines("Select Lines", frame)
cv2.destroyWindow("Select Lines")
cap.release()
b = bridge.BackendGuiBridge(sys.argv[1], lines, rois)
succ, frame = b.get_frame()
while succ:
if (cv2.waitKey(100) & 0xFF == ord('q')):
break
cv2.imshow("Tracking", frame)
succ, frame = b.get_frame()
# useage: python main.py <path of the video file>
if __name__ == '__main__':
main()