Class BinarySegmentationParameters
Object
org.anchoranalysis.image.bean.nonbean.segment.BinarySegmentationParameters
public class BinarySegmentationParameters extends Object
Parameters that are passed during a
BinarySegmentation.-
Constructor Summary
Constructors Constructor Description BinarySegmentationParameters()Creates with no intensity-histogram or resolution.BinarySegmentationParameters(Optional<Resolution> resolution)Creates with a specific resolution, but no intensity-histogram.BinarySegmentationParameters(Optional<org.anchoranalysis.math.histogram.Histogram> intensityHistogram, Optional<Resolution> resolution)BinarySegmentationParameters(Resolution resolution, Optional<org.anchoranalysis.math.histogram.Histogram> intensityHistogram)Creates with a specific resolution and intensity-histogram. -
Method Summary
Modifier and Type Method Description Optional<org.anchoranalysis.math.histogram.Histogram>getIntensityHistogram()A histogram of the intensity values of the voxels that are being segmented.Optional<Resolution>getResolution()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
public BinarySegmentationParameters(Resolution resolution, Optional<org.anchoranalysis.math.histogram.Histogram> intensityHistogram)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<org.anchoranalysis.math.histogram.Histogram> intensityHistogram, Optional<Resolution> resolution)
-
-
Method Details
-
getIntensityHistogram
A histogram of the intensity values of the voxels that are being segmented. -
getResolution
AResolutionassociated with the image being segmented.
-