SplitAlgorithm

Description

Determines which method is used to split the region.

Values of this enumeration:

  • FewBlobs - Usually faster when the region is composed of small amount of blobs.
  • ManyBlobs - Usually faster when the region is composed of big amount of blobs.

namespace SplitAlgorithm
{
	enum Type
	{
		FewBlobs,
		ManyBlobs
	};
}