For loop on a 3D matrix to get a range of slices

조회 수: 4 (최근 30일)
Nandini Chatterjee
Nandini Chatterjee 2020년 4월 1일
댓글: darova 2020년 4월 1일
I have 4 files. An mha file of the original CT scan, an mha file of the annotated CT scan, and its respective mat file. Both mat files have the of size 512 x 512 x 38. If you open SG.mha on 3DSlicer, you will see the annotation of tumor as you go through all the slices. I want to create a script where it goes through all the SG.mat slices, finds the slices that have the tumor in it, correspond it to the CT.mat, and then only look at the area of interest (the tumor).
*I uploaded the Annotated scans, but I am unable to upload the CT scans even after compressing the file.
  댓글 수: 1
Nandini Chatterjee
Nandini Chatterjee 2020년 4월 1일
For example, I have multiple slices that look like this. The tumor is in white.

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

채택된 답변

darova
darova 2020년 4월 1일
Use find and sum
find(sum(sum(SG,1),2)) % number of nonzero slices
  댓글 수: 6
Nandini Chatterjee
Nandini Chatterjee 2020년 4월 1일
Thank you!
darova
darova 2020년 4월 1일
happy to help!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by