smallest_circle smallest_circle SmallestCircle SmallestCircle smallest_circle (Operator)
Name
smallest_circle smallest_circle SmallestCircle SmallestCircle smallest_circle
— Smallest surrounding circle of a region.
Signature
def smallest_circle (regions : HObject) -> Tuple[Sequence[float], Sequence[float], Sequence[float]]
def smallest_circle_s (regions : HObject) -> Tuple[float, float, float]
Description
The operator smallest_circle smallest_circle SmallestCircle SmallestCircle SmallestCircle smallest_circle
determines the smallest
surrounding circle of a region, i.e., the circle with the smallest
area of all circles containing the region. For this circle the
center (Row Row Row Row row row
,Column Column Column Column column column
) and the radius
(Radius Radius Radius Radius radius radius
) are calculated. The operator is applied when,
for example, the location and size of circular objects (e.g.,
coins) which, however, are not homogeneous inside or have broken
edges due to bad segmentation, has to be determined. The output of
the operator is selected in such a way that it can be used as input
for the operators disp_circle disp_circle DispCircle DispCircle DispCircle disp_circle
and
gen_circle gen_circle GenCircle GenCircle GenCircle gen_circle
.
In the documentation of this chapter (Regions / Features ), you can
find an image illustrating regions with varying outer and inner radii.
If several regions are passed in Regions Regions Regions Regions regions regions
corresponding
tuples are returned as output parameter. In case of empty region
all parameters have the value 0.0 if no other behavior was set (see
set_system set_system SetSystem SetSystem SetSystem set_system
).
Attention
Internally, the calculation is based on the center coordinates of
the region pixels. To take into account that pixels are not just
infinitely small points but have a certain area, the calculated
radius is enlarged by 0.5 before it is returned in
Radius Radius Radius Radius radius radius
. This, in most cases, gives acceptable results.
However, in the worst case (pixel diagonal) this enlargement is not
sufficient. If one wants to ensure that the border of the input
region completely lies within the circle, one had to enlarge the
radius by
instead of 0.5. Consequently,
the value returned in Radius Radius Radius Radius radius radius
must be corrected by
. However, this would also be only
an upper bound, i.e., the circle with the corrected radius would be
slightly too big in most cases.
Execution Information
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
Multithreading scope: global (may be called from any thread).
Automatically parallelized on tuple level.
Parameters
Regions Regions Regions Regions regions regions
(input_object) region(-array) →
object HRegion HObject HRegion Hobject
Regions to be examined.
Row Row Row Row row row
(output_control) circle.center.y(-array) →
HTuple Sequence[float] HTuple Htuple (real) (double ) (double ) (double )
Line index of the center.
Column Column Column Column column column
(output_control) circle.center.x(-array) →
HTuple Sequence[float] HTuple Htuple (real) (double ) (double ) (double )
Column index of the center.
Radius Radius Radius Radius radius radius
(output_control) circle.radius(-array) →
HTuple Sequence[float] HTuple Htuple (real) (double ) (double ) (double )
Radius of the surrounding circle.
Assertion:
Radius >= 0
Example (HDevelop)
read_image(Image,'fabrik')
regiongrowing(Image,Regions,5,5,6,100)
select_shape(Regions,SelectedRegions,'area','and',100,2000)
smallest_circle(SelectedRegions,Row,Column,Radius)
gen_circle(Circles,Row,Column,Radius)
dev_display (Circles)
Example (C)
read_image(&Image,"fabrik");
regiongrowing(Image,&Regions,5,5,6.0,100);
select_shape(Regions,&SelectedRegions,"area","and",100.0,2000.0);
T_smallest_circle(SelectedRegions,&Row,&Column,&Radius);
T_gen_circle(&Circles,Row,Column,Radius);
Example (HDevelop)
read_image(Image,'fabrik')
regiongrowing(Image,Regions,5,5,6,100)
select_shape(Regions,SelectedRegions,'area','and',100,2000)
smallest_circle(SelectedRegions,Row,Column,Radius)
gen_circle(Circles,Row,Column,Radius)
dev_display (Circles)
Example (HDevelop)
read_image(Image,'fabrik')
regiongrowing(Image,Regions,5,5,6,100)
select_shape(Regions,SelectedRegions,'area','and',100,2000)
smallest_circle(SelectedRegions,Row,Column,Radius)
gen_circle(Circles,Row,Column,Radius)
dev_display (Circles)
Example (HDevelop)
read_image(Image,'fabrik')
regiongrowing(Image,Regions,5,5,6,100)
select_shape(Regions,SelectedRegions,'area','and',100,2000)
smallest_circle(SelectedRegions,Row,Column,Radius)
gen_circle(Circles,Row,Column,Radius)
dev_display (Circles)
Complexity
If F is the area of the region, then the mean runtime complexity
is O(sqrt(F).
Result
The operator smallest_circle smallest_circle SmallestCircle SmallestCircle SmallestCircle smallest_circle
returns the value 2 (
H_MSG_TRUE )
if the input is not empty. The behavior in case of empty input (no input regions available)
is set via the operator set_system('no_object_result',<Result>) set_system("no_object_result",<Result>) SetSystem("no_object_result",<Result>) SetSystem("no_object_result",<Result>) SetSystem("no_object_result",<Result>) set_system("no_object_result",<Result>)
.
The behavior in case of empty region (the region is the empty set) is set via
set_system('empty_region_result',<Result>) set_system("empty_region_result",<Result>) SetSystem("empty_region_result",<Result>) SetSystem("empty_region_result",<Result>) SetSystem("empty_region_result",<Result>) set_system("empty_region_result",<Result>)
.
If necessary an exception is raised.
Possible Predecessors
threshold threshold Threshold Threshold Threshold threshold
,
regiongrowing regiongrowing Regiongrowing Regiongrowing Regiongrowing regiongrowing
,
connection connection Connection Connection Connection connection
,
runlength_features runlength_features RunlengthFeatures RunlengthFeatures RunlengthFeatures runlength_features
Possible Successors
gen_circle gen_circle GenCircle GenCircle GenCircle gen_circle
,
disp_circle disp_circle DispCircle DispCircle DispCircle disp_circle
Alternatives
elliptic_axis elliptic_axis EllipticAxis EllipticAxis EllipticAxis elliptic_axis
,
smallest_rectangle1 smallest_rectangle1 SmallestRectangle1 SmallestRectangle1 SmallestRectangle1 smallest_rectangle1
,
smallest_rectangle2 smallest_rectangle2 SmallestRectangle2 SmallestRectangle2 SmallestRectangle2 smallest_rectangle2
See also
set_shape set_shape SetShape SetShape SetShape set_shape
,
select_shape select_shape SelectShape SelectShape SelectShape select_shape
,
inner_circle inner_circle InnerCircle InnerCircle InnerCircle inner_circle
Module
Foundation