how to write binary image into text file
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
megha
am 28 Nov. 2013
Kommentiert: SUMEET
am 4 Jun. 2014
hello, i want to write binary image into a text file. thank u
1 Kommentar
Akzeptierte Antwort
David Sanchez
am 28 Nov. 2013
M = your_matrix_with_image_data;
fid = fopen('your_binary_im.txt', 'w+');
for i=1:size(M, 1)
fprintf(fid, '%f ', M(i,:));
fprintf(fid, '\n');
end
fclose(fid);
3 Kommentare
Weitere Antworten (0)
Siehe auch
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!