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> |
sift(ConfigSiftDescribe config,
java.lang.Class<T> imageType)
Creates a dense SIFT descriptor.
|
static <T extends boofcv.struct.image.ImageSingleBand,II extends boofcv.struct.image.ImageSingleBand> |
surfFast(ConfigSurfDescribe.Speed configSurf,
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,
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,BrightFeature> surfFast(ConfigSurfDescribe.Speed configSurf, 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.imageType - Type of input image.DescribePointSurfpublic static <T extends boofcv.struct.image.ImageSingleBand,II extends boofcv.struct.image.ImageSingleBand> DescribeImageDense<T,BrightFeature> surfStable(ConfigSurfDescribe.Stability configSurf, 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.imageType - Type of input image.DescribePointSurfpublic static <T extends boofcv.struct.image.ImageSingleBand> DescribeImageDense<T,BrightFeature> sift(ConfigSiftDescribe config, java.lang.Class<T> imageType)
config - Configuration for SIFT descriptor. All parameters are used but sigmaToPixels. null for defaults.imageType - Type of input image