Package boofcv.abst.feature.detdesc
Interface DetectDescribeMulti<T extends ImageGray<T>,Desc extends TupleDesc<Desc>>
- All Superinterfaces:
DescriptorInfo<Desc>
- All Known Implementing Classes:
DetectDescribeSingleToMulti
@Deprecated
public interface DetectDescribeMulti<T extends ImageGray<T>,Desc extends TupleDesc<Desc>>
extends DescriptorInfo<Desc>
Deprecated.
Detects and describes different types of features inside an image. All detected features are described using the
same type of descriptor. Each type of detected feature is a member of a set and the found features
for a set are returned inside of a Type of feature descriptor
PointDescSet
. The order and number of sets remains constant.
-
Method Summary
Modifier and TypeMethodDescriptiongetFeatureSet
(int set) Deprecated.Returns the most recently detected features for a specific set.int
Deprecated.The number of feature sets.void
Deprecated.Detects features inside the image.Methods inherited from interface boofcv.abst.feature.describe.DescriptorInfo
createDescription, getDescriptionType
-
Method Details
-
process
Deprecated.Detects features inside the image.- Parameters:
image
- Image being processed.
-
getNumberOfSets
int getNumberOfSets()Deprecated.The number of feature sets.- Returns:
- number of feature sets
-
getFeatureSet
Deprecated.Returns the most recently detected features for a specific set. Each timeprocess(ImageGray)
is called the results are modified. WARNING: The returned data structure is recycled each timeprocess(ImageGray)
is called. Create a copy if this is a problem.- Parameters:
set
- Which set of detected features.- Returns:
- Results for a set.
-