public class FactoryInterestPointAlgs
extends java.lang.Object
| Constructor and Description |
|---|
FactoryInterestPointAlgs() |
| Modifier and Type | Method and Description |
|---|---|
static <II extends boofcv.struct.image.ImageGray> |
fastHessian(ConfigFastHessian config)
Creates a Fast Hessian blob detector used by SURF.
|
static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> |
harrisLaplace(int extractRadius,
float detectThreshold,
int maxFeatures,
java.lang.Class<T> imageType,
java.lang.Class<D> derivType)
Creates a
FeatureLaplacePyramid which is uses the Harris corner detector. |
static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> |
harrisPyramid(int extractRadius,
float detectThreshold,
int maxFeatures,
java.lang.Class<T> imageType,
java.lang.Class<D> derivType)
Creates a
FeaturePyramid which is uses the Harris corner detector. |
static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> |
hessianLaplace(int extractRadius,
float detectThreshold,
int maxFeatures,
java.lang.Class<T> imageType,
java.lang.Class<D> derivType)
Creates a
FeatureLaplacePyramid which is uses a hessian blob detector. |
static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> |
hessianPyramid(int extractRadius,
float detectThreshold,
int maxFeatures,
java.lang.Class<T> imageType,
java.lang.Class<D> derivType)
Creates a
FeaturePyramid which is uses a hessian blob detector. |
static SiftDetector |
sift(ConfigSiftScaleSpace configSS,
ConfigSiftDetector configDetector)
Creates a SIFT detector
|
public static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> FeaturePyramid<T,D> hessianPyramid(int extractRadius, float detectThreshold, int maxFeatures, java.lang.Class<T> imageType, java.lang.Class<D> derivType)
FeaturePyramid which is uses a hessian blob detector.extractRadius - Size of the feature used to detect the corners.detectThreshold - Minimum corner intensity requiredmaxFeatures - Max number of features that can be found.imageType - Type of input image.derivType - Image derivative type.public static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> FeaturePyramid<T,D> harrisPyramid(int extractRadius, float detectThreshold, int maxFeatures, java.lang.Class<T> imageType, java.lang.Class<D> derivType)
FeaturePyramid which is uses the Harris corner detector.extractRadius - Size of the feature used to detect the corners.detectThreshold - Minimum corner intensity requiredmaxFeatures - Max number of features that can be found.imageType - Type of input image.derivType - Image derivative type.public static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> FeatureLaplacePyramid<T,D> hessianLaplace(int extractRadius, float detectThreshold, int maxFeatures, java.lang.Class<T> imageType, java.lang.Class<D> derivType)
FeatureLaplacePyramid which is uses a hessian blob detector.extractRadius - Size of the feature used to detect the corners.detectThreshold - Minimum corner intensity requiredmaxFeatures - Max number of features that can be found.imageType - Type of input image.derivType - Image derivative type.public static <T extends boofcv.struct.image.ImageGray,D extends boofcv.struct.image.ImageGray> FeatureLaplacePyramid<T,D> harrisLaplace(int extractRadius, float detectThreshold, int maxFeatures, java.lang.Class<T> imageType, java.lang.Class<D> derivType)
FeatureLaplacePyramid which is uses the Harris corner detector.extractRadius - Size of the feature used to detect the corners.detectThreshold - Minimum corner intensity requiredmaxFeatures - Max number of features that can be found.imageType - Type of input image.derivType - Image derivative type.public static <II extends boofcv.struct.image.ImageGray> FastHessianFeatureDetector<II> fastHessian(ConfigFastHessian config)
II - Integral Imageconfig - Configuration for detector. Pass in null for default options.public static SiftDetector sift(ConfigSiftScaleSpace configSS, ConfigSiftDetector configDetector)