i have 1000*1000 pixel image.how can i convert it into m*n(400*300) pixel image.

1 回表示 (過去 30 日間)
ajay kumar
ajay kumar 2013 年 12 月 4 日
コメント済み: Walter Roberson 2013 年 12 月 4 日
i have 1000*1000 pixel image.how can i convert it into m*n(400*300) pixel image.
  1 件のコメント
Walter Roberson
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
Sabarinathan Vadivelu 2013 年 12 月 4 日
outputImage = imresize(inputImage,[400 300]);

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by