-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmotionEstCS.m
174 lines (153 loc) · 5.87 KB
/
motionEstCS.m
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
% Computes motion vectors using conjugate search method
%
% Input
% imgP : The image for which we want to find motion vectors
% imgI : The reference image
% mbSize : Size of the macroblock
% p : Search parameter (read literature to find what this means)
%
% Ouput
% motionVect : the motion vectors for each integral macroblock in imgP
%
% Written by zcx
function [motionVector, CScomputations, time] = motionEstCS(imgP, imgI, mbSize, p)
tic
imgI = double(imgI);
imgP = double(imgP);
[row, col] = size(imgI);
vectors = zeros(2, row * col / mbSize^2);
costs = ones(3, 3) * 65537;
computations = 0;
mbCount = 1;
for i = 1 : mbSize : row-mbSize+1
for j = 1 : mbSize : col-mbSize+1
% Display the target macroblock
imgP_rect = drawRectangle(imgP, [i, j], [i+mbSize-1, j+mbSize-1], 1, 255);
subplot(1, 2, 1);
imshow(uint8(imgP_rect), 'InitialMagnification', 'fit');
title('Target Frame')
img = double(imgI);
color = 0;
costs(2, 2) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), ...
imgI(i:i+mbSize-1,j:j+mbSize-1),mbSize);
if(j>1)
costs(2,1) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(i:i+mbSize-1,j-1:j-1+mbSize-1), mbSize);
end
if(j<col-mbSize+1)
costs(2,3) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(i:i+mbSize-1,j+1:j+1+mbSize-1), mbSize);
end
x = j;
while (costs(2,1) < costs(2,2) || costs(2,3) < costs(2,2))
if(costs(2,1) < costs(2,3))
costs(2,2) = costs(2,1);
x = x - 1;
if(x<1)
break;
end
costs(2,1) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(i:i+mbSize-1,x:x+mbSize-1), mbSize);
else
costs(2,2) = costs(2,3);
x = x + 1;
if(x>col-mbSize+1)
break;
end
costs(2,3) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(i:i+mbSize-1,x:x+mbSize-1), mbSize);
end
computations = computations + 1;
img = drawRectangle(img, [i, x], [i+mbSize-1, x+mbSize-1], 1, color);
color = color + 25;
subplot(1, 2, 2);
imshow(uint8(img), 'InitialMagnification', 'fit');
title('Reference Frame');
pause(0.5);
end
if(i>1)
costs(1,2) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(i-1:i-1+mbSize-1,x:x+mbSize-1), mbSize);
end
if(i<row-mbSize+1)
costs(3,2) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(i+1:i+1+mbSize-1,x:x+mbSize-1), mbSize);
end
y = i;
while (costs(1,2) < costs(2,2) || costs(3,2) < costs(2,2))
if(costs(1,2) < costs(3,2))
costs(2,2) = costs(1,2);
y = y - 1;
if(y<1)
break;
end
costs(1,2) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(y:y+mbSize-1,x:x+mbSize-1), mbSize);
else
costs(2,2) = costs(3,2);
y = y + 1;
if(y>row-mbSize+1)
break;
end
costs(2,3) = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1), imgI(y:y+mbSize-1,x:x+mbSize-1), mbSize);
end
computations = computations + 1;
img = drawRectangle(img, [y, x], [y+mbSize-1, x+mbSize-1], 1, color);
color = color + 25;
subplot(1, 2, 2);
imshow(uint8(img), 'InitialMagnification', 'fit');
title('Reference Frame');
pause(0.5);
end
vectors(1, mbCount) = y - i;
vectors(2, mbCount) = x - j;
mbCount = mbCount + 1;
%
%
% hor_index = j;
% ver_index = i;
%
% cost_min = 65537;
%
% for hor = 1 : col-mbSize+1
% cost = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1),imgI(i:i+mbSize-1,hor:hor+mbSize-1), mbSize) + abs(hor - j);
% if(cost < cost_min)
% hor_index = hor;
% cost_min = cost;
% end
% computations = computations + 1;
%
% img = drawRectangle(img, [ver_index, hor], [ver_index+mbSize-1, hor+mbSize-1], 1, color);
% color = color + 25;
% subplot(1, 2, 2);
% imshow(uint8(img), 'InitialMagnification', 'fit');
% title('Reference Frame');
% pause(0.5);
% end
%
% for ver = 1 : row-mbSize+1
% cost = costFuncMAD(imgP(i:i+mbSize-1,j:j+mbSize-1),imgI(ver:ver+mbSize-1,hor_index:hor_index+mbSize-1), mbSize) + abs(ver - i);
% if(cost < cost_min)
% ver_index = ver;
% cost_min = cost;
% end
% computations = computations + 1;
%
% img = drawRectangle(img, [ver, hor_index], [ver+mbSize-1, hor_index+mbSize-1], 1, color);
% color = color + 25;
% subplot(1, 2, 2);
% imshow(uint8(img), 'InitialMagnification', 'fit');
% title('Reference Frame');
% pause(0.5);
% end
%
% Display the selected macroblock
% imgI_rect = drawRectangle(imgI, [ver_index, hor_index], [ver_index+mbSize-1, hor_index+mbSize-1], 1, 255);
% subplot(1, 2, 2);
% imshow(uint8(imgI_rect), 'InitialMagnification', 'fit');
% title('Reference Frame');
% pause(0.1);
%
% vectors(1, mbCount) = ver_index-i;
% vectors(2, mbCount) = hor_index-j;
%
% mbCount = mbCount + 1;
end
end
motionVector = vectors;
CScomputations = computations / (mbCount - 1);
time = toc;
end