dosimetry:userguide:design_task_functions:dtf
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dosimetry:userguide:design_task_functions:dtf [2015/07/02 15:47] – [Range Compensator Design] dpatenaude | dosimetry:userguide:design_task_functions:dtf [2021/07/29 18:28] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 4: | Line 4: | ||
===== Aperture Design===== | ===== Aperture Design===== | ||
- | Below is a list of the most common aperture design task function and a brief explanation of their intended usage (Specific details of each function, argument parameters, and return values are provided at the [[http:// | + | Below is a list of the most common aperture design task function and a brief explanation of their intended usage (Specific details of each function, argument parameters, and return values are provided at the [[http:// |
* **compute_aperture: | * **compute_aperture: | ||
* Compute the aperture without smoothing. | * Compute the aperture without smoothing. | ||
- | * Limits | + | * Recommended |
- | * **compute_smooth_aperture:** | + | * **compute_smoothed_aperture:** |
- | * Compute an aperture smoothed with a Guassian type blur on all targets and organs | + | * Compute an aperture smoothed with a vertex shift on all targets and organs |
- | * Limits | + | * Recommended |
* **smooth_aperture: | * **smooth_aperture: | ||
- | * Smooth an existing aperture with a Gaussian type blur. | + | * Smooth an existing aperture with a vertex shift. |
* **get_field_rect: | * **get_field_rect: | ||
* Gets the bounding box (in BEV) for the aperture opening (at true size not projected). | * Gets the bounding box (in BEV) for the aperture opening (at true size not projected). | ||
Line 22: | Line 22: | ||
* **make_aperture: | * **make_aperture: | ||
* Builds an aperture using the given point list. | * Builds an aperture using the given point list. | ||
- | * Limits | + | * Recommended |
+ | * **remove_polyset_holes: | ||
+ | * A polyset' | ||
+ | * This function removes the holes from a polyset of an existing aperture (e.g.: Call compute_aperture() and using the polyset from the returned aperture call remove_polyset_holes(). Then replace the original aperture polyset with the polyset returned from remove_polyset_holes()) | ||
+ | * **apply_mill_radius: | ||
+ | * This function applies a machinability enforcement using a tool mill radius to a polyset of an existing aperture. The resulting polyset shape will not have corners that produce machined under cutting for the mill radius defined. | ||
==== Geometry ==== | ==== Geometry ==== | ||
Line 29: | Line 34: | ||
The aperture device is modeled as one or more open (i.e. the radiation can pass through the defined shape) or closed (i.e. the radiation cannot pass through the defined shape) contours. The actual device blocking is achieved by shaping a high density material, either milled or with a multi-leaf collimator. The contour shapes are modeled at their intended position Zb along the beam axis. The overall aperture is bounded by the mounting apparatus that holds the aperture (typically creating circular or rectangular bounding aperture shapes). | The aperture device is modeled as one or more open (i.e. the radiation can pass through the defined shape) or closed (i.e. the radiation cannot pass through the defined shape) contours. The actual device blocking is achieved by shaping a high density material, either milled or with a multi-leaf collimator. The contour shapes are modeled at their intended position Zb along the beam axis. The overall aperture is bounded by the mounting apparatus that holds the aperture (typically creating circular or rectangular bounding aperture shapes). | ||
- | The contour shape is constrained by the ability to mechanically construct the shape. Milling | + | The contour shape can be constrained by the ability to mechanically construct the shape. Milling |
+ | |||
Aperture beam-limiting devices have a physical thickness which is ignored in the beam model. Only the aperture opening shape is considered during any Dosimetry App calculations. Apertures are considered to be infinitely thin and thickness of the devices and slabs will be ignored for divergence and on/off blocking (See Slopsema). | Aperture beam-limiting devices have a physical thickness which is ignored in the beam model. Only the aperture opening shape is considered during any Dosimetry App calculations. Apertures are considered to be infinitely thin and thickness of the devices and slabs will be ignored for divergence and on/off blocking (See Slopsema). | ||
Line 36: | Line 43: | ||
==== Computing an Aperture Shape ==== | ==== Computing an Aperture Shape ==== | ||
- | This example will provide a high level walk through of calling the //compute_smooth_aperture// function (note // | + | This example will provide a high level walk through of calling the //compute_smoothed_aperture// function (note // |
- Construct a // | - Construct a // | ||
Line 62: | Line 69: | ||
ap_params.downstream_edge = 100.0; // Set the distance from patient side surface to isocenter along CAX (100mm) | ap_params.downstream_edge = 100.0; // Set the distance from patient side surface to isocenter along CAX (100mm) | ||
</ | </ | ||
- | - The // | + | - The // |
- <code cpp> | - <code cpp> | ||
- | // Compute the aperture shape. Parameters are: aperture_creation_params, | + | // Compute the aperture shape. Parameters are: aperture_creation_params, |
- | aperture aper = compute_smoothed_aperture(ap_params, | + | aperture aper = compute_smoothed_aperture(ap_params, |
</ | </ | ||
Line 72: | Line 79: | ||
Using exposed Dosimetry App functions an existing dose image can be used as a target structure for aperture creation. The // | Using exposed Dosimetry App functions an existing dose image can be used as a target structure for aperture creation. The // | ||
- | Specific details of each function, argument parameters, and return values are provided at the [[http:// | + | Specific details of each function, argument parameters, and return values are provided at the [[http:// |
*<code cpp> | *<code cpp> | ||
Line 87: | Line 94: | ||
<WRAP center 75%> | <WRAP center 75%> | ||
- | < | + | < |
- | < | + | < |
</ | </ | ||
Line 122: | Line 129: | ||
Enforcing machinability of the apertures at all evaluation steps is required in order to achieve plan vs. actual. Determining the machinable aperture shape is accomplished by performing an offset of the current “unmachinable” aperture shape by the radius of the final milling tool (in either the inward or outward direction) and then re-offsetting this result by the same distance. Machinability is enforced during aperture computation by using the // | Enforcing machinability of the apertures at all evaluation steps is required in order to achieve plan vs. actual. Determining the machinable aperture shape is accomplished by performing an offset of the current “unmachinable” aperture shape by the radius of the final milling tool (in either the inward or outward direction) and then re-offsetting this result by the same distance. Machinability is enforced during aperture computation by using the // | ||
- | Additionally, | + | Additionally, |
The images below provide an exaggerated visual explanation of the creation options for aperture smoothing and mill radius. | The images below provide an exaggerated visual explanation of the creation options for aperture smoothing and mill radius. | ||
- <imgref ap_beam_setup>: | - <imgref ap_beam_setup>: | ||
+ | - <imgref ap_smoothalgorithm>: | ||
- <imgref ap_noradiusnosmooth>: | - <imgref ap_noradiusnosmooth>: | ||
- | * Note: the dosimetry app api functions limit the mill radius | + | * Note: Recommended |
- <imgref ap_radiusnosmooth>: | - <imgref ap_radiusnosmooth>: | ||
- | - <imgref ap_radiussmooth>: | + | - <imgref ap_radiussmooth>: |
- | < | ||
- | <WRAP center | + | <WRAP center |
- | < | + | < |
- | < | + | < |
- | < | + | |
</ | </ | ||
+ | <WRAP center 85%> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | </ | ||
==== Aperture Shape Manipulation ==== | ==== Aperture Shape Manipulation ==== | ||
Line 148: | Line 159: | ||
* aperture_manual_override | * aperture_manual_override | ||
- | Below is a brief explanation of each of the manipulation tools and their intended effect (Specific details of each argument parameter are provided at the [[http:// | + | Below is a brief explanation of each of the manipulation tools and their intended effect (Specific details of each argument parameter are provided at the [[http:// |
** Example usage:** | ** Example usage:** | ||
Line 158: | Line 169: | ||
ap_params.overrides.push_back(aperture_manual_override(make_polyset(poly), | ap_params.overrides.push_back(aperture_manual_override(make_polyset(poly), | ||
ap_params.half_planes.push_back(aperture_half_plane(make_vector(0., | ap_params.half_planes.push_back(aperture_half_plane(make_vector(0., | ||
- | aperture aper = compute_smoothed_aperture(ap_params, | + | aperture aper = compute_smoothed_aperture(ap_params, |
</ | </ | ||
=== Structure Centerline === | === Structure Centerline === | ||
Line 166: | Line 177: | ||
The aperture centerline defines a geometry using the centerline of a structure and a fixed width margin to create a region to remove from the aperture opening. In <imgref ap_centline_setup> | The aperture centerline defines a geometry using the centerline of a structure and a fixed width margin to create a region to remove from the aperture opening. In <imgref ap_centline_setup> | ||
- | < | + | < |
=== Aperture Organ === | === Aperture Organ === | ||
Line 176: | Line 187: | ||
In <imgref ap_organ_setup> | In <imgref ap_organ_setup> | ||
- | < | + | < |
In <imgref ap_organ_setup1> | In <imgref ap_organ_setup1> | ||
- | < | + | < |
=== Manual Override === | === Manual Override === | ||
Line 188: | Line 199: | ||
Manual override allows the manipulation of the aperture opening using a constructed polyset shape. Coordinates of the points making up the polygon at to be specified in BEV at the plane of the aperture downstream edge. The aperture opening can either be expanded to or limited based on the specified shape of the override polygons. <imgref manual_override> | Manual override allows the manipulation of the aperture opening using a constructed polyset shape. Coordinates of the points making up the polygon at to be specified in BEV at the plane of the aperture downstream edge. The aperture opening can either be expanded to or limited based on the specified shape of the override polygons. <imgref manual_override> | ||
- | < | + | < |
Line 197: | Line 208: | ||
The aperture half and corner planes define a geometry that can be used to remove the portion of the aperture opening in the region on the positive sides (side to which the normal points) of the planes. This feature is necessary in order to create match field aperture devices. In <imgref ap_planes>, | The aperture half and corner planes define a geometry that can be used to remove the portion of the aperture opening in the region on the positive sides (side to which the normal points) of the planes. This feature is necessary in order to create match field aperture devices. In <imgref ap_planes>, | ||
- | < | + | < |
===== Range Compensator Design ===== | ===== Range Compensator Design ===== | ||
- | The following example assumes you are familiar with the [[http:// | + | The following example assumes you are familiar with the [[http:// |
* **compute_optimized_rc: | * **compute_optimized_rc: | ||
Line 256: | Line 267: | ||
The <imgref rc_patch_setup> | The <imgref rc_patch_setup> | ||
- | < | + | < |
The target (green) is shown within the 3D image (blue & red) that represents the current dose of the target that has been delivered from another field angle. The blue values of the image represent zero dose while the red 100%. Passing this // | The target (green) is shown within the 3D image (blue & red) that represents the current dose of the target that has been delivered from another field angle. The blue values of the image represent zero dose while the red 100%. Passing this // | ||
Line 262: | Line 273: | ||
An approximation of the resulting range compensator surface is shown in <imgref rc_patch_surface> | An approximation of the resulting range compensator surface is shown in <imgref rc_patch_surface> | ||
- | < | + | < |
---- | ---- |
dosimetry/userguide/design_task_functions/dtf.1435852076.txt.gz · Last modified: 2021/07/29 18:24 (external edit)