T
- The type of InterestPointData
public interface InterestPointDetector<T extends InterestPointData> extends Cloneable
Modifier and Type | Method and Description |
---|---|
void |
findInterestPoints(FImage image)
Find the interest points in an image
|
void |
findInterestPoints(FImage image,
Rectangle window)
Find the interest points in an image
|
List<T> |
getInterestPoints()
Get all the interest points found.
|
List<T> |
getInterestPoints(float threshold)
Retrieve the interest points found whose normalised score exceeds the
threshold
|
List<T> |
getInterestPoints(int npoints)
Retrieve the interest points found
|
void findInterestPoints(FImage image)
image
- void findInterestPoints(FImage image, Rectangle window)
image
- window
- List<T> getInterestPoints(int npoints)
npoints
- number of interest points to retrieve, < 0 returns allList<T> getInterestPoints(float threshold)
threshold
- normalised thresholdList<T> getInterestPoints()