Class ImageProcessorFactory

  • All Implemented Interfaces:
    ImageFactory<ij.process.ImageProcessor>

    public class ImageProcessorFactory
    extends Object
    implements ImageFactory<ij.process.ImageProcessor>

    Implementation of a ImageFactory for ImageJ's ImageProcessor

    Note that ImageJ saves pixels as integers using bit shifting. So if you need more than 3 channels take ImageStackFactory.

    Since:
    1.1
    Author:
    Christoph Praschl
    • Constructor Detail

      • ImageProcessorFactory

        public ImageProcessorFactory()
        Do not instantiate this class directly. This constructor is only need, to work with ServiceLoader. Get yourself an instance using ImageFactoryFactory.getImageFactory(Class) method. Using class = ImageProcessor.class for this specific factory.
    • Method Detail

      • getImage

        public ImageWrapper<ij.process.ImageProcessor> getImage​(int height,
                                                                int width,
                                                                ChannelType channel)
        Description copied from interface: ImageFactory
        Creates a image with the given height, width and channeltype
        Specified by:
        getImage in interface ImageFactory<ij.process.ImageProcessor>
        Parameters:
        height - height of the image
        width - width of the image
        channel - channeltype of the image
        Returns:
        image with the given properties
      • getImage

        public ImageWrapper<ij.process.ImageProcessor> getImage​(int height,
                                                                int width,
                                                                ChannelType channel,
                                                                ij.process.ImageProcessor image)
        Description copied from interface: ImageFactory
        Creates a image with the given height, width and channeltype
        Specified by:
        getImage in interface ImageFactory<ij.process.ImageProcessor>
        Parameters:
        height - height of the image
        width - width of the image
        channel - channel type of the image
        image - the data which should be encapsulated in the image
        Returns:
        image with the given properties
      • getImage

        public ImageWrapper<ij.process.ImageProcessor> getImage​(ij.process.ImageProcessor image)
        Description copied from interface: ImageFactory
        Creates a image with the given image
        Specified by:
        getImage in interface ImageFactory<ij.process.ImageProcessor>
        Parameters:
        image - the data which should be encapsulated in the image
        Returns:
        image with the given properties
      • getSupportedType

        public Class<ij.process.ImageProcessor> getSupportedType()
        Specified by:
        getSupportedType in interface ImageFactory<ij.process.ImageProcessor>
        Returns:
        the supported image type.