MATLABで画像表示するときに画像が横向きになってしまうのを直したい
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
スマホで撮影した写真をMATLABで表示した際に,横向きになってしまい,スマホで撮影した写真のまま表示させたいと考えています.
何か良い方法があれば教えていただきたいです.
よろしくお願いします.
0 Commenti
Risposta accettata
Kojiro Saito
il 15 Dic 2022
スマホの画像にはEXIFのメタデータが含まれるので、Orientationの値を見て縦向き(6)だったらimrotateする方法でうまくいくと思います。
imageFile = 'IMG_xxx.jpg';
img = imread(imageFile);
% Get image meta information
info = imfinfo(imageFile);
% If an image is jpeg and contains exif
if isfield(info, 'Orientation')
if info.Orientation == 6
img = imrotate(img, -90);
end
end
imshow(img)
Più risposte (0)
Vedere anche
Categorie
Scopri di più su イメージ算術 in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!