expand_regionexpand_regionExpandRegionExpandRegionexpand_region (Operator)

Name

expand_regionexpand_regionExpandRegionExpandRegionexpand_region — Fill gaps between regions or split overlapping regions.

Signature

expand_region(Regions, ForbiddenArea : RegionExpanded : Iterations, Mode : )

Herror expand_region(const Hobject Regions, const Hobject ForbiddenArea, Hobject* RegionExpanded, const Hlong Iterations, const char* Mode)

Herror T_expand_region(const Hobject Regions, const Hobject ForbiddenArea, Hobject* RegionExpanded, const Htuple Iterations, const Htuple Mode)

void ExpandRegion(const HObject& Regions, const HObject& ForbiddenArea, HObject* RegionExpanded, const HTuple& Iterations, const HTuple& Mode)

HRegion HRegion::ExpandRegion(const HRegion& ForbiddenArea, const HTuple& Iterations, const HString& Mode) const

HRegion HRegion::ExpandRegion(const HRegion& ForbiddenArea, Hlong Iterations, const HString& Mode) const

HRegion HRegion::ExpandRegion(const HRegion& ForbiddenArea, Hlong Iterations, const char* Mode) const

HRegion HRegion::ExpandRegion(const HRegion& ForbiddenArea, Hlong Iterations, const wchar_t* Mode) const   (Windows only)

static void HOperatorSet.ExpandRegion(HObject regions, HObject forbiddenArea, out HObject regionExpanded, HTuple iterations, HTuple mode)

HRegion HRegion.ExpandRegion(HRegion forbiddenArea, HTuple iterations, string mode)

HRegion HRegion.ExpandRegion(HRegion forbiddenArea, int iterations, string mode)

def expand_region(regions: HObject, forbidden_area: HObject, iterations: Union[int, str], mode: str) -> HObject

Description

expand_regionexpand_regionExpandRegionExpandRegionExpandRegionexpand_region closes gaps between the input regions, which resulted from the suppression of small regions in a segmentation operator, for example, (mode 'image'"image""image""image""image""image"), or to separate overlapping regions (mode 'region'"region""region""region""region""region"). Both uses result from the expansion of regions. The operator works by adding or removing a one pixel wide “strip” to a region.

The expansion takes place only in regions that are designated as not “forbidden” (parameter ForbiddenAreaForbiddenAreaForbiddenAreaForbiddenAreaforbiddenAreaforbidden_area). The number of iterations is determined by the parameter IterationsIterationsIterationsIterationsiterationsiterations. By passing 'maximal'"maximal""maximal""maximal""maximal""maximal", expand_regionexpand_regionExpandRegionExpandRegionExpandRegionexpand_region iterates until convergence, i.e., until no more changes occur. By passing 0 for this parameter, all non-overlapping regions are returned. The two modes of operation ('image'"image""image""image""image""image" and 'region'"region""region""region""region""region") are different in the following ways:

'image'

The input regions are expanded iteratively until they touch another region or the image border. In this case, the image border is defined to be the rectangle ranging from (0,0) to (row_max,col_max). Here, (row_max,col_max) corresponds to the lower right corner of the smallest surrounding rectangle of all input regions (i.e., of all regions that are passed in RegionsRegionsRegionsRegionsregionsregions and ForbiddenAreaForbiddenAreaForbiddenAreaForbiddenAreaforbiddenAreaforbidden_area). Because expand_regionexpand_regionExpandRegionExpandRegionExpandRegionexpand_region processes all regions simultaneously, gaps between regions are distributed evenly to all regions. Overlapping regions are split by distributing the area of overlap evenly to both regions.

'region'

No expansion of the input regions is performed. Instead, only overlapping regions are split by distributing the area of overlap evenly to the respective regions. Because the intersection with the original region is computed after the shrinking operation gaps in the output regions may result, i.e., the segmentation is not complete. This can be prevented by calling expand_regionexpand_regionExpandRegionExpandRegionExpandRegionexpand_region a second time with the complement of the original regions as “forbidden area.”

Execution Information

Parameters

RegionsRegionsRegionsRegionsregionsregions (input_object)  region(-array) objectHRegionHObjectHRegionHobject

Regions for which the gaps are to be closed, or which are to be separated.

