From b8caad90b4bd4c4f8f3f6cdbbb1033a01766bab4 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Tue, 14 Apr 2015 12:55:51 -0400 Subject: [PATCH] minor simplifications --- share/openbr/likely/face_recognition.tex | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/share/openbr/likely/face_recognition.tex b/share/openbr/likely/face_recognition.tex index d4936ff..22d8cff 100644 --- a/share/openbr/likely/face_recognition.tex +++ b/share/openbr/likely/face_recognition.tex @@ -39,19 +39,18 @@ The top level definition of the face recognition algorithm. \begin{likely} face-recognition := - () :-> - { - algorithm := (quantize) - src :-> - src.algorithm - } +{ + algorithm := (quantize) + src :-> + src.algorithm +} \end{likely} \section{Entry Point} 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). \begin{likely} -(extern u8X "face_recognition" f32X (face-recognition)) +(extern u8X "face_recognition" f32X face-recognition) \end{likely} \end{document} -- libgit2 0.21.4