Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What is the significance of rotating an image?

Status
Not open for further replies.

hot_ice

Member level 1
Joined
Feb 7, 2006
Messages
38
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Activity points
1,599
Image rotation???

what is the significance of rotating an image??? how can it be done???
i know there is a built-in function ('imrotate()') in MATLAB... but
i'm not interested in doing it using built-in function... is it possible
to rotate an image uisng Fourier transform??? if yes, how??? or r there
any other possible ways to accopmlish the desired task???
 

Image rotation???

hi,
You can use "edit imrotate" in matlab, then you can see the algorithm of rotate.
is it possible
to rotate an image uisng Fourier transform? i don't
think so.
 

Image rotation???

Using an FFT to rotate an image would certainly be a huge waist of resources. Rotating an image is really easy. Imagine the image is represented by a 2d array image[][], rotating the image would basically amount to:

for (i=0;i<horiz_size;i++) {
for(j=0;j<vert_size;j++) {
rotated_image[j] = image[j];
}
}
 


Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top