Class ProcessEval


  • public abstract class ProcessEval
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      ProcessEval​(int width, int height)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addFile​(java.io.File file)
      f(x) = w . x + b // Hyperplane separating POS and NEG w'= SOMME ( d'i yi xi) f(x) = SOMME (d'yi * (xi . x ) + b w' = SOMME (d'i yi xi) f(x) = SOMME (d'i yi (phi(xi) . phi(x)) + B
      void addFiles​(java.io.File[] files)  
      double matchFeature​(double[] x, double[] f)  
      void setFeature​(double[] f)  
      double value​(java.io.File file)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ProcessEval

        public ProcessEval​(int width,
                           int height)
    • Method Detail

      • addFile

        public void addFile​(java.io.File file)
        f(x) = w . x + b // Hyperplane separating POS and NEG w'= SOMME ( d'i yi xi) f(x) = SOMME (d'yi * (xi . x ) + b w' = SOMME (d'i yi xi) f(x) = SOMME (d'i yi (phi(xi) . phi(x)) + B
      • addFiles

        public void addFiles​(java.io.File[] files)
      • setFeature

        public void setFeature​(double[] f)
      • value

        public double value​(java.io.File file)
      • matchFeature

        public double matchFeature​(double[] x,
                                   double[] f)