Uses of Class
org.anchoranalysis.image.bean.nonbean.segment.SegmentationFailedException
| Package | Description |
|---|---|
| org.anchoranalysis.image.bean.segment.binary |
Base classes to perform binary-segmentation.
|
| org.anchoranalysis.image.bean.segment.object |
Base classes to segment a channel into objects.
|
-
Uses of SegmentationFailedException in org.anchoranalysis.image.bean.segment.binary
Methods in org.anchoranalysis.image.bean.segment.binary that throw SegmentationFailedException Modifier and Type Method Description abstract org.anchoranalysis.image.voxel.binary.BinaryVoxels<org.anchoranalysis.image.voxel.buffer.primitive.UnsignedByteBuffer>BinarySegmentation. segment(org.anchoranalysis.image.voxel.VoxelsUntyped voxels, BinarySegmentationParameters parameters, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask)Performs a segmentation on voxels so that each voxel has an on or off state after the operation.org.anchoranalysis.image.voxel.binary.BinaryVoxels<org.anchoranalysis.image.voxel.buffer.primitive.UnsignedByteBuffer>BinarySegmentationReference. segment(org.anchoranalysis.image.voxel.VoxelsUntyped voxels, BinarySegmentationParameters parameters, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask)org.anchoranalysis.image.voxel.binary.BinaryVoxels<org.anchoranalysis.image.voxel.buffer.primitive.UnsignedByteBuffer>BinarySegmentationThreshold. segment(org.anchoranalysis.image.voxel.VoxelsUntyped voxels, BinarySegmentationParameters parameters, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask)org.anchoranalysis.image.voxel.binary.BinaryVoxels<org.anchoranalysis.image.voxel.buffer.primitive.UnsignedByteBuffer>BinarySegmentationUnary. segment(org.anchoranalysis.image.voxel.VoxelsUntyped voxels, BinarySegmentationParameters parameters, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask)protected abstract org.anchoranalysis.image.voxel.binary.BinaryVoxels<org.anchoranalysis.image.voxel.buffer.primitive.UnsignedByteBuffer>BinarySegmentationUnary. segmentFromExistingSegmentation(org.anchoranalysis.image.voxel.VoxelsUntyped voxels, BinarySegmentationParameters parameters, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask, BinarySegmentation segment)Performs a binary-segmentation, in a similar manner toBinarySegmentation.segment(org.anchoranalysis.image.voxel.VoxelsUntyped, org.anchoranalysis.image.bean.nonbean.segment.BinarySegmentationParameters, java.util.Optional<org.anchoranalysis.image.voxel.object.ObjectMask>)but with the delegate as additional argument. -
Uses of SegmentationFailedException in org.anchoranalysis.image.bean.segment.object
Methods in org.anchoranalysis.image.bean.segment.object that throw SegmentationFailedException Modifier and Type Method Description protected static voidSegmentChannelIntoObjects. checkUnsupported3D(Channel channel)Throws an exception if the channel has more than one z-slice, as 3D is unsupported by the implementation.protected static voidSegmentChannelIntoObjects. checkUnsupportedObjectMask(Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask)Throws an exception ifobjectis present, as it is unsupported by the implementation.protected static voidSegmentChannelIntoObjects. checkUnsupportedSeeds(Optional<org.anchoranalysis.image.voxel.object.ObjectCollection> seeds)Throws an exception ifseedsis present, as it is unsupported by the implementation.abstract org.anchoranalysis.image.voxel.object.ObjectCollectionSegmentChannelIntoObjects. segment(Channel channel, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask, Optional<org.anchoranalysis.image.voxel.object.ObjectCollection> seeds)Segments a channel to produce an object-collection.org.anchoranalysis.image.voxel.object.ObjectCollectionSegmentChannelIntoObjectsUnary. segment(Channel channel, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> objectMask, Optional<org.anchoranalysis.image.voxel.object.ObjectCollection> seeds)protected abstract org.anchoranalysis.image.voxel.object.ObjectCollectionSegmentChannelIntoObjectsUnary. segment(Channel channel, Optional<org.anchoranalysis.image.voxel.object.ObjectMask> object, Optional<org.anchoranalysis.image.voxel.object.ObjectCollection> seeds, SegmentChannelIntoObjects upstreamSegmenter)Creates anObjectCollectiongiven the segmentation-results provided by the delegate.