| Package | Description |
|---|---|
| boofcv.abst.filter.derivative | |
| boofcv.alg.transform.pyramid | |
| boofcv.factory.filter.derivative |
| Modifier and Type | Class and Description |
|---|---|
class |
ImageGradient_Gaussian<I extends ImageSingleBand,D extends ImageSingleBand>
Finds the derivative using a Gaussian kernel.
|
class |
ImageGradient_Reflection<Input extends ImageSingleBand,Output extends ImageSingleBand>
Generic implementation which uses reflections to call derivative functions
|
| Modifier and Type | Method and Description |
|---|---|
static <I extends ImageSingleBand,O extends ImageSingleBand> |
PyramidOps.gradient(ImagePyramid<I> input,
ImageGradient<I,O> gradient,
O[] derivX,
O[] derivY)
Computes the gradient for each image the pyramid.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageGradient<ImageFloat32,ImageFloat32> |
FactoryDerivative.gaussian_F32(double sigma,
int radius) |
static ImageGradient<ImageUInt8,ImageSInt16> |
FactoryDerivative.gaussian_I8(double sigma,
int radius) |
static <I extends ImageSingleBand,D extends ImageSingleBand> |
FactoryDerivative.gaussian(double sigma,
int radius,
Class<I> inputType,
Class<D> derivType) |
static <I extends ImageSingleBand,D extends ImageSingleBand> |
FactoryDerivative.prewitt(Class<I> inputType,
Class<D> derivType) |
static ImageGradient<ImageFloat32,ImageFloat32> |
FactoryDerivative.sobel_F32() |
static ImageGradient<ImageUInt8,ImageSInt16> |
FactoryDerivative.sobel_I8() |
static <I extends ImageSingleBand,D extends ImageSingleBand> |
FactoryDerivative.sobel(Class<I> inputType,
Class<D> derivType) |
static ImageGradient<ImageFloat32,ImageFloat32> |
FactoryDerivative.three_F32() |
static ImageGradient<ImageUInt8,ImageSInt16> |
FactoryDerivative.three_I8() |
static <I extends ImageSingleBand,D extends ImageSingleBand> |
FactoryDerivative.three(Class<I> inputType,
Class<D> derivType) |
Copyright © 2013. All Rights Reserved.