| Package | Description |
|---|---|
| boofcv.abst.feature.detdesc | |
| boofcv.abst.feature.detect.interest | |
| boofcv.factory.feature.detdesc | |
| boofcv.factory.feature.detect.interest |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DetectDescribePoint<T extends ImageBase,Desc extends TupleDesc>
Interface for detecting and describing point features.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DetectDescribeFusion<T extends ImageSingleBand,TD extends TupleDesc>
Wrapper class around independent feature detectors, region orientation, and descriptors, that allow
them to be used as a single integrated unit.
|
class |
SurfMultiSpectral_to_DetectDescribePoint<T extends ImageSingleBand,II extends ImageSingleBand>
Wrapper around
DetectDescribeSurfMultiSpectral for DetectDescribePoint. |
class |
WrapDetectDescribeSift
Wrapper around
DetectDescribeSift for DetectDescribePoint. |
class |
WrapDetectDescribeSurf<T extends ImageSingleBand,II extends ImageSingleBand>
Wrapper around SURF algorithms for
DetectDescribePoint. |
| Constructor and Description |
|---|
DetectDescribeFusion(InterestPointDetector<T> detector,
OrientationImage<T> orientation,
DescribeRegionPoint<T,TD> describe)
Configures the algorithm.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GeneralToInterestPoint<T extends ImageSingleBand,D extends ImageSingleBand>
Wrapper around
GeneralFeatureDetector to make it compatible with InterestPointDetector. |
class |
InterestPointDetectorOverride<T extends ImageSingleBand>
Provides the capability to tack on a different algorithm for the feature's location, scale, and orientation.
|
class |
WrapFHtoInterestPoint<T extends ImageSingleBand,II extends ImageSingleBand>
Wrapper around
FastHessianFeatureDetector for InterestPointDetector. |
class |
WrapFLPtoInterestPoint<T extends ImageSingleBand,D extends ImageSingleBand>
Wrapper around
FeatureLaplacePyramid for InterestPointDetector. |
class |
WrapFPtoInterestPoint<T extends ImageSingleBand,D extends ImageSingleBand>
Wrapper around
FeaturePyramid for InterestPointDetector. |
class |
WrapSiftDetector
Wrapper around
SiftDetector for InterestPointDetector. |
| Constructor and Description |
|---|
InterestPointDetectorOverride(InterestPointDetector<T> detector,
OrientationImage<T> orientation)
Specifies which algorithms are to be used.
|
| Modifier and Type | Method and Description |
|---|---|
static <T extends ImageSingleBand,D extends TupleDesc> |
FactoryDetectDescribe.fuseTogether(InterestPointDetector<T> detector,
OrientationImage<T> orientation,
DescribeRegionPoint<T,D> describe)
Given independent algorithms for feature detection, orientation, and describing, create a new
DetectDescribePoint. |
| Modifier and Type | Method and Description |
|---|---|
static <T extends ImageSingleBand> |
FactoryInterestPoint.fastHessian(ConfigFastHessian config)
Creates a
FastHessianFeatureDetector detector which is wrapped inside
an InterestPointDetector |
static InterestPointDetector<ImageFloat32> |
FactoryInterestPoint.siftDetector(ConfigSiftScaleSpace configSS,
ConfigSiftDetector configDetector)
Creates a SIFT feature detector.
|
static <T extends ImageSingleBand,D extends ImageSingleBand> |
FactoryInterestPoint.wrapDetector(FeatureLaplacePyramid<T,D> feature,
double[] scales,
boolean pyramid,
Class<T> inputType)
Wraps
FeatureLaplacePyramid inside an InterestPointDetector. |
static <T extends ImageSingleBand,D extends ImageSingleBand> |
FactoryInterestPoint.wrapDetector(FeaturePyramid<T,D> feature,
double[] scales,
boolean pyramid,
Class<T> inputType)
Wraps
FeaturePyramid inside an InterestPointDetector. |
static <T extends ImageSingleBand,D extends ImageSingleBand> |
FactoryInterestPoint.wrapPoint(GeneralFeatureDetector<T,D> feature,
double scale,
Class<T> inputType,
Class<D> derivType)
Wraps
GeneralFeatureDetector inside an InterestPointDetector. |
Copyright © 2013. All Rights Reserved.