From 4f221119ccf06347eb310d47b3de967842a7ce72 Mon Sep 17 00:00:00 2001 From: Josh Klontz Date: Tue, 7 Apr 2015 14:04:16 -0400 Subject: [PATCH] introduced face_recognition.tex --- share/openbr/likely/face_recognition.tex | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+), 0 deletions(-) create mode 100644 share/openbr/likely/face_recognition.tex diff --git a/share/openbr/likely/face_recognition.tex b/share/openbr/likely/face_recognition.tex new file mode 100644 index 0000000..09b10e3 --- /dev/null +++ b/share/openbr/likely/face_recognition.tex @@ -0,0 +1,39 @@ +\documentclass{article} +\usepackage{verbatim} + +\newenvironment{likely} +{ \verbatim } +{ \endverbatim } + +\title{Likely Port: Face Recognition} +\author{Joshua C. Klontz} +\date{\today} +\begin{document} +\maketitle + +\begin{abstract} +This document represents a long-term effort to port the OpenBR face recognition algorithm to Likely\footnote{www.liblikely.org}. +As Likely is a literate programming language, this document is both the source code \emph{and} the documentation. +\end{abstract} + +\section{Consolidated Algorithm} +The top level definition of the face recognition algorithm. + +\begin{likely} +face-recognition := + src :-> + { + dst := src.imitate + (dst src) :=> + dst :<- src + } +\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 u8CXY "face_recognition" u8CXY face-recognition) +\end{likely} + +\end{document} \ No newline at end of file -- libgit2 0.21.4