Пример #1
0
 public Knn(Storey Storey, byte[] TrainingSet, byte[] LabelMap, byte[] kNN)
 {
     this.Storey      = Storey;
     this.TrainingSet = TrainingSet;
     this.LabelMap    = LabelMap;
     this.kNN         = kNN;
 }
Пример #2
0
 public Knn(Storey Storey, byte[] LabelMap, byte[] kNN)
 {
     this.Storey   = Storey;
     this.LabelMap = LabelMap;
     this.kNN      = kNN;
 }
Пример #3
0
 public Space(Guid id, string name, Storey storey)
 {
     this.ID     = id;
     this.Name   = name;
     this.Storey = storey;
 }