Class Image8ByteFactory
- java.lang.Object
-
- science.aist.imaging.api.domain.wrapper.implementation.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 Summary
Constructors Constructor Description Image8ByteFactory()
Do not instantiate this class directly.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageWrapper<double[][][]>
getImage(double[][][] image)
Creates a image with the given imageImageWrapper<double[][][]>
getImage(int height, int width, ChannelType channel)
Creates a image with the given height, width and channeltypeImageWrapper<double[][][]>
getImage(int height, int width, ChannelType channel, double[][][] image)
Creates a image with the given height, width and channeltypeClass<double[][][]>
getSupportedType()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface science.aist.imaging.api.domain.wrapper.ImageFactory
getImage, getImage, getImage, getImage, getRandomImage
-
-
-
-
Constructor Detail
-
Image8ByteFactory
public Image8ByteFactory()
Do not instantiate this class directly. This constructor is only need, to work withServiceLoader
. Get yourself an instance usingImageFactoryFactory.getImageFactory(Class)
method. Usingclass = 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 interfaceImageFactory<double[][][]>
- Parameters:
height
- height of the imagewidth
- width of the imagechannel
- 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 interfaceImageFactory<double[][][]>
- Parameters:
height
- height of the imagewidth
- width of the imagechannel
- channel type of the imageimage
- 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 interfaceImageFactory<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 interfaceImageFactory<double[][][]>
- Returns:
- the supported image type.
-
-