AdjustmentMetric

Description

Optimization metric for path adjustment

Values of this enumeration:

  • PointDistance_LSE - Treat path as a set of points, minimize error using least squares
  • PointDistance_Median - Treat path as a set of points, minimize error using median
  • SegmentDistance - Treat path as a set of tangent lines, minimize error using least squares

namespace AdjustmentMetric
{
	enum Type
	{
		PointDistance_LSE,
		PointDistance_Median,
		SegmentDistance
	};
}