Rotation of orthogonal projection

1 vue (au cours des 30 derniers jours)
Hg
Hg le 19 Mar 2016
Modifié(e) : Hg le 19 Mar 2016
I have a depth image (x,y,z = pixel value). I project the image into top and side views:
for i = 1:rows
for j = 1:cols
if front(i,j)~=0
side(i, front(i,j)) = j;
top(front(i,j), j) = i;
end
end
end
If I use imrotate() to rotate the front view, how can I process the side and top view in order to get the rotation projection? I know it's easy to rotate first then project into side and top views but I want to know how to do rotation of the two views given angle and center of rotation.

Réponses (0)

Catégories

En savoir plus sur Image Processing and Computer Vision dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by