Compare commits

..

No commits in common. "fd79b30f52abbda0d9040c1d1189c78ab1df69a9" and "d040135d028c13643651076b3fa52cc6b70a7505" have entirely different histories.

View file

@ -1,66 +1,98 @@
import cv2 import cv2
import sys import sys
tracker = cv2.TrackerMIL_create() (major_ver, minor_ver, subminor_ver) = (cv2.__version__).split('.')
# Read video if __name__ == '__main__' :
video = cv2.VideoCapture("./validation/TestVideo.mp4")
# Exit if video not opened. # Set up tracker.
if not video.isOpened(): # Instead of MIL, you can also use
print("Could not open video")
sys.exit()
# Read first frame. tracker_types = ['BOOSTING', 'MIL','KCF', 'TLD', 'MEDIANFLOW', 'GOTURN', 'MOSSE', 'CSRT']
ok, frame = video.read() tracker_type = tracker_types[1]
if not ok:
print('Cannot read video file')
sys.exit()
# Define an initial bounding box if int(minor_ver) < 3:
bbox = (857, 189, 346, 434) tracker = cv2.Tracker_create(tracker_type)
else:
if tracker_type == 'BOOSTING':
tracker = cv2.TrackerBoosting_create()
if tracker_type == 'MIL':
tracker = cv2.TrackerMIL_create()
if tracker_type == 'KCF':
tracker = cv2.TrackerKCF_create()
if tracker_type == 'TLD':
tracker = cv2.TrackerTLD_create()
if tracker_type == 'MEDIANFLOW':
tracker = cv2.TrackerMedianFlow_create()
if tracker_type == 'GOTURN':
tracker = cv2.TrackerGOTURN_create()
if tracker_type == 'MOSSE':
tracker = cv2.TrackerMOSSE_create()
if tracker_type == "CSRT":
tracker = cv2.TrackerCSRT_create()
# Initialize tracker with first frame and bounding box # Read video
ok = tracker.init(frame, bbox) video = cv2.VideoCapture("./validation/TestVideo.mp4")
frame_count = 0 # Exit if video not opened.
while True: if not video.isOpened():
# Read a new frame print("Could not open video")
sys.exit()
# Read first frame.
ok, frame = video.read() ok, frame = video.read()
if not ok: if not ok:
break print('Cannot read video file')
sys.exit()
# Start timer # Define an initial bounding box
timer = cv2.getTickCount() bbox = (857, 189, 346, 434)
# Update tracker # Initialize tracker with first frame and bounding box
ok, bbox = tracker.update(frame) ok = tracker.init(frame, bbox)
# Calculate Frames per second (FPS) frame_count = 0
fps = cv2.getTickFrequency() / (cv2.getTickCount() - timer); while True:
# Read a new frame
ok, frame = video.read()
if not ok:
break
# Draw bounding box # Start timer
if ok: timer = cv2.getTickCount()
# Tracking success
p1 = (int(bbox[0]), int(bbox[1]))
p2 = (int(bbox[0] + bbox[2]), int(bbox[1] + bbox[3]))
with open("./ground_truth.txt", 'a') as output_file: # Update tracker
output_file.write(f"{frame_count}, {p1[0]}, {p1[1]}, {p2[0]}, {p2[1]}\n") ok, bbox = tracker.update(frame)
cv2.rectangle(frame, p1, p2, (255,0,0), 2, 1) # Calculate Frames per second (FPS)
else : fps = cv2.getTickFrequency() / (cv2.getTickCount() - timer);
# Tracking failure
cv2.putText(frame, "Tracking failure detected", (100,80), cv2.FONT_HERSHEY_SIMPLEX, 0.75,(0,0,255),2)
# Display FPS on frame # Draw bounding box
cv2.putText(frame, "FPS : " + str(int(fps)), (100,50), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50), 2) if ok:
# Tracking success
p1 = (int(bbox[0]), int(bbox[1]))
p2 = (int(bbox[0] + bbox[2]), int(bbox[1] + bbox[3]))
# Display result with open("./ground_truth.txt", 'a') as output_file:
cv2.imshow("Tracking", frame) output_file.write(f"{frame_count}, {p1[0]}, {p1[1]}, {p2[0]}, {p2[1]}\n")
frame_count += 1 cv2.rectangle(frame, p1, p2, (255,0,0), 2, 1)
else :
# Tracking failure
cv2.putText(frame, "Tracking failure detected", (100,80), cv2.FONT_HERSHEY_SIMPLEX, 0.75,(0,0,255),2)
# Exit if ESC pressed # Display tracker type on frame
k = cv2.waitKey(1) & 0xff cv2.putText(frame, tracker_type + " Tracker", (100,20), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50),2);
if k == 27 : break
# Display FPS on frame
cv2.putText(frame, "FPS : " + str(int(fps)), (100,50), cv2.FONT_HERSHEY_SIMPLEX, 0.75, (50,170,50), 2);
# Display result
cv2.imshow("Tracking", frame)
frame_count += 1
# Exit if ESC pressed
k = cv2.waitKey(1) & 0xff
if k == 27 : break