Beispiel #1
0
 public Recognizer(KMeansAlgorithm algorithm)
 {
     _algorithmProcessor = algorithm;
     Centers             = new Dictionary <int, Point[]>();
     Epsilon             = 0.0001;
     ClusterCount        = 6;
 }
Beispiel #2
0
 public Model()
 {
     _algorithm  = new KMeansAlgorithm();
     _recognizer = new Recognizer(_algorithm);
 }