-
Notifications
You must be signed in to change notification settings - Fork 0
/
optical_flow.py
executable file
·53 lines (46 loc) · 1.98 KB
/
optical_flow.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
#!/usr/bin/env python2.6
"""
The rest of the example code that I ganked.
// 3. Draw arrows on second image to show movement
for (int x=0; x<frame2->width; x=x+10) {
for (int y=0; y<frame2->height; y=y+10) {
int vel_x_here = (int)cvGetReal2D( vel_x, y, x);
int vel_y_here = (int)cvGetReal2D( vel_y, y, x);
cvLine( frame2, cvPoint(x, y), cvPoint(x+vel_x_here,
y+vel_y_here), cvScalarAll(255));
}
}
// 4. Display image with arrows and wait for key to be pressed
cvShowImage("result", frame2 );
cvWaitKey(0);
"""
from cv import CalcOpticalFlowLK, CreateImage, GetReal2D, IPL_DEPTH_32F, LoadImage, \
CV_LOAD_IMAGE_GRAYSCALE
import csv
import os
import sys
def frame_string(path):
"""Extracts a frame string like '004' from a path like 'Forest_Gump/004.png'."""
filename = os.path.split(path)[1]
return os.path.splitext(filename)[0]
image_dir = 'Forest_Gump'
files = ((int(frame_string(f)), os.path.join(image_dir, f))
for f in os.listdir(image_dir) if f.endswith('.png'))
sorted_files = sorted(files, reverse=True)
file_pairs = zip(sorted_files, sorted_files[1:])
for (_, from_file), (_, to_file) in file_pairs:
print from_file, to_file
# load images
frame1 = LoadImage(from_file, CV_LOAD_IMAGE_GRAYSCALE)
frame2 = LoadImage(to_file, CV_LOAD_IMAGE_GRAYSCALE)
# calculate optical flow
vel_x = CreateImage((frame1.width, frame1.height), IPL_DEPTH_32F, 1)
vel_y = CreateImage((frame1.width, frame1.height), IPL_DEPTH_32F, 1)
CalcOpticalFlowLK(frame1, frame2, (5, 5), vel_x, vel_y)
# dump the pixel velocities
frame_pair = frame_string(from_file) + '_' + frame_string(to_file)
x_writer = csv.writer(open('displacement/%s_x.csv' % frame_pair, 'wb'))
y_writer = csv.writer(open('displacement/%s_y.csv' % frame_pair, 'wb'))
for y in xrange(frame1.height):
x_writer.writerow([GetReal2D(vel_x, y, x) for x in xrange(frame1.width)])
y_writer.writerow([GetReal2D(vel_y, y, x) for x in xrange(frame1.width)])