Class BinarySegmentationParameters
Object
BinarySegmentationParameters
Parameters that are passed during a
BinarySegmentation
.-
Constructor Summary
ConstructorsConstructorDescriptionCreates with no intensity-histogram or resolution.BinarySegmentationParameters
(Optional<Resolution> resolution) Creates with a specific resolution, but no intensity-histogram.BinarySegmentationParameters
(Optional<Histogram> intensityHistogram, Optional<Resolution> resolution) Creates a newBinarySegmentationParameters
instance.BinarySegmentationParameters
(Resolution resolution, Optional<Histogram> intensityHistogram) Creates with a specific resolution and intensity-histogram. -
Method Summary
Modifier and TypeMethodDescriptionA histogram of the intensity values of the voxels that are being segmented.AResolution
associated with the image being segmented.
-
Constructor Details
-
BinarySegmentationParameters
public BinarySegmentationParameters()Creates with no intensity-histogram or resolution. -
BinarySegmentationParameters
Creates with a specific resolution, but no intensity-histogram.- Parameters:
resolution
- aResolution
associated with the image being segmented.
-
BinarySegmentationParameters
Creates with a specific resolution and intensity-histogram.- Parameters:
resolution
- aResolution
associated with the image being segmented.intensityHistogram
- a histogram of the intensity values of the voxels that are being segmented.
-
BinarySegmentationParameters
public BinarySegmentationParameters(Optional<Histogram> intensityHistogram, Optional<Resolution> resolution) Creates a newBinarySegmentationParameters
instance.- Parameters:
intensityHistogram
- A histogram of the intensity values of the voxels that are being segmented.resolution
- AResolution
associated with the image being segmented.
-
-
Method Details
-
getIntensityHistogram
A histogram of the intensity values of the voxels that are being segmented. -
getResolution
AResolution
associated with the image being segmented.
-