Info

This question is closed. Reopen it to edit or answer.

display clear JPEG image from hex characters in matlab R2018a

1 view (last 30 days)
fid=fopen('hexdata.txt','r');
img=fscanf(fid,'%2x',[256 120]);
fclose(fid);
resizedImage=imresize(img,[256 256]);
resizedImage=resizedImage';
figure,imshow(resizedImage,[]);
  2 Comments
Guillaume
Guillaume on 29 Jun 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
Guillaume on 29 Jun 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.

Answers (0)

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!