java.lang.Object
boofcv.abst.feature.detect.intensity.BaseGeneralFeatureIntensity<I,D>
- All Implemented Interfaces:
GeneralFeatureIntensity<I,D>
- Direct Known Subclasses:
WrapperFastCornerIntensity,WrapperGradientCornerIntensity,WrapperHessianDerivBlobIntensity,WrapperHessianThreeImageDetIntensity,WrapperKitRosCornerIntensity,WrapperLaplacianBlobIntensity,WrapperMedianCornerIntensity
public abstract class BaseGeneralFeatureIntensity<I extends ImageGray<I>,D extends ImageGray<D>>
extends Object
implements GeneralFeatureIntensity<I,D>
Provides some basic functionality for implementing
GeneralFeatureIntensity.-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBaseGeneralFeatureIntensity(@Nullable Class<I> imageType, @Nullable Class<D> derivType) -
Method Summary
Modifier and TypeMethodDescriptionDerivative image type.Input image type.Returns an image containing an intensity mapping showing how corner like each pixel is.voidinit(int width, int height) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface boofcv.abst.feature.detect.intensity.GeneralFeatureIntensity
getCandidatesMax, getCandidatesMin, getIgnoreBorder, getRequiresGradient, getRequiresHessian, hasCandidates, localMaximums, localMinimums, process
-
Constructor Details
-
BaseGeneralFeatureIntensity
-
-
Method Details
-
init
public void init(int width, int height) -
getIntensity
Description copied from interface:GeneralFeatureIntensityReturns an image containing an intensity mapping showing how corner like each pixel is. Unprocessed image borders will have a value of zero.- Specified by:
getIntensityin interfaceGeneralFeatureIntensity<I extends ImageGray<I>,D extends ImageGray<D>> - Returns:
- Corner intensity image.
-
getImageType
Description copied from interface:GeneralFeatureIntensityInput image type. Null if the input image isn't required.- Specified by:
getImageTypein interfaceGeneralFeatureIntensity<I extends ImageGray<I>,D extends ImageGray<D>>
-
getDerivType
Description copied from interface:GeneralFeatureIntensityDerivative image type. Null if the derivative image isn't required.- Specified by:
getDerivTypein interfaceGeneralFeatureIntensity<I extends ImageGray<I>,D extends ImageGray<D>>
-