示例#1
0
 public KNNMeasure(IndexTransformator transformator, Array histogram, Shell[] shells, int spaceDimension, 
     int histogramResolution, int serverNO, int pointNO, int kNN)
 {
     this.transformator = transformator;
     this.histogram = histogram;
     this.shells = shells;
     this.spaceDimension = spaceDimension;
     this.histogramResolution = histogramResolution;
     this.serverNO = serverNO;
     this.pointNO = pointNO;
     this.kNN = kNN;
 }
示例#2
0
 public InputParser(IndexTransformator transformator)
 {
     this.transformator = transformator;
 }