forked from andresgalaviz/Football-Player-Tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpixel-picker.py
47 lines (32 loc) · 1.21 KB
/
pixel-picker.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
import numpy as np
np.set_printoptions(threshold=np.nan)
import numpy.linalg as la
import cv2
import cv2.cv as cv
import math
import matplotlib.pyplot as plt
import time
# Count runtime
start_time = time.time()
def on_mouse(event, x, y, flags, param):
if event == cv.CV_EVENT_LBUTTONUP:
print ("col: %d, row: %d" % (x, y))
def main():
# Read the .mp4 video using OpenCV Python API cv2.VideoCapture
cap = cv2.VideoCapture("football_left.mp4")
# Print the frame width, frame height, frames per second
# and frame count of the input video using cap.get
fwidth = cap.get(cv.CV_CAP_PROP_FRAME_WIDTH)
fheight = cap.get(cv.CV_CAP_PROP_FRAME_HEIGHT)
fps = cap.get(cv.CV_CAP_PROP_FPS)
fcount = cap.get(cv.CV_CAP_PROP_FRAME_COUNT)
print "Frame width: " + str(fwidth) + "\nFrame height: " + str(fheight) + "\nFrames per second: " + str(fps) + "\nFrame count: " + str(fcount)
_,img = cap.read()
# img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
cv2.namedWindow('frame1')
cv.SetMouseCallback('frame1', on_mouse, None)
cv2.imshow('frame1', img)
cv2.waitKey(0)
cap.release()
main()
print("Done! Took %s seconds" % (time.time() - start_time))