public TrainModel(FeatureExtractionType eType, int EuclideanCentroidPointIndex, ClassifierType cType)
 {
     this.cType = cType;
     Trained = false;
     if (eType == FeatureExtractionType.EuclideanDistance)
         featureExtraction = new EuclideanDistance(EuclideanCentroidPointIndex);
 }
 public TrainModel(FeatureExtractionType eType, ClassifierType cType)
 {
     this.cType = cType;
     Trained = false;
     if (eType == FeatureExtractionType.EuclideanDistance)
         featureExtraction = new EuclideanDistance(14);
 }