*Let me know if you enjoy the code or there is something that needs to be modified*
Read the DVH and compute the dose metric (V2%, D98%, D3cc, D98%, D97% and even the Mean lung dose...). The DVH needs to be in relative form but given the prescribed dose and the volume of the structure, D3cc and V20Gy can be calculated.
User needs to follow one of the given example in the description.
Start by the following :
>> load('All.mat');
Example 1:
>> ComputeDoseMetric_fromDVH(Dose_x, Volume_y, 'V2%')
>> V2%: Percentage Volume receiving 2% of the dose is 31.8286%
Example 2:
>>ComputeDoseMetric_fromDVH(Dose_x, Volume_y, 'D2%')
>> D2%: Dose covering 2% of the Volume is 38.3% of the dose
Example 3:
>>ComputeDoseMetric_fromDVH(Dose_x, Volume_y, 'D2cc')
>> Error - Need to define the Volume to be able to calculate the D2cc
Example 4:
>>ComputeDoseMetric_fromDVH(Dose_x, Volume_y, 'D2cc', 48, 22)
%Prescribed dose is 48Gy
%Volume of the structure of 22 cc
>> D2cc: Dose covering 2cc of the Volume is 7.95% of the dose
>> D2cc: Dose covering 2cc of the Volume is 3.816Gy
Example 5:
>>ComputeDoseMetric_fromDVH(Dose_x, Volume_y, 'MLD', 48, 22)
% WARNING: Only for the lung structure
>>MLD: Mean Lung Dose 1.8566Gy
인용 양식
vincent caillet (2024). Read DVH and compute the dose metric (V2%, D98%, D3cc...) (https://www.mathworks.com/matlabcentral/fileexchange/68650-read-dvh-and-compute-the-dose-metric-v2-d98-d3cc), MATLAB Central File Exchange. 검색 날짜: .
MATLAB 릴리스 호환 정보
플랫폼 호환성
Windows macOS Linux카테고리
태그
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!