namespace Voxel-based Thresholding Functions

void threshold(Inrimage *inr, double min ) throw( Exception )
thresholds image grey levels above min value If the voxels values are denoted by v Background is defined by: v < min Foreground is defined by: v >= min Background voxels will be set to 0, while foreground voxels will be set to the maximum value (depending on the word type)
void threshold(Inrimage *inr, double min, double max ) throw( Exception )
thresholds image grey levels between min and max values If the voxels values are denoted by v Background is defined by: v < min || v > max Foreground is defined by: v >= min && v <= max Background voxels will be set to 0, while foreground voxels will be set to the maximum value (depending on the word type)
void threshold(Inrimage *inr, Voxel *min, Voxel *max=NULL ) throw( Exception )
thresholds image grey levels between min and max values If the voxels values are denoted by v Background is defined by: v < min ( || v > max if max is provided) Foreground is defined by: v >= min ( && v <= max if max is provided) Background voxels will be set to 0, while foreground voxels will be set to the maximum value (depending on the word type) If the voxel max value is NULL, this function is equivalent to void threshold(Inrimage *inr, Voxel *min );
void threshold(Inrimage *inr, Voxel *min, Voxel *bg, Voxel *fg) throw( Exception )
thresholds image grey levels above min value If the voxels values are denoted by v Background is defined by: v < min Foreground is defined by: v >= min Background voxels will be set to bg color, while foreground voxels will be set to fg color
void threshold(Inrimage *inr, Voxel *min, Voxel *max, Voxel *bg, Voxel *fg) throw( ErrTypeMismatch )
thresholds image grey levels between min and max values If the voxels values are denoted by v Background is defined by: v < min || v > max Foreground is defined by: v >= min && v <= max Background voxels will be set to bg color, while foreground voxels will be set to fg color If the voxel max value is NULL, this function is equivalent to void threshold(Inrimage *inr, Voxel *min, Voxel *bg, Voxel *fg );
threshold
thresholds image grey levels between min and max values, and changes its type
binarize
Binarizes an image
binarize
Binarizes an image
binarize
Binarizes an image
binarize
Binarizes an image and changes its type
ternarize
Applies a double thresholding on this image
ternarize
Applies a double thresholding on this image
ternarize
Applies a double thresholding on this image
ternarize
Applies a double thresholding on this image

alphabetic index hierarchy of classes


this page has been generated automatically by doc++

(c)opyright by Malte Zöckler, Roland Wunderling
contact: doc++@zib.de