public class FactoryInterestPoint extends Object
InterestPointDetector
interface
NOTE: Higher level interface than GeneralFeatureDetector. This will automatically
compute image derivatives across scale space as needed, unlike GeneralFeatureDetector which
just detects features at a particular scale and requires image derivatives be passed in.
FactoryFeatureExtractor,
FactoryInterestPoint| Constructor and Description |
|---|
FactoryInterestPoint() |
public static <T extends ImageSingleBand,D extends ImageSingleBand> InterestPointDetector<T> wrapPoint(GeneralFeatureDetector<T,D> feature, double scale, Class<T> inputType, Class<D> derivType)
GeneralFeatureDetector inside an InterestPointDetector.feature - Feature detector.scale - Scale of detected featuresinputType - Image type of input image.inputType - Image type for gradient.public static <T extends ImageSingleBand,D extends ImageSingleBand> InterestPointDetector<T> wrapDetector(FeatureLaplacePyramid<T,D> feature, double[] scales, boolean pyramid, Class<T> inputType)
FeatureLaplacePyramid inside an InterestPointDetector.feature - Feature detector.scales - Scales at which features are detected at.pyramid - Should it be constructed as a pyramid or scale-spaceinputType - Image type of input image.public static <T extends ImageSingleBand,D extends ImageSingleBand> InterestPointDetector<T> wrapDetector(FeaturePyramid<T,D> feature, double[] scales, boolean pyramid, Class<T> inputType)
FeaturePyramid inside an InterestPointDetector.feature - Feature detector.scales - Scales at which features are detected at.pyramid - Should it be constructed as a pyramid or scale-spaceinputType - Image type of input image.public static <T extends ImageSingleBand> InterestPointDetector<T> fastHessian(ConfigFastHessian config)
FastHessianFeatureDetector detector which is wrapped inside
an InterestPointDetectorconfig - Configuration for detector. Pass in null for default options.FastHessianFeatureDetectorpublic static InterestPointDetector<ImageFloat32> siftDetector(ConfigSiftScaleSpace configSS, ConfigSiftDetector configDetector)
configSS - Configuration for scale-space. Pass in null for default options.configDetector - Configuration for detector. Pass in null for default options.SiftDetector,
SiftImageScaleSpaceCopyright © 2013. All Rights Reserved.