Back to Aurora Vision Library website

You are here: Start » Function Reference » Image » Image Drawing » DrawCircle

DrawCircle


Header: AVL.h
Namespace: avl
Module: FoundationLite

Draws a circle on an image.

Syntax

C++
C#
 
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
Input will be modified ioImage Image&
Input value inCircle const Circle2D&
Input value inCircleAlignment Optional<const CoordinateSystem2D&> NIL
Input value inColor const Pixel&
Input value 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