fillPoly: Fill Polygon with Color in Image
Description
fillPolygon
fills all the pixels of an image withing a
given polygon with a given color.
Usage
fillPoly(image, polygon, color = "white")
Arguments
polygon
An m x 2 matrix (or an object that can be converted to an
m x 2 matrix), with the first column containing the x coordinates of the
polygon and the second column containing the y coordinates of the polygon.
color
A value or vector of any kind of R color specification compatible
with col2rgb
representing the color to fill the polygon with
(default: "white").
Value
This function does not return anything. It modifies image
in
place.