CharacterSortingOrder

Description

Decides whether and how to sort character regions in optical character recognition related filters.

Values of this enumeration:

  • None - Sorting will not be performed.
  • LeftToRight
  • RightToLeft
  • TopToBottom

namespace CharacterSortingOrder
{
	enum Type
	{
		None,
		LeftToRight,
		RightToLeft,
		TopToBottom
	};
}