Hoe to use BRAT Dataset? It is in .nii format. I want to store it in .mat files. How to do it?
조회 수: 2 (최근 30일)
이전 댓글 표시
[V info]=ReadData3D(file .nii);
After this V has 256*256*155 matrix.
How to read the image?
댓글 수: 0
채택된 답변
Walter Roberson
2017년 12월 2일
I think it likely that you have already read the images. .nii files often have multiple slices stored in the same file. Your slices are V(:,:,1), V(:,:,2), V(:,:,3) and so on.
If you have R2017a or later, you could view them using
volumeViewer(V)
댓글 수: 3
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Pattern Recognition and Classification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!