How to implement Bicubic interpolation in an image?
조회 수: 25 (최근 30일)
이전 댓글 표시
I have 256*256 dimension image and I want to make it 512*512 using bicubic interpolation. How to do it using csapi(x,y) or csapi(x,y,xx) function? What should be taken inplace of x & y here?
댓글 수: 0
답변 (2개)
TheRealTonyStark
2019년 10월 13일
편집: TheRealTonyStark
2019년 10월 13일
The resizing of image using bicubic interpolation method:
Example
J = imresize(I, 2, 'bicubic');%in your case
J: Resized image.
I: input image.
0.5: scaling factor
댓글 수: 0
Image Analyst
2017년 12월 1일
Simply use imresize():
resizedImage = imresize(originalImage, [512, 512]);
I never heard of the function csapi(). It does not show up in the help for my MATLAB.
댓글 수: 4
TheRealTonyStark
2019년 10월 13일
Increasing the size will create irreularities in the image. To smoothen that out we use spline fitting.
참고 항목
카테고리
Help Center 및 File Exchange에서 Splines에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!