-
Notifications
You must be signed in to change notification settings - Fork 102
Intensity volume histogram (IVH) features
Aditya P. Apte edited this page Mar 20, 2018
·
5 revisions
The following IVH features are supported:
- mean: The mean of the histogram
- max: The maximum of the histogram
- min: The minimum of the histogram
- I50: The median intensity.
- range: maximum - minimum.
- Ix: The minimum intensity to the hottest x% volume.
- MOHx: The mean of the hottest x% volume.
- MOCx: The mean of the coldest x% volume.
- IabsX: the minimum intensity to the hottest x cc volume.
- Vx: Volume getting at least x% of the maximum intensity.
- VabsX: Volume getting at least x units of intensity.
% Vector of absolute intensity cutoffs. Units are image units (e.g. HU or SUV)
xAbsForVxV = -140:10:100; % for CT, 0:2:28; % for PET
% Vector of percentage volumes
xForIxV = 10:10:90;
% Vector of absolute volumes [cc]
xAbsForIxV = 10:20:200;
% Vector of percent intensity cutoff
xForVxV = 10:10:90;
% Binwidth for the intensity volume histogram
IVHBinWidth = 20; % image units (e.g. HU or SUV)
% Structure index
structNum = 1;
% Scan index
scanNum = 1;
% Access the planC object if the scan is displayed on the viewer
global planC
% call the feature calculator
ivhFeatureS = getIvhParams(structNum, scanNum, IVHBinWidth,...
xForIxV, xAbsForIxV, xForVxV, xAbsForVxV,planC);