convert hex data to viewable image(JPEG) in matlab

조회 수: 27 (최근 30일)
Sushikshitha C
Sushikshitha C 2018년 6월 29일
댓글: Chandler Timm Doloriel 2022년 3월 31일
i have a hex data of JPEG image from a software called "HxD Editor".The file attached below is the text file of hex characters now, by using that convert back to its original JPEG image in matlab R2018a
fid = fopen('hexdata.txt', 'r');
% Scann the txt file
img = fscanf(fid, '%x', [256,120]);
% Close the txt file
fclose(fid);
% restore the image
outImg = reshape(img,[128 128]);
outImg = outImg';
figure, imshow(outImg,[])
  댓글 수: 3
Guillaume
Guillaume 2018년 6월 29일
편집: Guillaume 2018년 6월 29일
Stop asking the same question over and over. This only irritates us.
edit: and again!

댓글을 달려면 로그인하십시오.

답변 (2개)

Jan
Jan 2018년 6월 29일
편집: Jan 2018년 6월 29일
Import the HEx data as 8 Bit values:
img = fscanf(fid, '%2x', [256,120])
% ^ this matters
You cannot reshape a [256 x 120] array to a [128 x 128] array. Reshaping does not change the number of elements. Maybe you mean imresize? The lack of comments in your code force the readers to guess, what you want to do.

Guillaume
Guillaume 2018년 6월 29일
편집: Guillaume 2018년 6월 29일
Clearly, you have absolutely no idea what you're doing.
A quick search of the first few bytes of your hexadecimal stream reveals that FF D8 FF E0 is typical of the header of a JPEG file. So what you have is simply the whole content of a jpeg file encoded as hexadecimal. Reading that as an array of bytes and hoping it's somehow going to display as an image is never going to work.
The simplest method to decode the image is to resave the stream as a jpeg file and open that the normal way:
fid = fopen('hexdata.txt', 'r');
bindata = fscanf(fid, '%2x'); %read bytes encoded as hexadecimal character
fclose(fid);
fid = fopen('hexdata.jpg', 'w');
fwrite(fid, bindata); %save bytes to jpeg file
fclose(fid);
img = imread('hexdata.jpg');
imshow(img);
  댓글 수: 2
Sushikshitha C
Sushikshitha C 2018년 6월 29일
Sorry..... and thanks
Chandler Timm Doloriel
Chandler Timm Doloriel 2022년 3월 31일
@Guillaume Is there a way to convert this JPEG hex into RGB888 hex without using the fopen,fwrite?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by