Esempio n. 1
0
        int samplesPerPosition; // Number of samples taken per position pointed from

        #endregion Fields

        #region Constructors

        public Calibrator(int samples, string vp, int round)
        {
            this.vp = vp;
            this.round = round;
            this.dataLogger = new DataLogger(@"D:\Master\TestFolder\CAL_0\", vp, round); // TODO: Initialize properly!
            this.geometryHandler = new GeometryHandler();
            this.samplesPerPosition = samples;
        }
Esempio n. 2
0
 private void initLogger()
 {
     this.dataLogger = new DataLogger(@"D:\Master\TestFolder\2014-3-4_defPlane\", this.vp, this.round);
     // Headline
     this.dataLogger.newPargraph("corners:" + '\t' + 1 + '\t' + "samples:" + '\t' + this.calibrationSamples.ToString() + '\t' + "vectors:" + '\t' + calibrationSampleVectors);
 }