Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
display clear JPEG image from hex characters in matlab R2018a
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
fid=fopen('hexdata.txt','r');
img=fscanf(fid,'%2x',[256 120]);
fclose(fid);
resizedImage=imresize(img,[256 256]);
resizedImage=resizedImage';
figure,imshow(resizedImage,[]);
2 Commenti
Guillaume
il 29 Giu 2018
This appears to be a continuation of convert-hex-data-to-viewable-image-using-matlab-r2018a, in which I think you say you've resolved the problem.
Therefore, it's not clear what your question is here.
Guillaume
il 29 Giu 2018
Also, there are 22504 hexadecimal characters = 11252 bytes in your text file. Neither 256, nor 120 are a divisor of 11252, so it's not clear why you're attempting to read a 256x120 array.
Risposte (0)
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!