imreadで画像を読み込むときの解像度

7 visualizaciones (últimos 30 días)
kanako machii
kanako machii el 13 de Ag. de 2020
Respondida: 源樹 上林 el 13 de Ag. de 2020
imreadで画像を読み込むとき、解像度が落ちてしまいます。
解像度を下げずに読み込む方法がありましたら、ご教授頂きたいです。
宜しくお願いします。

Respuestas (1)

源樹 上林
源樹 上林 el 13 de Ag. de 2020
例えば、
A = imread('ngc6543a.jpg');
size(A)
のようにすると、変数Aのサイズ(大きさ)が画像サイズより小さいサイズになってしまうということでしょうか?
もしくは表示だけの問題であれば、 image(A) ではなく、 imshow(A) を使用すれば解決するかもしれません。

Categorías

Más información sobre イメージ en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!