opening a .rec file
이전 댓글 표시
I have a .rec file which is supposed to be a reconstructed SPECT image of a point source. I am trying to open it up in matlab.
I have usually used the following generic way of opening image data files in matlab:
fid = fopen('filename.ext','r');
A = fread(fid,sizeA,precision);
imagesc(A)
colormap('gray')
axis image off
but this block of code does not open my .rec file in this case. It simply returns a blank gray screen with no image. I was told something about specifying the file format, but I'm not sure how to do this.
댓글 수: 5
Iain
2014년 8월 27일
Do you know the precision? - What precision have you specified?
Have you tried plotting A with plot(A,'x')?
richard
2014년 8월 27일
Iain
2014년 8월 28일
plot(A,'x') should pop up a figure with the values of "A" plotted as crosses (thats what 'x' was for) - I was trying to get you to find out if there was data in the file. - Which Image Analyst is trying to help you do as well.
richard
2014년 8월 28일
Image Analyst
2014년 8월 28일
Attach your image and code to read it so we can (perhaps) try to fix it.
답변 (1개)
Image Analyst
2014년 8월 27일
Richard,
No, precision would be something like '*uint8'. What you called precision is actually "sizeA" and would be sizeA = [45, 45]. So try
sizeA = [45, 45];
precision = '*uint8';
A = fread(fid,sizeA,precision);
imshow(A, [])
colormap('gray');
axis on;
댓글 수: 5
richard
2014년 8월 27일
richard
2014년 8월 27일
Image Analyst
2014년 8월 27일
Try changing the endian (machinefmt) and see if that helps. What is the range of the values you get back? Are you sure you're using [] in the imshow() call?
richard
2014년 8월 27일
Image Analyst
2014년 8월 27일
It may. Looks like you need the fig file also since it's a GUIDE file. Try reading in A as bytes, or just opening it in notepad. Is it all zeros if you use either of those? If so, then the file actually is all zeros for some reason.
카테고리
도움말 센터 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!