Object for storing KAZE interest points
This object provides the ability to pass data between the detectKAZEPoints
and
extractFeatures functions. You can also use this object to manipulate and plot the data
returned by these functions.Use the object to fill points interactively, where you might
want to mix a non-KAZE interest oint detector with a KAZE descriptor.
constructs a points
= KAZEPoints(location
)KAZEPoints
object from an
M-by-2 array [x
y] of location coordinates.
The scalar KAZEPoints object contains many points. Therefore numel
(KAZEPoints)
always returns
1
. This value can be different than the result of
length(KAZEPoints)
, which returns the true number of
points contained in the object.
isempty | Determine if points object is empty |
length | Number of stored points |
plot | Plot points |
selectStrongest | Select points with strongest metrics |
size | Return the size of a points object |
selectUniform | Select uniformly distributed subset of feature points |
BRISKPoints
| cornerPoints
| detectBRISKFeatures
| detectFASTFeatures
| detectHarrisFeatures
| detectKAZEFeatures
| detectMinEigenFeatures
| detectMSERFeatures
| detectSURFFeatures
| extractFeatures
| matchFeatures
| MSERRegions
| SURFPoints