HOW TO OPEN IMAGE AS ATTACHED

조회 수: 1 (최근 30일)
mohd akmal masud
mohd akmal masud 2022년 9월 19일
댓글: mohd akmal masud 2022년 9월 20일
HELLO DEAR,
Anyone can help me open my image as link attached.
image can get thru this link.
  댓글 수: 3
Walter Roberson
Walter Roberson 2022년 9월 19일
That is a binary file without any obvious "magic numbers" to hint what kind of data is there.
I speculate that it is possibly an .img file that needs to be matched with a .hdr file such as for use by Analyze and related software. https://www.mathworks.com/help/images/ref/analyze75read.html
mohd akmal masud
mohd akmal masud 2022년 9월 19일
yah..actually its have two file as attached here(images)..then I dont know how to open it. Can help me?

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

채택된 답변

Walter Roberson
Walter Roberson 2022년 9월 19일
img = multibandread('my_images_it8.img', [128 128 128], 'float', 0, 'bsq', 'ieee-le');
volumeViewer(img);
  댓글 수: 4
Walter Roberson
Walter Roberson 2022년 9월 20일
Look inside the .hdr file, and you will find
!matrix size [1] := 128
!matrix size [2] := 128
!matrix size [3] := 128
and you will also find
!number format := short float
"short float" is also known as single precision, and is 4 bytes per entry
needed_bytes = 128*128*128*4
needed_bytes = 8388608
... and it turns out the .img file is exactly 8388608 bytes long, so it is exactly consistent with the arrays being 128 x 128 x 128.
And the images look fine with volume viewer.
mohd akmal masud
mohd akmal masud 2022년 9월 20일

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

추가 답변 (1개)

KSSV
KSSV 2022년 9월 19일
Your is is a hdr image. Read about hdfread

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by