MatchingCriterion

Description

Methods of classifying an object as a member of group.

Values of this enumeration:

  • Intersection - Object has to have at least one common point with region being processed to be grouped.
  • Inclusion - Object has to be fully included in region to be grouped.

namespace MatchingCriterion
{
	enum Type
	{
		Intersection,
		Inclusion
	};
}