필터 지우기
필터 지우기

overlay nifti mask on nifti volume

조회 수: 11 (최근 30일)
SJDS
SJDS 2021년 5월 7일
댓글: Asvin Kumar 2021년 5월 11일
i have a 3d MRI in nifti format and a 3d binary mask in nifti. how to overlay the mask on the volume and eliminate the undesired regions?
NOTE: I want to apply glcm on the result.
Mask:

답변 (1개)

Asvin Kumar
Asvin Kumar 2021년 5월 10일
You can use the niftread function to import your 3D data.
Once imported, it behaves just like any 3D matrix. You can then apply your 3D binary mask on that data.
Once processed, you can save your output using the niftiwrite function.
Here's an example of processing NIfTI data that applies a 3D median filter on the imported volume: Write Median-Filtered Volume to NIfTI File This example should give you an idea of what you can do.
  댓글 수: 2
SJDS
SJDS 2021년 5월 10일
I want to use the mask to eliminate other voxels from the original MRI using matlab. Something like what imoverlay function does in matlab for 2d image but for 3d volume. Could you explain more on how to apply 3D binary mask on that data?
Asvin Kumar
Asvin Kumar 2021년 5월 11일
I'm not a 100% sure about how MRI data is represented. Since you mention that you want to apply GLCM on this masked MRI, I assume, that the lowest value for MRI voxels is 0 and that stands for 'low'. You can adjust this as required.
If you had a 3D matrix, here's how you could apply a binary mask.
vol = randi(10,[4 4 6]) % similar to original MRI data
vol =
vol(:,:,1) = 3 5 3 3 10 5 6 1 4 3 6 9 1 5 1 2 vol(:,:,2) = 5 1 2 6 9 5 1 3 4 10 2 10 8 8 3 10 vol(:,:,3) = 1 9 2 9 1 5 2 9 5 8 7 1 9 8 10 7 vol(:,:,4) = 6 2 9 2 1 9 1 5 4 7 7 6 1 8 9 7 vol(:,:,5) = 5 3 3 2 3 5 5 2 9 5 1 8 1 5 2 8 vol(:,:,6) = 3 10 4 7 7 7 1 4 7 5 8 7 3 6 9 5
mask = vol>7; % creating my own binary mask
maskedVol = vol;
maskedVol(~mask)=0 % setting to 0 if values of voxel is not >7
maskedVol =
maskedVol(:,:,1) = 0 0 0 0 10 0 0 0 0 0 0 9 0 0 0 0 maskedVol(:,:,2) = 0 0 0 0 9 0 0 0 0 10 0 10 8 8 0 10 maskedVol(:,:,3) = 0 9 0 9 0 0 0 9 0 8 0 0 9 8 10 0 maskedVol(:,:,4) = 0 0 9 0 0 9 0 0 0 0 0 0 0 8 9 0 maskedVol(:,:,5) = 0 0 0 0 0 0 0 0 9 0 0 8 0 0 0 8 maskedVol(:,:,6) = 0 10 0 0 0 0 0 0 0 0 8 0 0 0 9 0

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

카테고리

Help CenterFile Exchange에서 3-D Volumetric Image Processing에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by