using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DALI.Utils { /// /// Define param for each segmentor /// public static class ParamSegmentation { //Param for Douglas Peucker segmentor public const Double ToleranceDouglasPeucker =10; //Angle Param for Douglas Peucker segmentor, to retreive angular points public const Double AngularTolerance = 150; public const Double NbSegmentationMax = 7; } }