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 newBinarySegmentationParametersinstance.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.AResolutionassociated 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- aResolutionassociated with the image being segmented.
-
BinarySegmentationParameters
Creates with a specific resolution and intensity-histogram.- Parameters:
resolution- aResolutionassociated 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 newBinarySegmentationParametersinstance.- Parameters:
intensityHistogram- A histogram of the intensity values of the voxels that are being segmented.resolution- AResolutionassociated with the image being segmented.
-
-
Method Details
-
getIntensityHistogram
A histogram of the intensity values of the voxels that are being segmented. -
getResolution
AResolutionassociated with the image being segmented.
-