functions to import czi files

조회 수: 16 (최근 30일)
Noriko HOUNOKI
Noriko HOUNOKI 2019년 12월 17일
답변: Mohammed Attrash 2024년 4월 25일
Are there any functions to import czi files, which is Carl Zeiss Image files?
I don't have any Zeiss equipment or softwear, "Zen".
I have just czi files and MATLAB, which is including Image Processing Toolbox.
I hope to open, view, and process czi files by MATLAB.
  댓글 수: 1
Fernando Perez
Fernando Perez 2023년 11월 14일
I have the same issue at the moment

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

답변 (1개)

Mohammed Attrash
Mohammed Attrash 2024년 4월 25일
You can use bfopen function (under Bio-Formats toolbox).
For me the code was as follow:
img=bfopen(path_to_file.czi); % The import file was a 1x4 cell
imgnew(:,:,1)=img{1,1}{1,1};
imgnew(:,:,2)=img{1,1}{2,1};
imgnew(:,:,3)=img{1,1}{3,1};
image(imgnew);

카테고리

Help CenterFile Exchange에서 データのインポートと解析에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!