public Knn(Storey Storey, byte[] TrainingSet, byte[] LabelMap, byte[] kNN) { this.Storey = Storey; this.TrainingSet = TrainingSet; this.LabelMap = LabelMap; this.kNN = kNN; }
public Knn(Storey Storey, byte[] LabelMap, byte[] kNN) { this.Storey = Storey; this.LabelMap = LabelMap; this.kNN = kNN; }
public Space(Guid id, string name, Storey storey) { this.ID = id; this.Name = name; this.Storey = storey; }