Insert shapes in image or video
uses
additional options specified by one or more RGB = insertShape(___,Name,Value)Name,Value pair
arguments.
Read the image.
I = imread('peppers.png');Draw a circle with a border line width of 5.
RGB = insertShape(I,'circle',[150 280 35],'LineWidth',5);
Draw a filled triangle and a filled hexagon.
pos_triangle = [183 297 302 250 316 297]; pos_hexagon = [340 163 305 186 303 257 334 294 362 255 361 191]; RGB = insertShape(RGB,'FilledPolygon',{pos_triangle,pos_hexagon},... 'Color', {'white','green'},'Opacity',0.7);
Display the image.
imshow(RGB);

I — Input imageInput image, specified in truecolor or 2-D grayscale.
Data Types: single | double | int16 | uint8 | uint16
shape — Type of shape'Rectangle' | 'FilledRectangle' | 'Line' | 'Polygon' | 'FilledPolygon' | 'Circle' | 'FilledCircle'Type of shape, specified as a character vector. The vector can
be, 'Rectangle', 'FilledRectangle', 'Line', 'Polygon', 'FilledPolygon', 'Circle',
or 'FilledCircle'.
Data Types: char
position — Position of shapePosition of shape, specified according to the type of shape, described in the table.
| Shape | Position | Example |
|---|---|---|
'Rectangle''FilledRectangle' | For one or more rectangles, specify M-by-4 matrix where each row specifies
a rectangle as .
| Two rectangles, M=2
|
| For one or more disconnected lines, specify an M-by-4 matrix, where each four-element vector, , describes a line with endpoints. The polyline always contains (L-1) number of segments because the first and last vertex points do not connect. | Two lines, M=2
|
For one or more polylines or polygons with the same number of vertices, specify an M-by-2L matrix, where each row is a vector, , of consecutive vertex locations, representing a polyline or a polygon with L number of vertices. | Two polygons with equal number of vertices, M=2, L=5
| |
For one or more polylines or polygons with unequal number of vertices, specify an M-by-1 cell array, where each cell contains an L-by-2 matrix of [x,y] vertices, or a 1-by-2L vector, , of consecutive vertex locations. The value of L can be different for each cell element. For example, | Two polygons with unequal number of vertices, M=2 | |
'Circle''FilledCircle' | An M-by-3 matrix, where each row is a vector
specifying a circle as .
The coordinates
represent the center of the circle.
|
|
Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64
Specify optional
comma-separated pairs of Name,Value arguments. Name is
the argument name and Value is the corresponding value.
Name must appear inside quotes. You can specify several name and value
pair arguments in any order as
Name1,Value1,...,NameN,ValueN.
'Color','yellow' specifies
yellow for the shape color.'LineWidth' — Shape border line width1 (default) | positive scalar integerShape border line width, specified in pixels, as a positive
scalar integer. This property only applies to the 'Rectangle', 'Line', 'Polygon',
or 'Circle' shapes.
Data Types: uint8 | uint16 | int16 | double | single
'Color' — Shape color'yellow' (default) | character vector | cell array of character vectors | [R G B] vector | M-by-3 matrixShape color, specified as the comma-separated pair consisting
of 'Color' and either a character vector, cell
array of character vector, or matrix. You can specify a different
color for each shape, or one color for all shapes.
To specify a color for each shape, set Color to
a cell array of color character vectors or an M-by-3
matrix of M number of RGB (red, green, and blue)
color values.
To specify one color for all shapes, set Color to
either a color character vector or an [R G B] vector. The [R G B]
vector contains the red, green, and blue values.
Supported colors: 'blue', 'green', 'red', 'cyan', 'magenta', 'black','black',
and 'white'.
Data Types: cell | char | uint8 | uint16 | int16 | double | single
'Opacity' — Opacity of filled shape0 1]Opacity of filled shape, specified as the comma-separated pair
consisting of 'Opacity' and a scalar value in
the range [0 1]. The Opacity property applies
for the FilledRectangle, FilledPolygon,
and FilledCircle shapes.
Data Types: double | single | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64
'SmoothEdges' — Smooth shape edgestrue (default) | falseSmooth shape edges, specified as the comma-separated pair consisting
of 'SmoothEdges' and a logical value of true or false.
A true value enables an anti-aliasing filter to
smooth shape edges. This value applies only to nonrectangular shapes.
Enabling anti-aliasing requires additional time to draw the shapes.
Data Types: logical
RGB — Output imageOutput image, returned as a truecolor image.
'Color' and 'SmoothEdges' must
be compile-time constants.
insertMarker | insertObjectAnnotation | insertObjectMask | insertText | showShape
You have a modified version of this example. Do you want to open this example with your edits?