-
Notifications
You must be signed in to change notification settings - Fork 5
Computational Methods
The following sections demonstrate the algorithms used for computing field comparison metrics of the ViewRay Field Uniformity-Timing Check application.
Gamma analysis is performed based on the formalism presented by D. A. Low et. al., A technique for the quantitative evaluation of dose distributions., Med Phys. 1998 May; 25(5): 656-61. In this formalism, the Gamma quality index γ is defined as follows for each point along the measured profile Rm given the reference profile Rc:
γ = min{Γ(Rm,Rc}∀{Rc}
where:
Γ = √ (r^2(Rm,Rc)/ΔdM^2 + δ^2(Rm,Rc)/ΔDM^2),
r(Rm,Rc) = | Rc - Rm |,
δ(Rm,Rc) = Dc(Rc) - Dm(Rm),
Dc(Rc) and Dm(Rm) represent the reference and measured signal at each Rc and Rm, respectively, and
ΔdM and ΔDM represent the absolute and Distance To Agreement Gamma criterion (by default 2%/1mm), respectively.
The absolute criterion is typically given in percent and can refer to a percent of the maximum dose (commonly called the global method) or a percentage of the voxel Rm being evaluated (commonly called the local method). The application is capable of computing gamma using either approach, and can be set when calling CalcGamma
by passing a boolean value of 1 (for local) or 0 (for global). By default, the global method (0) is used.
The computation applied in this application is the 1D algorithm, in that the distance to agreement criterion is evaluated only along the dimension of the reference profile when determining min{Γ(Rm,Rc}∀{Rc}. To accomplish this, the reference profile is shifted relative to the measured profile using linear 1D GPU (when available) interpolation. For each shift, Γ(Rm,Rc} is computed, and the minimum value γ is determined.
To improve computation efficiency, the computation space ∀{Rc} is limited to twice the distance to agreement parameter. Thus, the maximum "real" Gamma index returned by the application is 2.
Home | Installation and Use | Troubleshooting | ©2015 University of Wisconsin Board of Regents