我正在从事一个涉及视频运动放大算法的项目。目前我正在尝试使用 riesz 金字塔来理解基于相位的运动放大。我的主要信息来源是这份文件:
用于快速基于相位的视频放大的 Riesz Pyramids \
我已经执行了以下步骤来尝试重现论文中的一些结果:
使用为 riesz 金字塔提供的 matlab 代码将图像分解为多个尺度
通过使用论文中介绍的近似 riesz 变换将金字塔的一个子带与 [-0.5, 0, 0.5] 和 [-0.5, 0, 0.5]' 进行卷积,生成图像 Riesz1 和 Riesz2。
通过计算 atan(R2/R1) 确定子带每个像素中的主要局部方向。该计算源自论文中的公式 3。
将变换引导到主要的局部方向并计算得到的正交对
使用正交对生成一个复数 (I + iQ),其相位 I 然后用于确定特定像素中的局部相位。
这是我创建的 Matlab 代码:
%Generate a circle image
img = zeros(512, 512);
img(:) = 128;
rad = 180;
for i = size(img, 1)/2 - rad : size(img,1)/2 + rad
for j = size(img, 2)/2 - rad : size(img,2)/2 + rad
deltaX = abs(size(img, 1)/2 - i);
deltaY = abs(size(img, 2)/2 - j);
if (sqrt(deltaX^2+deltaY^2) <= rad)
img(i, j) = 255;
end
end
end
%build riesz pyramid
[pyr, pind] = buildNewPyr(img);
%extract band2 from pyramid (no orientation information yet)
I = pyrBand(pyr,pind,3);
%convolve band2 with approximate riesz filter for first quadrature pair
%element
R1 = conv2(I, [0.5, 0, -0.5], 'same');
%convolve band2 with approximate riesz filter (rotated by 90°) for second
%quadrature pair element
R2 = conv2(I, [0.5, 0, -0.5]', 'same');
% show the resulting image containing orientation information!
% imshow(band2_r2, []);
%To extract the phase, we have to steer the pyramid to its dominant local
%orientation. Orientation is calculated as atan(R2/R1)
theta = atan(R2./R1);
theta(isnan(theta) | isinf(theta)) = 0;
%imshow(theta, []);
% create quadrature pair
Q = zeros(size(theta, 1), size(theta, 2));
for i = 1:size(theta, 1)
for j = 1:size(theta, 1)
if theta(i, j) ~= 0
%create rotation matrix
rot_mat = ...
[cos(theta(i, j)), sin(theta(i, j));...
-sin(theta(i, j)) cos(theta(i, j))];
%steer to dominant local orientation(theta) and set Q
resultPair = rot_mat*[R1(i, j), R2(i,j)]';
Q(i,j) = resultPair(1);
end
end
end
% create amplitude and phase image
A = abs(complex(I, Q));
Phi = angle(complex(I, Q));
生成的图像如下所示:
现在我的问题:
使用 atan(R2/R1) 计算 theta 时,我会在结果中得到很多伪像(参见图像“主导方向”)。有什么明显的我想念这里/做错了吗?
假设到目前为止我的结果是正确的。为了放大运动,我不仅需要能够确定局部相位,还需要改变它。我似乎错过了一些明显的东西,但我该怎么做呢?我是否需要以某种方式改变金字塔子带像素的相位然后折叠金字塔?如果是,如何?
我(显然)对这个主题很陌生,对图像处理只有初步的了解。我会非常感谢任何答案,无论是解决我的问题还是只是推荐其他有用的信息来源。
真挚地