public IList <Point> GetContourPoints(DepthMap contourMap) { this.contourMap = contourMap; this.contourPoints = new List <Point>(); this.Process(); return(this.contourPoints); }
public IList<Point> GetContourPoints(DepthMap contourMap) { this.contourMap = contourMap; this.contourPoints = new List<Point>(); this.Process(); return this.contourPoints; }
public Contour CreateContour(DepthMap map, float left, float top) { if (map.FillRate < 0.01) { return Contour.Empty; } var points = this.Translate(this.tracer.GetContourPoints(map), (int)left, (int)top); points = this.thinner.Filter(points); return new Contour(points); }
public Contour CreateContour(DepthMap map, float left, float top) { if (map.FillRate < 0.01) { return(Contour.Empty); } var points = this.Translate(this.tracer.GetContourPoints(map), (int)left, (int)top); points = this.thinner.Filter(points); return(new Contour(points)); }
private Contour CreateContour(DepthMap map, Cluster cluster) { return(this.contourFactory.CreateContour(map, cluster.X, cluster.Y)); }
private Contour CreateContour(DepthMap map, Cluster cluster) { return this.contourFactory.CreateContour(map, cluster.X, cluster.Y); }