public class FactoryDescribeImageDense
extends java.lang.Object
DescribeImageDense.| Constructor and Description |
|---|
FactoryDescribeImageDense() |
| Modifier and Type | Method and Description |
|---|---|
static <T extends boofcv.struct.image.ImageSingleBand,II extends boofcv.struct.image.ImageSingleBand> |
surfFast(ConfigSurfDescribe.Speed configSurf,
ConfigDenseSample configSample,
java.lang.Class<T> imageType)
Creates a SURF descriptor.
|
static <T extends boofcv.struct.image.ImageSingleBand,II extends boofcv.struct.image.ImageSingleBand> |
surfStable(ConfigSurfDescribe.Stability configSurf,
ConfigDenseSample configSample,
java.lang.Class<T> imageType)
Creates a SURF descriptor.
|
public static <T extends boofcv.struct.image.ImageSingleBand,II extends boofcv.struct.image.ImageSingleBand> DescribeImageDense<T,SurfFeature> surfFast(ConfigSurfDescribe.Speed configSurf, ConfigDenseSample configSample, java.lang.Class<T> imageType)
Creates a SURF descriptor. SURF descriptors are invariant to illumination, orientation, and scale. BoofCV provides two variants. This SURF variant created here is designed for speed and sacrifices some stability. Different descriptors are produced for gray-scale and color images.
configSurf - SURF configuration. Pass in null for default options.configSample - Describes how it should be sampled across the imageimageType - Type of input image.DescribePointSurfpublic static <T extends boofcv.struct.image.ImageSingleBand,II extends boofcv.struct.image.ImageSingleBand> DescribeImageDense<T,SurfFeature> surfStable(ConfigSurfDescribe.Stability configSurf, ConfigDenseSample configSample, java.lang.Class<T> imageType)
Creates a SURF descriptor. SURF descriptors are invariant to illumination, orientation, and scale. BoofCV provides two variants. The SURF variant created here is designed for stability. Different descriptors are produced for gray-scale and color images.
configSurf - SURF configuration. Pass in null for default options.configSample - Describes how it should be sampled across the imageimageType - Type of input image.DescribePointSurf