plot
Plot points
Description
Examples
Plot KAZE Points
Read an image.
I = imread("cameraman.tif");
Detect KAZE points from the image.
points = detectKAZEFeatures(I);
Extract KAZE features from the detected points.
[features,valid_points] = extractFeatures(I,points);
Plot the 10 strongest points and show their orientations.
imshow(I) hold on strongestPoints = selectStrongest(valid_points,10); plot(strongestPoints,showOrientation=true) hold off
Plot SURF features
I = imread("cameraman.tif");
points = detectSURFFeatures(I);
[features, valid_points] = extractFeatures(I,points);
Visualize 10 strongest SURF features, including their scales and orientation which were determined during the descriptor extraction process.
imshow(I); hold on; strongestPoints = valid_points.selectStrongest(10); strongestPoints.plot("showOrientation",true);
Input Arguments
points
— Points object
M-by-2 matrix | point feature object
Points object,specified as an M-by-2 matrix of M number of [x y] coordinates, or as one of the point feature objects described in Point Feature Types. The object contains information about the feature points detected in the input image. To obtain points, use the appropriate detect function that pairs with the point feature type.
ax
— Axes handle
handle
Handle to use for display. You can set the handle using gca
.
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Example: plot(ShowOrientation=true)
renders the orientation in
the display plot.
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.
Version History
Introduced in R2011b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)