Select points with strongest metrics
strongestPoints = selectStrongest(points,N)
example
strongestPoints = selectStrongest(points,N) returns N number of points that have the strongest metrics.
points
N
collapse all
Create a KAZEPoints object holding 50 points.
KAZEPoints
points = KAZEPoints(ones(50,2),'Metric',1:50);
Keep the two strongest features.
points = selectStrongest(points,2)
points = 2x1 KAZEPoints array with properties: Location: [2x2 single] Metric: [2x1 single] Count: 2 Scale: [2x1 single] Orientation: [2x1 single]
CornerPoints
BRISKPoints
SURFPoints
ORBPoints
Points, specified as a points object. The object contains information about the feature points detected in the 2-D grayscale input image.
Number of strongest points to select, specified as an integer.
BRISKPoints | KAZEPoints | MSERRegions | ORBPoints | SURFPoints | binaryFeatures | cornerPoints
MSERRegions
binaryFeatures
cornerPoints
You have a modified version of this example. Do you want to open this example with your edits?