imreadで画像を読み込むときの解像度
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
imreadで画像を読み込むとき、解像度が落ちてしまいます。
解像度を下げずに読み込む方法がありましたら、ご教授頂きたいです。
宜しくお願いします。
0 Kommentare
Antworten (1)
源樹 上林
am 13 Aug. 2020
例えば、
A = imread('ngc6543a.jpg');
size(A)
のようにすると、変数Aのサイズ(大きさ)が画像サイズより小さいサイズになってしまうということでしょうか?
もしくは表示だけの問題であれば、 image(A) ではなく、 imshow(A) を使用すれば解決するかもしれません。
0 Kommentare
Siehe auch
Kategorien
Mehr zu Read, Write, and Modify Image finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!