| Interface | Description |
|---|---|
| ImageDerivative<T extends ImageBase,D extends ImageBase> |
Abstract interface for computing image derivatives.
|
| ImageGradient<Input extends ImageBase,Output extends ImageBase> |
A generic interface for computing first order image derivative along the x and y axes.
|
| ImageHessian<Output extends ImageGray> |
A generic interface for computing image's second derivatives given the image's gradient.
|
| ImageHessianDirect<Input extends ImageGray,Output extends ImageGray> |
A generic interface for computing image's second derivatives directly from the source image.
|
| Class | Description |
|---|---|
| AnyImageDerivative<I extends ImageGray,D extends ImageGray> |
A helpful class which allows a derivative of any order to be computed from an input image using a simple to use
interface.
|
| ImageGradient_Gaussian<I extends ImageGray,D extends ImageGray> |
Finds the derivative using a Gaussian kernel.
|
| ImageGradient_PL<T extends ImageGray,D extends ImageGray> |
Wrapper for applying image gradients to
Planar images. |
| ImageGradient_Reflection<Input extends ImageGray,Output extends ImageGray> |
Generic implementation which uses reflections to call derivative functions
|
| ImageHessian_Reflection<Output extends ImageGray> |
Generic implementation which uses reflections to call hessian functions
|
| ImageHessianDirect_Reflection<Input extends ImageGray,Output extends ImageGray> |
Generic implementation which uses reflections to call hessian functions
|