please tell me about image interpolation.
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
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
댓글 수: 0
채택된 답변
  Walter Roberson
      
      
 2015년 8월 28일
        scale = alpha;
newimage = imresize(YourImage, scale);
댓글 수: 2
  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개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

