closing_circleπ
Short descriptionπ
closing_circle β Close a region with a circular structuring element.
Signatureπ
closing_circle( region Region, out region RegionClosing, real Radius )
Descriptionπ
closing_circle behaves analogously to
closing, i.e., the regionsβ boundaries are smoothed and
holes within a region which are smaller than the circular
structuring element of radius Radius are closed. The
closing_circle operation is defined as a dilation
followed by a Minkowski subtraction, both with the same circular
structuring element.
Attentionπ
closing_circle is applied to each input region
separately. If gaps between different regions are to be closed,
union1 or union2 has to be called first.
Execution informationπ
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π
Region (input_object) region(-array) β object
Regions to be closed.
RegionClosing (output_object) region(-array) β object
Closed regions.
Radius (input_control) real β (real / integer)
Radius of the circular structuring element.
Default: 3.5
Suggested values: 1.5, 2.5, 3.5, 4.5, 5.5, 7.5, 9.5, 12.5, 15.5, 19.5, 25.5, 33.5, 45.5, 60.5, 110.5
Value range: 0.5 β€ Radius β€ 511.5 (lin)
Minimum increment: 1.0
Recommended increment: 1.0
Exampleπ
(C)
my_closing_circle(Hobject In, double Radius, Hobject *Out)
{
Hobject tmp, StructElement\;
gen_circle(StructElement,100.0,100.0,Radius)\;
dilation1(In,StructElement,&tmp,1)\;
minkowski_sub1(tmp,StructElement,Out,1)\;
}
Complexityπ
Let \(F1\) be the area of the input region. Then the runtime complexity for one region is:
Resultπ
closing_circle returns 2 (H_MSG_TRUE) if all parameters are
correct. The behavior in case of empty or no input region can be
set via:
-
no region:
set_system('no_object_result',<RegionResult>) -
empty region:
set_system('empty_region_result',<RegionResult>)
Otherwise, an exception is raised.
Combinations with other operatorsπ
Combinations
Possible predecessors
threshold, regiongrowing, connection, union1, watersheds, class_ndim_norm
Possible successors
reduce_domain, select_shape, area_center, connection
Alternatives
See also
Moduleπ
Foundation