Package boofcv.abst.filter.derivative
Class ImageHessianDirect_SB<Input extends ImageGray<Input>,Output extends ImageGray<Output>>
java.lang.Object
boofcv.abst.filter.derivative.ImageHessianDirect_SB<Input,Output>
- All Implemented Interfaces:
ImageDerivative<Input,
,Output> ImageHessianDirect<Input,
Output>
- Direct Known Subclasses:
ImageHessianDirect_SB.Sobel
,ImageHessianDirect_SB.Three
public abstract class ImageHessianDirect_SB<Input extends ImageGray<Input>,Output extends ImageGray<Output>>
extends Object
implements ImageHessianDirect<Input,Output>
Generic implementation which uses reflections to call hessian functions
-
Nested Class Summary
-
Constructor Summary
ModifierConstructorDescriptionprotected
ImageHessianDirect_SB
(Class<Input> inputType, Class<Output> derivType) -
Method Summary
Modifier and TypeMethodDescriptionint
How many pixels wide is the region that is not processed along the outside border of the image.Returns how the image borders are handled.Image type for derivative outputvoid
setBorderType
(BorderType type) Overrides usingBorderType.EXTENDED
along the image border.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.abst.filter.derivative.ImageHessianDirect
process
-
Constructor Details
-
ImageHessianDirect_SB
-
-
Method Details
-
setBorderType
Description copied from interface:ImageDerivative
Overrides usingBorderType.EXTENDED
along the image border. Don't change this behavior unless you know what you're doing.- Specified by:
setBorderType
in interfaceImageDerivative<Input extends ImageGray<Input>,
Output extends ImageGray<Output>> - Parameters:
type
- Specify image border behavior
-
getBorderType
Description copied from interface:ImageDerivative
Returns how the image borders are handled.- Specified by:
getBorderType
in interfaceImageDerivative<Input extends ImageGray<Input>,
Output extends ImageGray<Output>> - Returns:
- Image border type.
-
getBorder
public int getBorder()Description copied from interface:ImageDerivative
How many pixels wide is the region that is not processed along the outside border of the image. -
getInputType
-
getDerivativeType
Description copied from interface:ImageDerivative
Image type for derivative output- Specified by:
getDerivativeType
in interfaceImageDerivative<Input extends ImageGray<Input>,
Output extends ImageGray<Output>>
-