| Interface | Description |
|---|---|
| ImageTransform |
Transforms an image in some way, either deterministically or randomly.
|
| Class | Description |
|---|---|
| BaseImageTransform<F> |
Implements the ImageTransform interface by providing its subclasses
with a random object to use in the case of random transformations.
|
| BoxImageTransform |
Boxes images to a given width and height without changing their aspect ratios,
or the size of the objects, by either padding or cropping them from the center.
|
| ColorConversionTransform |
Color conversion transform using CVT (cvtcolor):
CVT Color.
|
| CropImageTransform |
Crops images deterministically or randomly.
|
| EqualizeHistTransform |
"Histogram Equalization equalizes the intensity distribution of an image or flattens the intensity distribution curve.
|
| FilterImageTransform |
Filters images using FFmpeg (libavfilter):
FFmpeg Filters Documentation.
|
| FlipImageTransform |
Flips images deterministically or randomly.
|
| ImageTransformProcess |
Created by kepricon on 17.
|
| ImageTransformProcess.Builder |
Builder class for constructing a ImageTransformProcess
|
| LargestBlobCropTransform |
crop images based on it's largest blob.
|
| MultiImageTransform |
Transforms images deterministically or randomly with the help of an array of ImageTransform
|
| PipelineImageTransform |
Allows creation of image transform pipelines, either sequentially or randomly.
|
| PipelineImageTransform.Builder |
Optional builder helper for PipelineImageTransform
|
| RandomCropTransform |
Randomly crops an image to a desired output size.
|
| ResizeImageTransform |
ResizeImageTransform is suited to force the same image size for whole pipeline
and it doesn't use any random factor for width and height.
|
| RotateImageTransform |
Rotates and scales images deterministically or randomly.
|
| ScaleImageTransform |
ScaleImageTransform is aim to scale by a certain random factor,
not the final size of the image.
|
| ShowImageTransform |
Shows images on the screen, does not actually transform them.
|
| WarpImageTransform |
Warps the perspective of images deterministically or randomly.
|
Copyright © 2018. All rights reserved.