Back to Aurora Vision Studio website

You are here: Start » Filter Reference » Region » Region Features » RegionMedialAxis

RegionMedialAxis


Module: FoundationBasic

Computes an array of paths corresponding to the skeleton of the input region.

Name Type Description
Input value inRegion Region Input region
Input value inRegionSkeletonMethod RegionSkeletonMethod
Output value outSkeletonPaths PathArray

Description

The operation performs skeletonization presenting result as an array of paths.

Skeleton of a region is a connected set of medial axis of its limbs. It is a useful tool when one is interested only in general structure of a shape and wants to disregard width of its limbs. Two methods are available, depending on the value of inRegionSkeletonMethod being chosen:

  • EightConnected: the input region is thinned as long as the thinning procedure affects it; the structuring elements come from the well known Golay alphabet
  • TwelveConnected: the input region is thinned also, but the structuring elements being used are slightly larger than in previous method (they consider 12-neighborhood of the given pixel instead of 8-neighborhood). The method comes from the paper of U. Eckhardt and G. Maderlechner "Invariant thinning"

The second method is slower than the first one, but its results look in most cases much better than the first one's results.

This filter is a cousin of SkeletonizeRegion which represents the results as a region instead of an array of paths.

Examples

The resulting outSkeletonPaths paths drawn onto the input region, inRegionSkeletonMethod = TwelveConnected.

Complexity Level

This filter is available on Advanced Complexity Level.

See Also