ForbiddenAreaForbiddenAreaForbiddenAreaForbiddenAreaforbiddenAreaforbidden_area (input_object)  region objectHRegionHObjectHRegionHobject

Regions in which no expansion takes place.

RegionExpandedRegionExpandedRegionExpandedRegionExpandedregionExpandedregion_expanded (output_object)  region(-array) objectHRegionHObjectHRegionHobject *

Expanded or separated regions.

IterationsIterationsIterationsIterationsiterationsiterations (input_control)  integer HTupleUnion[int, str]HTupleHtuple (integer / string) (int / long / string) (Hlong / HString) (Hlong / char*)

Number of iterations.

Default value: 'maximal' "maximal" "maximal" "maximal" "maximal" "maximal"

Suggested values: 'maximal'"maximal""maximal""maximal""maximal""maximal", 0, 1, 2, 3, 5, 7, 10, 15, 20, 30, 50, 70, 100, 200

Typical range of values: 0 ≤ Iterations Iterations Iterations Iterations iterations iterations ≤ 1000 (lin)

Minimum increment: 1

Recommended increment: 1

ModeModeModeModemodemode (input_control)  string HTuplestrHTupleHtuple (string) (string) (HString) (char*)

Expansion mode.

Default value: 'image' "image" "image" "image" "image" "image"

List of values: 'image'"image""image""image""image""image", 'region'"region""region""region""region""region"

Example (HDevelop)

read_image(Image,'clip')
threshold(Image,Dark,0,150)
connection(Dark,ConnectedRegions)
gen_circle (Circle, 400, 400, 200.5)
expand_region (ConnectedRegions, Circle, RegionExpanded, 'maximal', 'image')
dev_display (RegionExpanded)

Example (C)

read_image(&Image,"fabrik");
threshold(Image,&Light,100.0,255.0);
disp_region(Light,WindowHandle);
connection(Light,&Seg);
expand_region(Seg,EMPTY_REGION,&Exp1,"maximal","image");
set_colored(WindowHandle,12);
set_draw(WindowHandle,"margin");
disp_region(Exp1,WindowHandle);

Example (HDevelop)

read_image(Image,'clip')
threshold(Image,Dark,0,150)
connection(Dark,ConnectedRegions)
gen_circle (Circle, 400, 400, 200.5)
expand_region (ConnectedRegions, Circle, RegionExpanded, 'maximal', 'image')
dev_display (RegionExpanded)

Example (HDevelop)

read_image(Image,'clip')
threshold(Image,Dark,0,150)
connection(Dark,ConnectedRegions)
gen_circle (Circle, 400, 400, 200.5)
expand_region (ConnectedRegions, Circle, RegionExpanded, 'maximal', 'image')
dev_display (RegionExpanded)

Example (HDevelop)

read_image(Image,'clip')
threshold(Image,Dark,0,150)
connection(Dark,ConnectedRegions)
gen_circle (Circle, 400, 400, 200.5)
expand_region (ConnectedRegions, Circle, RegionExpanded, 'maximal', 'image')
dev_display (RegionExpanded)

Result

expand_regionexpand_regionExpandRegionExpandRegionExpandRegionexpand_region always returns the value 2 (H_MSG_TRUE). The behavior in case of empty input (no regions given) can be set via 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 an empty input region 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>), and the behavior in case of an empty result region via set_system('store_empty_region',<'true'/'false'>)set_system("store_empty_region",<"true"/"false">)SetSystem("store_empty_region",<"true"/"false">)SetSystem("store_empty_region",<"true"/"false">)SetSystem("store_empty_region",<"true"/"false">)set_system("store_empty_region",<"true"/"false">). If necessary, an exception is raised.

Possible Predecessors

pouringpouringPouringPouringPouringpouring, thresholdthresholdThresholdThresholdThresholdthreshold, dyn_thresholddyn_thresholdDynThresholdDynThresholdDynThresholddyn_threshold, regiongrowingregiongrowingRegiongrowingRegiongrowingRegiongrowingregiongrowing

Alternatives

dilation1dilation1Dilation1Dilation1Dilation1dilation1

See also

expand_grayexpand_grayExpandGrayExpandGrayExpandGrayexpand_gray, interjacentinterjacentInterjacentInterjacentInterjacentinterjacent, skeletonskeletonSkeletonSkeletonSkeletonskeleton

Module

Foundation