-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appendix-Documentation.tex
176 lines (145 loc) · 6.44 KB
/
Appendix-Documentation.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
% ================================================================
% CHAPTER 6: Anhang: Dokumentation
% ================================================================
\section{Dokumentation zum entwickelten System }
\subsection{Entwicklungsplattform}
\subsubsection{Hardware und Betriebssystem}
\begin{table}[H]
\rowcolors{2}{maroon!10}{white!100}
\arrayrulecolor{darkmaroon}
\begin{tabular}{p{6cm} p{8cm}}
\toprule[1pt]
\rowcolor{maroon!30}
Begriff & Spezifikation\\
\midrule
Modell & Mac mini (Late 2014) \\
Betriebssystem & macOS Catalina Version 10.15.3\\
Prozessor & 2.6 GHz Dual-Core Intel Core i5\\
Speicher & 8 GB 1600 MHz DDR3\\
Grafikkarte & Intel Iris 1536 MB\\
Seriennummer & C07QG49TG1HW\\
\bottomrule
\end{tabular}
\caption{Basisinformationen zum Computer Entwicklung}
\label{fig: Basisinformationen zum Computer Entwicklung}
\end{table}
\subsection{Softwarekomponenten}
Nachfolgend wird die wertschöpfende Software mit dem entsprechenden Verwendungszweck und der eingesetzen Version genannt.
\begin{table}[H]
\rowcolors{2}{maroon!10}{white!100}
\arrayrulecolor{darkmaroon}
\begin{tabular}{p{3cm} p{8cm} p{3cm} }
\toprule[1pt]
\rowcolor{maroon!30}
Software & Verwendungszweck & Version\\
\midrule
Python & Programmiersprache für Housekeeping und Auslösung der spezfischen Aktionen ausgehend vom Erreichen oder Nichterreichen der merkmalsbezogenen Schwellwertes & 3.7.4\\
OpenCV & Programmbibliothek mit Algorithmen für die Bildverarbeitung und maschinelles Sehen & 4.2.0 \\
\bottomrule
\end{tabular}
\caption{Eingesetzte Software Entwicklung}
\label{fig: Eingesetzte Software Entwicklung}
\end{table}
\subsection{Installation von OpenCV und Softwaremodulen}
Dieser Abschnitt gilt nur für Computer mit Mac OS X als Betriebssystem.
\subsubsection{Xcode installieren}
\begin{itemize}
\item Im App Store anmelden und Xcode herunterladen
\item \texttt{sudo xcodebuild -license}
\item \texttt{sudo xcode-select --install}
\end{itemize}
\subsubsection{Apple Command Line Tools installieren}
\begin{itemize}
\item \texttt{sudo xcode-select --install}
\end{itemize}
\subsubsection{Homebrew installieren und Bash Profil anpassen}
\begin{itemize}
\item \texttt{/usr/bin/ruby -e \grqq\$(curl -fsSL \newline https://raw.githubusercontent.com/Homebrew/install/master/install)\grqq}
\item \texttt{brew update}
\item \texttt{echo \grqq\# Homebrew\grqq $>$$>$ \textasciitilde/.bash\_profile}
\item \texttt{echo \grqq export PATH=/usr/local/bin:\$PATH \grqq >> \textasciitilde/.bash\_profile}
\end{itemize}
\subsubsection{Pakete installieren}
\begin{itemize}
\item \texttt{brew install cmake pkg-config}
\item \texttt{brew install qt5}
\item \texttt{brew install wget}
\end{itemize}
\subsubsection{Konfiguration und Ordnerstruktur vorbereiten }
\begin{itemize}
\item \texttt{QT5PATH=/usr/local/Cellar/qt/5.14.1}
\item \texttt{cwd=\$(pwd)}
\item \texttt{cvVersion=\grqq master\grqq}
\item \texttt{rm -rf opencv/build}
\item \texttt{rm -rf opencv\_contrib/build}
\item \texttt{mkdir installation}
\item \texttt{mkdir installation/OpenCV-\grqq\$cvVersion\grqq}
\end{itemize}
\subsubsection{Python Pakete installieren und virtuelle Umgebung einrichten }
\begin{itemize}
\item \texttt{sudo -H pip3 install -U pip numpy}
\item \texttt{sudo -H python3 -m pip install virtualenv virtualenvwrapper}
\item \texttt{VIRTUALENVWRAPPER\_PYTHON=/usr/local/bin/python3}
\item \texttt{echo \grqq VIRTUALENVWRAPPER\_PYTHON=/usr/local/bin/python3\grqq $>$$>$ \newline ~/.bash\_profile}
\item \texttt{ echo \grqq \# Virtual Environment Wrapper\grqq $>$$>$ ~/.bash\_profile}
\item \texttt{ echo \grqq source /usr/local/bin/virtualenvwrapper.sh\grqq $>$$>$ ~/.bash\_profile }
\item \texttt{mkvirtualenv OpenCV-\grqq\$cvVersion\grqq-py3 -p python3}
\item \texttt{workon OpenCV-\grqq\$cvVersion\grqq -py3s }
\item \texttt{pip install cmake numpy scipy matplotlib scikit-image scikit-learn ipython dlib}
\item \texttt{deactivate}
\end{itemize}
\subsubsection{GitHub Repositories klonen }
\begin{itemize}
\item \texttt{git clone https://github.com/opencv/opencv.git}
\item \texttt{cd opencv}
\item \texttt{git checkout master}
\item \texttt{cd ..}
\item \texttt{git clone https://github.com/opencv/opencv\_contrib.git}
\item \texttt{cd opencv\_contrib}
\item \texttt{git checkout master}
\item \texttt{cd ..}
\item \texttt{cd opencv}
\item \texttt{mkdir build}
\item \texttt{cd build}
\end{itemize}
\subsubsection{Build erstellen}
\texttt{
cmake -D CMAKE\_BUILD\_TYPE=RELEASE \textbackslash \newline
-D CMAKE\_INSTALL\_PREFIX=\$cwd/installation/OpenCV-\grqq\$cvVersion \grqq \textbackslash \newline
-D INSTALL\_C\_EXAMPLES=OFF \textbackslash \newline
-D INSTALL\_PYTHON\_EXAMPLES=ON \textbackslash \newline
-D WITH\_TBB=ON \textbackslash \newline
-D WITH\_V4L=ON \textbackslash \newline
-D OPENCV\_SKIP\_PYTHON\_LOADER=ON \textbackslash \newline
-D CMAKE\_PREFIX\_PATH=\$QT5PATH \textbackslash \newline
-D CMAKE\_MODULE\_PATH=\grqq\$QT5PATH\grqq/lib/cmake \textbackslash \newline
-D OPENCV\_PYTHON3\_INSTALL\_PATH=\textasciitilde/.virtualenvs/OpenCV-\grqq\$cvVersion\grqq-py3/lib/python3.7/site-packages \textbackslash \newline
-D WITH\_QT=ON \textbackslash \newline
-D WITH\_OPENGL=ON \textbackslash \newline
-D OPENCV\_EXTRA\_MODULES\_PATH=../../opencv\_contrib/modules \textbackslash \newline
-D BUILD\_EXAMPLES=ON \newline
}
\subsubsection{OpenCV 4 kompilieren}
\begin{itemize}
\item \texttt{make -j\$(sysctl -n hw.physicalcpu)}
\item \texttt{make install}
\item \texttt{cd \$cwd}
\end{itemize}
\subsubsection{Spyder für die Benützung mit der virtuellen Umgebung einrichten}
\begin{itemize}
\item \texttt{workon OpenCV-master-py3}
\item \texttt{pip install spyder-kernels==0.*}
\item \texttt{python -c \grqq import sys; print(sys.executable)\grqq}:
\item Die Ausgabe dieses Befehls in den Zwischenspeicher kopieren. \item Spyder öffnen und in den Voreinstellungen den Menupunkt \grqq Python-Interpreter\grqq{} wählen.
\item Den Inhalt aus dem Zwischenspeicher als Pfad zum Python-Interpreter verwenden.
\end{itemize}
\begin{landscape}
\section{Mindmap als Entwurf für Modellierung der Domäne}
Diese Zeichnung diente als erste Grundlage für das Domänenmodell.
\begin{figure}[H]
\center
\includegraphics[scale=.08]{Grafiken/mmDomain.jpg}
\caption{Mindmap als Entwurf für die Modellierung der Domäne }
\label{fig: Mindmap als Entwurf die für Modellierung der Domäne}
\end{figure}
\end{landscape}