| Package | Description |
|---|---|
| boofcv.alg.distort | |
| boofcv.alg.interpolate | |
| boofcv.factory.interpolate |
| Modifier and Type | Method and Description |
|---|---|
static <T extends ImageBase> |
DistortImageOps.affine(T input,
T output,
TypeInterpolate interpType,
double a11,
double a12,
double a21,
double a22,
double dx,
double dy)
Applies an affine transformation from the input image to the output image.
|
static <T extends ImageSingleBand> |
DistortImageOps.createImageDistort(PointTransform_F32 transform,
TypeInterpolate interpType,
Class<T> imageType)
Easy way to create
ImageDistort given PixelTransform_F32. |
static <T extends ImageSingleBand,M extends MultiSpectral<T>> |
DistortImageOps.distortMS(M input,
M output,
PixelTransform_F32 transform,
boolean skipOutsidePixels,
TypeInterpolate interpType)
Applies a pixel transform to a
MultiSpectral image. |
static <T extends ImageSingleBand> |
DistortImageOps.distortSingle(T input,
T output,
PixelTransform_F32 transform,
boolean skipOutsidePixels,
TypeInterpolate interpType)
Applies a pixel transform to a single band image.
|
static <T extends ImageBase> |
DistortImageOps.rotate(T input,
T output,
TypeInterpolate interpType,
float angleInputToOutput)
Rotates the image using the specified interpolation type.
|
static <T extends ImageBase> |
DistortImageOps.scale(T input,
T output,
TypeInterpolate interpType)
Rescales the input image and writes the results into the output image.
|
| Modifier and Type | Method and Description |
|---|---|
static TypeInterpolate |
TypeInterpolate.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeInterpolate[] |
TypeInterpolate.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static <T extends ImageMultiBand> |
FactoryInterpolation.createPixelMB(double min,
double max,
TypeInterpolate type,
ImageType<T> imageType) |
static <T extends ImageSingleBand> |
FactoryInterpolation.createPixelS(double min,
double max,
TypeInterpolate type,
Class<T> imageType) |
static <T extends ImageSingleBand> |
FactoryInterpolation.createPixelS(double min,
double max,
TypeInterpolate type,
ImageDataType dataType) |
Copyright © 2013. All Rights Reserved.