How to imread this binary image this way?

조회 수: 10 (최근 30일)
Veronika
Veronika 2017년 4월 6일
답변: Jan 2017년 4월 6일
Dear all,
I would like to read and show my binary imagy this way:
fprintf(1,'loading binary image...\n');
for i=1:256
okoli(:,:,i)=imread('binaryImage_okoli.mat',i);
end
and I have this error:
Error using imread (line 362)
Unable to determine the file format.
Error in model (line 117)
okoli(:,:,i)=imread('binaryImage_okoli.mat',i);
If I tried image format .tif it works correctly. So I wanted to know, how I should change this code for binary image in format .mat.
Thank you for your answers.
  댓글 수: 1
KSSV
KSSV 2017년 4월 6일
편집: KSSV 2017년 4월 6일
Why don't you read with extension .tif then?

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

채택된 답변

Jan
Jan 2017년 4월 6일
How did you store the image in MAT format? By save? Then simply load it:
Data = load('binaryImage_okoli.mat');
Now I guess the image is in Data.okoli, but you can find the out by: disp(data)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Code Generation, GPU, and Third-Party Support에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by