Commit 4f221119ccf06347eb310d47b3de967842a7ce72

Authored by Josh Klontz
1 parent 8ee45208

introduced face_recognition.tex

share/openbr/likely/face_recognition.tex 0 → 100644
  1 +\documentclass{article}
  2 +\usepackage{verbatim}
  3 +
  4 +\newenvironment{likely}
  5 +{ \verbatim }
  6 +{ \endverbatim }
  7 +
  8 +\title{Likely Port: Face Recognition}
  9 +\author{Joshua C. Klontz}
  10 +\date{\today}
  11 +\begin{document}
  12 +\maketitle
  13 +
  14 +\begin{abstract}
  15 +This document represents a long-term effort to port the OpenBR face recognition algorithm to Likely\footnote{www.liblikely.org}.
  16 +As Likely is a literate programming language, this document is both the source code \emph{and} the documentation.
  17 +\end{abstract}
  18 +
  19 +\section{Consolidated Algorithm}
  20 +The top level definition of the face recognition algorithm.
  21 +
  22 +\begin{likely}
  23 +face-recognition :=
  24 + src :->
  25 + {
  26 + dst := src.imitate
  27 + (dst src) :=>
  28 + dst :<- src
  29 + }
  30 +\end{likely}
  31 +
  32 +\section{Entry Point}
  33 +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).
  34 +
  35 +\begin{likely}
  36 +(extern u8CXY "face_recognition" u8CXY face-recognition)
  37 +\end{likely}
  38 +
  39 +\end{document}
0 40 \ No newline at end of file
... ...