Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
how to resolve it the program
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
f=dir('Yourfolder\*.jpg');
fil={f.name};
for k=1:numel(fil)
file=fil{k}
new_file=strrep(file,'.jpg','.png')
im=imread(file)
imwrite(im,new_file)
end
but dimension is not reduced to 2 dimension matrix
0 Kommentare
Antworten (1)
Walter Roberson
am 13 Jun. 2013
Why would it be reduced to a 2 dimensional matrix? You are just reading in the file and writing out the same content again, to the same kind of file.
Are you hoping to change the image into pseudocolor? If so then you cannot do that with JPEG files, as JPEG does not support pseudocolor.
1 Kommentar
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!