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

imreadで画像を読み込むとき、解像度が落ちてしまいます。
解像度を下げずに読み込む方法がありましたら、ご教授頂きたいです。
宜しくお願いします。

Respuestas (1)

源樹 上林
源樹 上林 el 13 de Ag. de 2020

0 votos

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

Categorías

Más información sobre Read, Write, and Modify Image en Centro de ayuda y File Exchange.

Preguntada:

el 13 de Ag. de 2020

Respondida:

el 13 de Ag. de 2020

Community Treasure Hunt

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

Start Hunting!