Filter löschen
Filter löschen

How to convert gray scale mat file to Jpg

31 Ansichten (letzte 30 Tage)
Mahmoud Hassan
Mahmoud Hassan am 28 Aug. 2018
Kommentiert: Rik am 10 Dez. 2020
I want to convert a gray scale mat file let’s say the name is new.mat to jpg file and i don't know how to do it
  3 Kommentare
Mahmoud Hassan
Mahmoud Hassan am 28 Aug. 2018
what files i don't understand you
madhan ravi
madhan ravi am 28 Aug. 2018
.mat file?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Image Analyst
Image Analyst am 28 Aug. 2018
Try this:
% Load the image variable from the MAT file into a structure s.
s = load(yourFileName);
% Extract the image from the structure
rgbImage = s.ImageName; % Or whatever the image variable is named.
% Write to disk in a jpg format, which you should never use for image analysis.
imwrite(rgbImage, 'my image.jpg');
  2 Kommentare
Jiho Ryoo
Jiho Ryoo am 10 Dez. 2020
Why should I never use the image for image analysis?
Rik
Rik am 10 Dez. 2020
Because jpeg is a lossy file format (technically it is possible to have lossless settings for jpeg, but nobody uses it). That means you will lose data when storing as jpeg, meaning your analyses will be less reliable.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Convert Image Type 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!

Translated by