RegionContourMode

Description

Decides what kind of paths will be result of RegionContour filter.

Values of this enumeration:

  • PixelCenters - Calculated paths will pass through centers of boundary pixels.
  • PixelEdges - Paths will run along boundary regions' pixels.

namespace RegionContourMode
{
	enum Type
	{
		PixelCenters,
		PixelEdges
	};
}