plot(points,ax)
plots points in the specified axis.
plot(points,ax,Name,Value)
sets properties using one or more name-value pairs. Enclose each property name in
quotes. For example, plot('ShowOrientation',true)
Points, specified as a points object. The object contains information
about the feature points detected in the 2-D grayscale input image.
ax — Axes handle handle
Handle to use for display. You can set the handle using gca.
Name-Value Pair Arguments
Example: 'ShowOrientation','true'
'ShowScale' — Display scaled circle true (default) | false
Display scaled circle, specified as true or
false. When you set this value to
true, the object draws a circle proportional to
the scale of the detected feature, with the feature point located at its
center. When you set this value to false, the object
turns the display of the circle off.
The algorithm represents the scale of the feature with a circle of
6*Scale radius.
The algorithm uses this equivalent size of circular area to compute the
orientation of the feature.
'ShowOrientation' — Display orientation line true (default) | false
Display feature point orientation, specified as
true or false. When you set
this value to true, the object draws a line
corresponding to the point's orientation. The object draws the line from
the feature point location to the edge of the circle, indicating the
scale.