add eye tracking benchmark.
[IRC.git] / Robust / src / Benchmarks / SSJava / EyeTracking / LEAImplementation.java
diff --git a/Robust/src/Benchmarks/SSJava/EyeTracking/LEAImplementation.java b/Robust/src/Benchmarks/SSJava/EyeTracking/LEAImplementation.java
new file mode 100644 (file)
index 0000000..39d1647
--- /dev/null
@@ -0,0 +1,117 @@
+/*
+ * Copyright 2009 (c) Florian Frankenberger (darkblue.de)
+ * 
+ * This file is part of LEA.
+ * 
+ * LEA is free software: you can redistribute it and/or modify it under the
+ * terms of the GNU Lesser General Public License as published by the Free
+ * Software Foundation, either version 3 of the License, or (at your option) any
+ * later version.
+ * 
+ * LEA is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
+ * details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with LEA. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/**
+ * No description given.
+ * 
+ * @author Florian Frankenberger
+ */
+public class LEAImplementation {
+
+  // private ClassifierTree classifierTree = null;
+
+  // private Rectangle2D lastRectangle;
+
+  public LEAImplementation() {
+    this.loadFaceData();
+  }
+
+  // public FaceAndEyePosition getEyePosition(BufferedImage image) {
+  // if (image == null)
+  // return null;
+  //
+  // Rectangle2D faceRect = this.classifierTree.locateFaceRadial(image,
+  // lastRectangle);
+  // EyePosition eyePosition = null;
+  // if (faceRect != null) {
+  //
+  // lastRectangle = faceRect;
+  // Point point = readEyes(image, faceRect);
+  // if (point != null) {
+  // eyePosition = new EyePosition(point, faceRect);
+  // }
+  // }
+  //
+  // return new FaceAndEyePosition(faceRect, eyePosition);
+  // }
+
+  public boolean needsCalibration() {
+    return false;
+  }
+
+  /**
+   * This method loads the faceData from a file called facedata.dat which should
+   * be within the jar-file
+   */
+  private void loadFaceData() {
+
+    FileInputStream inputFile = new FileInputStream("facedata.dat");
+
+    int numClassifier = Integer.parseInt(inputFile.readLine());
+    System.out.println("numClassifier=" + numClassifier);
+    for (int c = 0; c < numClassifier; c++) {
+
+      int numArea = Integer.parseInt(inputFile.readLine());
+      Classifier classifier = new Classifier(numArea);
+      // parsing areas
+      for (int idx = 0; idx < numArea; idx++) {
+        // 54,54,91,62,296.0
+        Point fromPoint = new Point();
+        Point toPoint = new Point();
+        fromPoint.x  = Integer.parseInt(inputFile.readLine());
+        fromPoint.y = Integer.parseInt(inputFile.readLine());
+        toPoint.x = Integer.parseInt(inputFile.readLine());
+        toPoint.y = Integer.parseInt(inputFile.readLine());
+        float size = Float.parseFloat(inputFile.readLine());
+        ScanArea area = new ScanArea(fromPoint, toPoint, size);
+        classifier.setScanArea(idx, area);
+      }
+
+      // parsing possibilities face yes
+      float array[] = new float[numArea];
+      for (int idx = 0; idx < numArea; idx++) {
+        array[idx] = Float.parseFloat(inputFile.readLine());
+      }
+      classifier.setPossibilitiesFaceYes(array);
+
+      // parsing possibilities face no
+      for (int idx = 0; idx < numArea; idx++) {
+        array[idx] = Float.parseFloat(inputFile.readLine());
+      }
+      classifier.setPossibilitiesFaceNo(array);
+      classifier.setPossibilityFaceYes(Integer.parseInt(inputFile.readLine()));
+      classifier.setPossibilityFaceNo(Integer.parseInt(inputFile.readLine()));
+
+    }
+  }
+  // private Point readEyes(BufferedImage image, Rectangle2D rect) {
+  //
+  // // now we cluster the black image points and try to find the inner eye
+  // /*
+  // * BlackHoleDetector bhd = new BlackHoleDetector(image, rect);
+  // * bhd.detect(20);
+  // *
+  // * return bhd.getPosition();
+  // */
+  //
+  // EyeDetector ed = new EyeDetector(image, rect);
+  // return ed.detectEye();
+  // }
+
+}