Class Image8ByteFactory

  • All Implemented Interfaces:
    ImageFactory<double[][][]>

    public class Image8ByteFactory
    extends Object
    implements ImageFactory<double[][][]>

    Implements the ImageFactory interface for 8 byte images

    Since:
    1.0
    Author:
    Christoph Praschl
    • Constructor Detail

      • Image8ByteFactory

        public Image8ByteFactory()
        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 = double[][][].class for this specific factory.
    • Method Detail

      • getImage

        public ImageWrapper<double[][][]> 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<double[][][]>
        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<double[][][]> getImage​(int height,
                                                   int width,
                                                   ChannelType channel,
                                                   double[][][] image)
        Description copied from interface: ImageFactory
        Creates a image with the given height, width and channeltype
        Specified by:
        getImage in interface ImageFactory<double[][][]>
        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<double[][][]> getImage​(double[][][] image)
        Description copied from interface: ImageFactory
        Creates a image with the given image
        Specified by:
        getImage in interface ImageFactory<double[][][]>
        Parameters:
        image - the data which should be encapsulated in the image
        Returns:
        image with the given properties
      • getSupportedType

        public Class<double[][][]> getSupportedType()
        Specified by:
        getSupportedType in interface ImageFactory<double[][][]>
        Returns:
        the supported image type.