how to write binary image into text file
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
hello, i want to write binary image into a text file. thank u
1 Commento
Risposta accettata
David Sanchez
il 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Convert Image Type 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!