Back to Aurora Vision Library Lite website
You are here: Start » Image » Image Drawing » DrawCircle
DrawCircle
Header: | AVL.h |
---|---|
Namespace: | avl |
Draws a circle on an image.
Syntax
void avl::DrawCircle ( avl::Image& ioImage, const avl::Circle2D& inCircle, atl::Optional<const avl::CoordinateSystem2D&> inCircleAlignment, const avl::Pixel& inColor, const avl::DrawingStyle& inDrawingStyle )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
ioImage | Image& | |||
inCircle | const Circle2D& | |||
inCircleAlignment | Optional<const CoordinateSystem2D&> | NIL | ||
inColor | const Pixel& | |||
inDrawingStyle | const DrawingStyle& |
Description
The operation draws a single of circle on the ioImage. Circle may exceed the image dimensions - those will be drawn partially or not at all, but the filter execution will succeed.
See Also
- DrawPoints_MultiColor – Draws points on an image with multiple colors.
- DrawPoints_SingleColor – Draws points on an image with a single color.