draw_polygon
-
Description
Draw polygons on an image.
-
Parameters
- img (
np.ndarray
): The image to draw on, as a NumPy array. - polygon (
Union[Polygon, np.ndarray]
): The polygon(s) to draw, can be a Polygon object or a NumPy array in the form [[x1, y1], [x2, y2], ...]. - color (
_Color
): The color of the polygons to draw. Defaults to (0, 255, 0). - thickness (
_Thickness
): The thickness of the polygon outlines to draw. Defaults to 2. - fillup (
bool
): Whether to fill the polygons. Defaults to False. - kwargs: Additional parameters.
- img (
-
Returns
- np.ndarray: The image with the drawn polygons.
-
Example
import docsaidkit as D
img = D.imread('lena.png')
polygon = D.Polygon([(20, 20), (100, 20), (80, 80), (20, 40)])
polygon_img = D.draw_polygon(img, polygon, color=(0, 255, 0), thickness=2)