필터 지우기
필터 지우기

please tell me about image interpolation.

조회 수: 2 (최근 30일)
sandeep kumar
sandeep kumar 2015년 8월 28일
댓글: Walter Roberson 2015년 8월 28일
i tried imresize function but in that i dint understand
In some paper, authors used image interpolation by factor alpha to increase or decrease the size of the image. please tell how this this alpha factor used in an image interpolation

채택된 답변

Walter Roberson
Walter Roberson 2015년 8월 28일
scale = alpha;
newimage = imresize(YourImage, scale);
  댓글 수: 2
sandeep kumar
sandeep kumar 2015년 8월 28일
i referred one paper, in that he has given interpolation with factor 2 and interpolation with factor alpha/2. I tried implementing that, by using imresize function to enhance the image from 263X263 resolution to 512X512 resolution, but i couldn't understand how to give value to alpha.
Walter Roberson
Walter Roberson 2015년 8월 28일
MyImage = rand(263,263,3);
biggerImage = imresize(MyImage, 2);
smallerImage = imresize(MyImage, 1/2);
Image512a = imresize(MyImage, [512 512]);
Image512b = imresize(MyImage, 512/263);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Read, Write, and Modify Image에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by