필터 지우기
필터 지우기

How to rotate back a streched image?

조회 수: 1 (최근 30일)
Steven
Steven 2014년 3월 13일
편집: Steven 2016년 4월 26일
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

채택된 답변

Image Analyst
Image Analyst 2014년 3월 13일
편집: Alex Taylor 2014년 3월 13일
[rows, columns, numberOfColorChannels] = size(originalImage);
scaledImage = imresize(originalImage, [rows, int32(columns/2)]);
  댓글 수: 4
Steven
Steven 2014년 3월 14일
my main object is the circle and by removing background, I mean making the background (region over which the circle lies!) say, white, so that I can more easily analyze the image. What I want finally is the area of circle, but in late sequences, they are not as clear and vivid as this circle, and so removing the background may help.
Thanks Steven
Image Analyst
Image Analyst 2014년 3월 14일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Segmentation and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by