mcRequiredOverlap Enumeration
|
|
Legal values for the McBitMask3D.InitializeLabeling method's RequiredOverlapparameter. This parameter sets the amount of overlap between connected foreground
regions between two McBitMask instances for the regions to be considered connected
across the two bit masks.
Namespace:
MediaCy.IQL.Features
Assembly:
MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcRequiredOverlap
Members
| Member name | Value | Description |
---|
| mcroUnknown | -3 | Unspecified overlap, the test will not beperformed until a valid RequiredOverlap is supplied |
| mcroConnect8 | -2 | Two regions are considered to overlap if theyactually overlap or if they are 8-connected to each other. |
| mcroConnect4 | -1 | Two regions are considered to overlap if theyactually overlap (i.e, if they are 4-connected to each other). A 4-connect
test requires that at least one foreground pixel overlap between the two
McBitMask instances. |
| mcroAnyOverlap | 0 | Two regions are considered to overlap only atleast one pixel overlaps. Regions 8-connected are not considered to
overlap. This option is effectively the same as mcroConnect4. |
| mcroAtLeast1Overlap | 1 | Two regions are considered to overlap only ifthe given number of pixels overlap between two regions. Regions with fewer
than the given number of pixels overlapping or ones that are 8-connected are
not considered to overlap. |
See Also