public class ImageGradient_Reflection<Input extends ImageSingleBand,Output extends ImageSingleBand> extends Object implements ImageGradient<Input,Output>
| Constructor and Description |
|---|
ImageGradient_Reflection(Method m) |
| Modifier and Type | Method and Description |
|---|---|
int |
getBorder()
How many pixels wide is the region that is not processed along the outside
border of the image.
|
BorderType |
getBorderType()
Returns how the image borders are handled.
|
Class<Output> |
getDerivType() |
void |
process(Input inputImage,
Output derivX,
Output derivY)
Computes the image gradient from the input image and stores the results into
'derivX' and 'derivY'
|
void |
setBorderType(BorderType type)
Overrides the default border behavior.
|
public ImageGradient_Reflection(Method m)
public void process(Input inputImage, Output derivX, Output derivY)
ImageGradientprocess in interface ImageGradient<Input extends ImageSingleBand,Output extends ImageSingleBand>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.public void setBorderType(BorderType type)
ImageDerivativeFactoryDerivative for a discussion
of the pros and cons of each border type.setBorderType in interface ImageDerivative<Input extends ImageSingleBand,Output extends ImageSingleBand>type - How image borders are handled.public BorderType getBorderType()
ImageDerivativegetBorderType in interface ImageDerivative<Input extends ImageSingleBand,Output extends ImageSingleBand>public int getBorder()
ImageDerivativegetBorder in interface ImageDerivative<Input extends ImageSingleBand,Output extends ImageSingleBand>public Class<Output> getDerivType()
getDerivType in interface ImageDerivative<Input extends ImageSingleBand,Output extends ImageSingleBand>Copyright © 2013. All Rights Reserved.