imreadで画像を読み込むときの解像度
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
imreadで画像を読み込むとき、解像度が落ちてしまいます。
解像度を下げずに読み込む方法がありましたら、ご教授頂きたいです。
宜しくお願いします。
0 commentaires
Réponses (1)
源樹 上林
le 13 Août 2020
例えば、
A = imread('ngc6543a.jpg');
size(A)
のようにすると、変数Aのサイズ(大きさ)が画像サイズより小さいサイズになってしまうということでしょうか?
もしくは表示だけの問題であれば、 image(A) ではなく、 imshow(A) を使用すれば解決するかもしれません。
0 commentaires
Voir également
Catégories
En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!