| Package | Description |
|---|---|
| org.datavec.image.loader | |
| org.datavec.image.recordreader | |
| org.datavec.image.transform |
| Modifier and Type | Field and Description |
|---|---|
protected ImageTransform |
BaseImageLoader.imageTransform |
| Constructor and Description |
|---|
CifarLoader(int height,
int width,
int channels,
ImageTransform imgTransform,
boolean train,
boolean useSpecialPreProcessCifar) |
CifarLoader(int height,
int width,
int channels,
ImageTransform imgTransform,
boolean train,
boolean useSpecialPreProcessCifar,
boolean shuffle) |
CifarLoader(int height,
int width,
int channels,
ImageTransform imgTransform,
boolean train,
boolean useSpecialPreProcessCifar,
File fullPath,
long seed,
boolean shuffle) |
LFWLoader(int[] imgDim,
ImageTransform imgTransform,
boolean useSubset) |
NativeImageLoader(int height,
int width,
int channels,
ImageTransform imageTransform)
Instantiate an image with the given
height and width
|
| Modifier and Type | Field and Description |
|---|---|
protected ImageTransform |
BaseImageRecordReader.imageTransform |
| Modifier and Type | Method and Description |
|---|---|
void |
BaseImageRecordReader.initialize(org.datavec.api.conf.Configuration conf,
org.datavec.api.split.InputSplit split,
ImageTransform imageTransform)
Called once at initialization.
|
void |
BaseImageRecordReader.initialize(org.datavec.api.split.InputSplit split,
ImageTransform imageTransform)
Called once at initialization.
|
| Constructor and Description |
|---|
BaseImageRecordReader(int height,
int width,
int channels,
org.datavec.api.io.labels.PathLabelGenerator labelGenerator,
ImageTransform imageTransform) |
ImageRecordReader(int height,
int width,
int channels,
ImageTransform imageTransform)
Loads images with given height, width, and channels, appending no labels.
|
ImageRecordReader(int height,
int width,
int channels,
org.datavec.api.io.labels.PathLabelGenerator labelGenerator,
ImageTransform imageTransform)
Loads images with given height, width, and channels, appending labels returned by the generator.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BaseImageTransform<F>
Implements the ImageTransform interface by providing its subclasses
with a random object to use in the case of random transformations.
|
class |
ColorConversionTransform
Color conversion transform using CVT (cvtcolor):
CVT Color.
|
class |
CropImageTransform
Crops images deterministically or randomly.
|
class |
EqualizeHistTransform
"Histogram Equalization equalizes the intensity distribution of an image or flattens the intensity distribution curve.
|
class |
FilterImageTransform
Filters images using FFmpeg (libavfilter):
FFmpeg Filters Documentation.
|
class |
FlipImageTransform
Flips images deterministically or randomly.
|
class |
MultiImageTransform
Transforms images deterministically or randomly with the help of an array of ImageTransform.
|
class |
ResizeImageTransform
Resize image transform is suited to force the same image size for whole pipeline.
|
class |
ScaleImageTransform
Scales images deterministically or randomly.
|
class |
ShowImageTransform
Shows images on the screen, does not actually transform them.
|
class |
WarpImageTransform
Warps the perspective of images deterministically or randomly.
|
| Constructor and Description |
|---|
MultiImageTransform(ImageTransform... transforms)
Calls
this(null, transforms). |
MultiImageTransform(Random random,
ImageTransform... transforms)
Constructs an instance of the ImageTransform.
|
Copyright © 2016. All rights reserved.