public interface ImageGradient<Input extends ImageBase,Output extends ImageBase> extends ImageDerivative<Input,Output>
| Modifier and Type | Method and Description |
|---|---|
void |
process(Input inputImage,
Output derivX,
Output derivY)
Computes the image gradient from the input image and stores the results into
'derivX' and 'derivY'
|
getBorder, getBorderType, getDerivativeType, setBorderTypevoid process(Input inputImage, Output derivX, Output derivY)
inputImage - Original input image. Not modified.derivX - First order image derivative along the x-axis. Modified.derivY - First order image derivative along the y-axis. Modified.