Package one.empty3.feature
Class ProcessEval
- java.lang.Object
-
- one.empty3.feature.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)) + Bvoid
addFiles(java.io.File[] files)
double
matchFeature(double[] x, double[] f)
void
setFeature(double[] f)
double
value(java.io.File file)
-
-
-
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)
-
-