fillPolygon
fills all the pixels of an image withing a
given polygon with a given color.
fillPoly(image, polygon, color = "white")
image | An |
---|---|
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 |
This function does not return anything. It modifies image
in
place.
Simon Garnier, garnier@njit.edu
# TODO