Skip to content
This repository has been archived by the owner on Jul 31, 2022. It is now read-only.

Commit

Permalink
Update processing flowchart to reflect the basis of the PDF version
Browse files Browse the repository at this point in the history
  • Loading branch information
atyndall committed Jun 19, 2015
1 parent 1f32093 commit dd00cba
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions diagrams/processing-flowchart.tex
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
\begin{tikzpicture}[node distance=1.7cm]
\node (raw) [circ] {Raw \linebreak Data};
\node (step1) [box, right=of raw, text width=4cm, minimum width=4cm] {1. Image \linebreak Capture on RPi \linebreak \texttt{cap\_pi\_synced.py}};
\node (frames) [circ, below=of step1] {Captured Images};
\node (step2) [box, right=of frames] {2. Data Labeling \linebreak \texttt{tagging.py}};
\node (truth) [circ, below=of step2] {Per-Frame Truth};
\node (step3) [box, left=of truth] {3. Feature Extraction \linebreak \texttt{weka\_export.py}};
\node (csv) [circ, below=of step3] {CSV File};
\node (step4) [box, below=of csv] {4. Weka Classification \linebreak \texttt{run\_flow.py}};
\node (results) [circ, right=of step4] {Weka Results};
\node (step1) [box, above=of raw] {1. Image \linebreak Capture on RPi};
\node (frames) [circ, right=of step1] {Captured Images};
\node (step2) [box, right=of frames] {2. Data Labeling};
\node (truth) [circ, right=of step2] {Per-Frame Truth};
\node (step3) [box, below=of frames] {3. Feature Extraction};
\node (csv) [circ, right=of step3] {Features};
\node (step4) [box, below=of truth] {4. Weka Classification};
\node (results) [circ, right=of step4] {Person Count};

\draw [line,->] (raw) -- (step1);
\draw [line,->] (step1) -- (frames);
\draw [line,->] (frames) -- (step2);
\draw [line,->] (step2) -- (truth);
\draw [line,->] (truth) -- (step3);
\draw [line,->] (truth) -- (step4);
\draw [line,->] (step3) -- (csv);
\draw [line,->] (csv) -- (step4);
\draw [line,->] (step4) -- (results);
Expand Down

0 comments on commit dd00cba

Please sign in to comment.