Uses of Class
org.anchoranalysis.image.io.stack.output.generator.RasterGenerator
| Package | Description |
|---|---|
| org.anchoranalysis.image.io.channel.output |
Non-bean classes for writing a
Channel to the
filesystem. |
| org.anchoranalysis.image.io.object.output.grayscale |
Writing an
ObjectCollection to the filesystem as a
single-channeled stack. |
| org.anchoranalysis.image.io.object.output.mask |
Writing an
ObjectCollection to the filesystem as
multiple binary singled-channeled images. |
| org.anchoranalysis.image.io.object.output.rgb |
Writing an
ObjectCollection to the filesystem as
RGB raster-images. |
| org.anchoranalysis.image.io.stack.output.box |
Base classes for generators that ultimately write only a bounding-box portion of a
Stack to the filesystem. |
| org.anchoranalysis.image.io.stack.output.generator |
Base classes for generators that ultimately write a
Stack to the filesystem. |
-
Uses of RasterGenerator in org.anchoranalysis.image.io.channel.output
Subclasses of RasterGenerator in org.anchoranalysis.image.io.channel.output Modifier and Type Class Description classChannelGeneratorWrites a single channel to a file. -
Uses of RasterGenerator in org.anchoranalysis.image.io.object.output.grayscale
Subclasses of RasterGenerator in org.anchoranalysis.image.io.object.output.grayscale Modifier and Type Class Description classObjectsAsGrayscaleGeneratorBase class for generators that accept a set of objects as input.classObjectsAsUniqueValueGeneratorWrites objects as an image with an incrementing unique integer id value for each object.classObjectsMergedAsMaskGeneratorWrites objects merged together as a mask. -
Uses of RasterGenerator in org.anchoranalysis.image.io.object.output.mask
Subclasses of RasterGenerator in org.anchoranalysis.image.io.object.output.mask Modifier and Type Class Description classObjectAsMaskGeneratorWrites an object-mask as a mask (i.e. -
Uses of RasterGenerator in org.anchoranalysis.image.io.object.output.rgb
Subclasses of RasterGenerator in org.anchoranalysis.image.io.object.output.rgb Modifier and Type Class Description classDrawCroppedObjectsGeneratorSimilar toDrawObjectsGenerator, but with the background stack cropped to focus only on the region containing objects.classDrawObjectsGeneratorGenerates stacks of RGB images using aDrawObjectto draw objects on a background.classObjectsAsRGBGeneratorA base class for generators that draw anObjectCollectionupon aRGBStack. -
Uses of RasterGenerator in org.anchoranalysis.image.io.stack.output.box
Subclasses of RasterGenerator in org.anchoranalysis.image.io.stack.output.box Modifier and Type Class Description classDrawObjectOnStackGeneratorCreates images of object(s) drawn on a background only in a local region around their bounding box.classExtractBoundingBoxAreaFromStackGeneratorAn iterable-generator that outputs the portion of a stack corresponding to a bounding-box -
Uses of RasterGenerator in org.anchoranalysis.image.io.stack.output.generator
Subclasses of RasterGenerator in org.anchoranalysis.image.io.stack.output.generator Modifier and Type Class Description classDisplayStackGeneratorWrites a display-stack to the filesystem.classFlattenStackGeneratorLike aStackGeneratorbut first applies a maximum-intensity-projection.classRasterGeneratorBridge<T,V>Allows us to call anRasterGenerator<S>as if it was anRasterGenerator<T>using an function to connect the two.classRasterGeneratorDelegateToDisplayStack<T>Delegates aRasterGeneratorSelectFormatto aSingleFileTypeGenerator<T, DisplayStack>.classRasterGeneratorDelegateToRaster<S,T>Uses a delegate raster-generator and optionally applies a conversions before callingRasterGeneratorDelegateToRaster.transform(T).classRasterGeneratorSelectFormat<T>ARasterGeneratorthat selects an appropriate output-format based upon each generated image.classStackGeneratorWrites a stack to the filesystem.Methods in org.anchoranalysis.image.io.stack.output.generator that return RasterGenerator Modifier and Type Method Description protected RasterGenerator<S>RasterGeneratorDelegateToRaster. getDelegate()The delegate.Constructors in org.anchoranalysis.image.io.stack.output.generator with parameters of type RasterGenerator Constructor Description RasterGeneratorBridge(RasterGenerator<V> delegate, CheckedFunction<T,V,? extends Throwable> elementBridge)Creates with a delegate and a function to bridge the exposed element-type to the delegate element-type.RasterGeneratorDelegateToRaster(RasterGenerator<S> delegate)