Read DVH and compute the dose metric (V2%, D98%, D3cc...)

버전 1.0.7 (24.6 KB) 작성자: vincent caillet
The purpose of this code is to compute a specific Dose metric given a DVH with relative dose and relative volume.
다운로드 수: 181
업데이트 날짜: 2018/9/3

라이선스 보기

*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 릴리스 호환 정보
개발 환경: R2018a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Naive Bayes에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.7

Added some notes

1.0.6

Added some notes

1.0.5

Added a screenshot

1.0.4

added some stuff

1.0.3

Simpler explanations

1.0.2

Added some graphics to it and solved some errors

1.0.1

Added the All.mat file

1.0.0