Circle - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ImageTools[Draw]

  

Circle

  

ImageTools:-Draw Circle Primitive

  

SolidCircle

  

ImageTools:-Draw Solid Circle Primitive

 

Calling Sequence

Parameters

Description

Package Usage

Examples

Compatibility

Calling Sequence

Circle( image, xCenter, yCenter, diameter, opts )

SolidCircle( image, xCenter, yCenter, diameter, opts )

Parameters

image

-

ImageTools:-Image

xCenter

-

numeric

yCenter

-

numeric

diameter

-

numeric

color

-

(optional) see description

thickness

-

(optional) numeric := 1.0

Description

• 

After first creating an image using ImageTools:-Create, or loading an image with ImageTools:-Read, drawing operations can be performed on it using a number of primitives (functions that draw one kind of object). The first argument to each primitive is the image itself, as returned by Create or Read.

• 

The Circle and SolidCircle Primitives draw either an outlined or solid circle around a specified center point and with a specified diameter. Like the SolidRectangle primitive, the circle is perceptually entirely within the bounds specified by the center point and diameter.

• 

The xCenter and yCenter arguments give the coordinates of the circle's center, and the diameter argument specifies its diameter in pixels.

• 

The color argument can be specified in one of several forms:

gray

A numeric value between 0 and 1 specifying a shade of gray. The value 0 corresponds to black, and 1 to white.

[r,g,b]

A list of three numeric values between 0 and 1 specifying the red, green, and blue components separately.

[r,g,b,α]

A list of four numeric values between 0 and 1 specifying the red, green, blue, and opacity (alpha) separately. When the opacity is less than 1, the color will be blended with the existing content of the image.

ColorTools:-Color

A value of type ColorTools:-Color.

ColorTools:-Color argument(s)

Any form accepted by the ColorTools:-Color constructor, such as a string giving a color name (e.g. "red", palette and color name (e.g. "Niagara DarkOrchid"), or palette and color number (e.g. "Nautical 1"). Two argument forms are accepted as well, but then it is necessary to always use the keyword form of the color argument, since otherwise the two arguments will be interpreted as two separate arguments to the drawing primitive. For example, color=("HSV",[0.5,0.6,0.6]).

• 

The thickness option specifies the thickness of the boundary line. The entire boundary will be rendered within the specified diameter. Increasing the boundary thickness will not make the exterior of the circle any larger; all the variation in thickness is towards the interior.

• 

The color and thickness options are best provided as keyword equations, but can also be provided as positional arguments in the 5th and 6th positions respectively.

Package Usage

• 

This function is part of the ImageTools:-Draw package, so it can be used in the short form Circle(..) only after executing the command with(ImageTools:-Draw). However, it can always be accessed through the long form of the command by using ImageTools:-Draw:-Circle(..).

Examples

withImageTools:

withImageTools:-Draw:

Circle with thick edge.

imgCreate240,320,channels=3,background=white:

Circleimg,160,120,24064,color=0.5,thickness=3

Embedimg

for the next step, ensure that you have appropriate permissions for the directory you will write to.

Writecirc1.png,img

6056

(5.1)

Solid gray circle.

imgCreate240,320,channels=3,background=white:

SolidCircleimg,160,120,24064,color=0.5

Embedimg

Supporting Functions for the Examples

Draw a red crosshair centered at (x*scale,y*scale).

crossHair := proc( img :: Array, x :: numeric, y :: numeric, scale :: numeric )
   uses ImageTools:-Draw;
   Line(img,(x-1.5)*scale,y*scale,(x+1.5)*scale,y*scale,
        color="red",thickness=1.5);
   Line(img,x*scale,(y-1.5)*scale,x*scale,(y+1.5)*scale,
        color="red",thickness=1.5)
end:

Draw a background grid with specified interval.

gridFill := proc( img :: Array, interval :: numeric )
   local x, y, w, h;
   uses ImageTools:-Draw;
   w, h := Width(img), Height(img);
   for x from interval by interval while x < w do
       Line(img,x,0,x,h,color=[0,1,1,0.25])
   od;
   for y from interval by interval while y < h do
       Line(img,0,y,w,y,color=[0,1,1,0.25])
   od
end:

Unzoomed image to hold all four of the following circles.

img4Create62&comma;80&comma;channels=3&comma;background=white&colon;

The images below will be generated at 20 pixels width and 15 pixels height, magnified by a factor of 16, and then augmented with red crosshairs to show the mathematical corners of the circles.

Zoomed circle with thin edge.

imgCreate15&comma;20&comma;channels=3&comma;background=white&colon;

Circleimg&comma;10&comma;7&comma;10&comma;color=0.5&comma;thickness=1

img49..23,11..30img&colon;

imgScaleimg&comma;16&comma;method=nearest&colon;

gridFillimg&comma;16

crossHairimg&comma;10&comma;7&comma;16

crossHairimg&comma;5&comma;2&comma;16

crossHairimg&comma;15&comma;12&comma;16

Embedimg

Zoomed circle with thick edge.

imgCreate15&comma;20&comma;channels=3&comma;background=white&colon;

Circleimg&comma;10&comma;7&comma;10&comma;color=0.5&comma;thickness=2.5

img49..23,51..70img&colon;

imgScaleimg&comma;16&comma;method=nearest&colon;

gridFillimg&comma;16

crossHairimg&comma;10&comma;7&comma;16

crossHairimg&comma;5&comma;2&comma;16

crossHairimg&comma;15&comma;12&comma;16

Embedimg

Both of these two circles above have the same center coordinates and same diameter. Since the center coordinates are integers, and the diameter is an integer multiple of two, the left, right, top, and bottom edges coincide exactly with pixel boundaries. In the second circle, notice that the edge pixels are identical to those of the first circle; the additional edge thickness has not made the circle any larger.

Zoomed solid circle with integer center and bounds.

imgCreate15&comma;20&comma;channels=3&comma;background=white&colon;

SolidCircleimg&comma;10&comma;7&comma;10&comma;color=0.5

img440..54,11..30img&colon;

imgScaleimg&comma;16&comma;method=nearest&colon;

gridFillimg&comma;16

crossHairimg&comma;10&comma;7&comma;16

crossHairimg&comma;5&comma;2&comma;16

crossHairimg&comma;15&comma;12&comma;16

Embedimg

Zoomed solid circle with non-integer center and bounds.

imgCreate15&comma;20&comma;channels=3&comma;background=white&colon;

SolidCircleimg&comma;10.3&comma;7.4&comma;11&comma;color=0.5

img440..54,51..70img&colon;

imgScaleimg&comma;16&comma;method=nearest&colon;

gridFillimg&comma;16

crossHairimg&comma;10.3&comma;7.4&comma;16

crossHairimg&comma;4.8&comma;1.9&comma;16

crossHairimg&comma;15.8&comma;12.9&comma;16

Embedimg

The first solid circle above has the same coordinates and diameter as the first open circle, and hence has the same alignment and identical edge pixels. The second solid circle above has non-integer center coordinates and a non-even diameter, resulting in some edges that don't fall on pixel boundaries.

Write collage containing the previous four circles at original size. The following image shows each of the four circles above, rendered at their original size.

Embedimg4

Compatibility

• 

The ImageTools[Draw][Circle] and ImageTools[Draw][SolidCircle] commands were introduced in Maple 2018.

• 

For more information on Maple 2018 changes, see Updates in Maple 2018.

See Also

ImageTools

ImageTools:-Draw:-Line

ImageTools:-Draw:-Poly

ImageTools:-Draw:-SolidRectangle

ImageTools:-Draw:-Text

ImageTools:-Draw:-TextSize