How to rotate back a streched image?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Steven
am 13 Mär. 2014
Bearbeitet: Steven
am 26 Apr. 2016
I have an image which is stretched in one direction. How can I turn it back to normal plane, so it becomes again a circle? I know about the scaling and calibration in both directions. Suppose that the pixel size in left-to-right direction is two times the one in up-to-down direction.
Thanks so much.
Steven
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 13 Mär. 2014
Bearbeitet: Alex Taylor
am 13 Mär. 2014
[rows, columns, numberOfColorChannels] = size(originalImage);
scaledImage = imresize(originalImage, [rows, int32(columns/2)]);
4 Kommentare
Image Analyst
am 14 Mär. 2014
No, it probably won't. Once you've segmented the image into circle and non-circle (foreground and background) actually whitening or blackening is unnecessary. Just use the binary image in regionprops() - no whitening of background is needed to make any measurements.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Geometric Transformation and Image Registration finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!