How can I change imge dimensions?
이전 댓글 표시
Hi, everyone!
I have a database of images (the number of images may vary) with different dimensions, need to change thier width/high (resize whole image but not crop it) to same one, then save the new images in a separate folder.
I have tried the im.resize function, but the image is cropped and information lost. It is necessary that the integrity of the image does not change, but only its parameters.
Thanks
댓글 수: 6
Walter Roberson
2018년 7월 19일
?? imresize never crops.
imresize can give you a result that looks distorted, if you do not preserve the aspect ratio, but it will not crop.
victor
2018년 7월 19일
Walter Roberson
2018년 7월 19일
outfilename = strcat('resize_', jpgFileName);
imrewrite(resize, outfilename);
victor
2018년 7월 20일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Images에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!