Package boofcv.abst.feature.detdesc
Interface PointDescSet<TD extends TupleDesc<TD>>
public interface PointDescSet<TD extends TupleDesc<TD>>
A set of point image features which were detected and described using the same techniques.
-
Method Summary
Modifier and TypeMethodDescriptiongetDescription
(int index) Returns the description of the specified feature.getLocation
(int featureIndex) The center location of the feature inside the image.int
Returns the number of detected features
-
Method Details
-
getNumberOfFeatures
int getNumberOfFeatures()Returns the number of detected features- Returns:
- Number of interest points.
-
getLocation
The center location of the feature inside the image.
WARNING: The returned point is overwritten when a new image is processed.
- Parameters:
featureIndex
- The feature's index.- Returns:
- Location of the feature in image pixels.
-
getDescription
Returns the description of the specified feature.
WARNING: The returned description will be overwritten when a new image is processed. Create a copy if this is a problem.
- Parameters:
index
- Which feature- Returns:
- Feature descriptor
-