Commit b8caad90b4bd4c4f8f3f6cdbbb1033a01766bab4

Authored by Josh Klontz
1 parent 56d874d4

minor simplifications

share/openbr/likely/face_recognition.tex
@@ -39,19 +39,18 @@ The top level definition of the face recognition algorithm. @@ -39,19 +39,18 @@ The top level definition of the face recognition algorithm.
39 39
40 \begin{likely} 40 \begin{likely}
41 face-recognition := 41 face-recognition :=
42 - () :->  
43 - {  
44 - algorithm := (quantize)  
45 - src :->  
46 - src.algorithm  
47 - } 42 +{
  43 + algorithm := (quantize)
  44 + src :->
  45 + src.algorithm
  46 +}
48 \end{likely} 47 \end{likely}
49 48
50 \section{Entry Point} 49 \section{Entry Point}
51 The entry point to the outside world is a single C function \texttt{face\_recognition} that takes as input a \texttt{likely\_mat} (the input image) and outputs a new \texttt{likely\_mat} (the feature vector). 50 The entry point to the outside world is a single C function \texttt{face\_recognition} that takes as input a \texttt{likely\_mat} (the input image) and outputs a new \texttt{likely\_mat} (the feature vector).
52 51
53 \begin{likely} 52 \begin{likely}
54 -(extern u8X "face_recognition" f32X (face-recognition)) 53 +(extern u8X "face_recognition" f32X face-recognition)
55 \end{likely} 54 \end{likely}
56 55
57 \end{document} 56 \end{document}