Dose Influence Matrix for Each Structure #589
-
Hi, I want to build my own optimization model, but use the data from matRad. I have imported DICOM data into matRad and calculated the dose influence matrix. I know that this matrix is stored in dij.physicalDose , but I need the dose influence matrix for each structure separately. So my question is how can I know which rows of the dose influence matrix belong to which structure? Thank you in advance for your time! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
The structure indices are stored in the 4th column of the |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your help! This is very helpful! |
Beta Was this translation helpful? Give feedback.
The structure indices are stored in the 4th column of the
cst
for each structure. For example,cst{i,4}{j}
is the index list of the i-th structure, for the j-th ct scenario (usually,j=1
). You can use this to index the dose influence matrix then:dij.physicalDose{1}(cst{1,4}{1},:)
Note that structures may overlap.