Package boofcv.abst.feature.detdesc
Interface DetectDescribePoint<T extends ImageBase<T>,Desc extends TupleDesc<Desc>>
- All Superinterfaces:
DescriptorInfo<Desc>
,FeatureSets
,FoundPointSO
,InterestPointDetector<T>
- All Known Implementing Classes:
CompleteSift_DetectDescribe
,DetectDescribeConvertTuple
,DetectDescribeFusion
,DetectDescribePointAbstract
,Surf_DetectDescribe
,Surf_DetectDescribe_MT
,SurfPlanar_to_DetectDescribe
public interface DetectDescribePoint<T extends ImageBase<T>,Desc extends TupleDesc<Desc>>
extends InterestPointDetector<T>, DescriptorInfo<Desc>
Interface for detecting and describing point features. By detecting and describing at the same time some algorithms
can be significantly speed up by avoiding recomputing preprocessing steps twice.
-
Method Summary
Modifier and TypeMethodDescriptiongetDescription
(int index) Returns the feature descriptor at the specified index.Methods inherited from interface boofcv.abst.feature.describe.DescriptorInfo
createDescription, getDescriptionType
Methods inherited from interface boofcv.abst.feature.detect.interest.FeatureSets
getNumberOfSets, getSet
Methods inherited from interface boofcv.abst.feature.detect.interest.FoundPointSO
getLocation, getNumberOfFeatures, getOrientation, getRadius
Methods inherited from interface boofcv.abst.feature.detect.interest.InterestPointDetector
detect, getInputType, hasOrientation, hasScale
-
Method Details
-
getDescription
Returns the feature descriptor at the specified index.
WARNING: The returned data structure is recycled each time
InterestPointDetector.detect(boofcv.struct.image.ImageBase)
is called. Create a copy if this is a problem.- Parameters:
index
- Which feature- Returns:
- Feature descriptor
-