i have 1000*1000 pixel image.how can i convert it into m*n(400*300) pixel image.
이전 댓글 표시
i have 1000*1000 pixel image.how can i convert it into m*n(400*300) pixel image.
댓글 수: 1
Walter Roberson
2013년 12월 4일
When you do this, you are going from an image that has equal-length sides (a square) to an image that has a 4:3 aspect ratio. In order to do that you will have to cut out some of the image (e.g, resize to 400 x 400 and then cut 100), or else you will need to resize unequally so that what was a circle becomes an ellipse ("squished" from one side.)
There is no way to resize a square image to a 4:3 aspect ratio and keep all of the information in the same size proportions as the original.
답변 (1개)
Sabarinathan Vadivelu
2013년 12월 4일
outputImage = imresize(inputImage,[400 300]);
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!