public interface DdaFeatureManager<I extends boofcv.struct.image.ImageSingleBand,Desc extends boofcv.struct.feature.TupleDesc>
extends boofcv.abst.feature.describe.DescriptorInfo<Desc>
DetectDescribeAssociate a specific implementation for detecting features and
managing descriptions.| Modifier and Type | Method and Description |
|---|---|
void |
detectFeatures(I input,
org.ddogleg.struct.FastQueue<georegression.struct.point.Point2D_F64> locDst,
org.ddogleg.struct.FastQueue<Desc> featDst)
Detect features in the input image and pass the results into the two lists.
|
void detectFeatures(I input, org.ddogleg.struct.FastQueue<georegression.struct.point.Point2D_F64> locDst, org.ddogleg.struct.FastQueue<Desc> featDst)
input - Input image.locDst - Location of detected feature. Add references to list.featDst - Description of each detected feature. Add references to list.