public ShapeAnalyzer(ShapeAnalyzer shapeAnalyzer, double similarityCoefficient)
 {
     this._shapeDictionary = shapeAnalyzer.ShapeDictionary;
     _classifier           = new KNNClassifier(similarityCoefficient, 3);
 }
 public ShapeAnalyzer(double similarityCoefficient)
 {
     _shapeDictionary = new Dictionary <double[], Guid>(new CustomComparer());
     _classifier      = new KNNClassifier(similarityCoefficient, 3);
 }