BoundingRectangleFeature
Description
Criterion of finding bounding rectangle.
Values of this enumeration:
- MinimalArea - Bounding rectangle with minimal area is computed.
- MinimalPerimeter - Bounding rectangle with minimal perimeter is computed.
namespace BoundingRectangleFeature
{
	enum Type
	{
		MinimalArea,
		MinimalPerimeter
	};
}
 

