-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
84 lines (59 loc) · 2.3 KB
/
main.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
%& -job-name=Fundamentals-Of-Camera-Calibration
\documentclass[12pt, oneside]{article}
\usepackage{texmf/preamble}
\usepackage{texmf/macros}
\usepackage{texmf/wordcount}
\graphicspath{{./assets/}}
\addglobalbib{sources.bib}
\begin{document} % BEGIN
\pagenumbering{gobble}
\begin{titlepage}
\large
\begin{center}
\vspace*{2cm}
{\bfseries
IB Math Analysis and Approaches (HL) \\
Extended Essay\\
May 2024 Session}\\
\vspace*{\fill}
\rule{\linewidth}{1.5pt} \\ [0.5cm]
{\LARGE \bfseries The Mathematics Techniques of Camera Calibration}
\rule{\linewidth}{0.5pt} \\
\vspace*{\fill}
\textbf{Research Question:} What are the strategies and mathematical techniques employed in camera calibration to develop precise and accurate camera models? \\ [1cm]
\textbf{Word Count:} \wordcount words
\vspace*{2cm}
\end{center}
\end{titlepage}
% =========================
\pagestyle{frontmatter}
\pagenumbering{roman}
\tableofcontents
% =========================
\clearpage
\pagestyle{mainmatter}
\pagenumbering{arabic}
\input{sections/1_intro.tex}
\input{sections/2_approach.tex}
\input{sections/3_model.tex}
\input{sections/4_pmatrix.tex}
\input{sections/5_extract.tex}
\input{sections/6_experiment.tex}
\input{sections/7_conclusion.tex}
%TC:ignore
\section*{Acknowledgements}
\addcontentsline{toc}{section}{Acknowledgements}
I am very grateful to my EE supervisor for his continual guidance and invaluable pieces of advice during the process of writing this extended essay. Additionally, I would like to express my appreciation to Mr. Auclair for dedicating his time to instruct me on camera operation and familiarizing me with camera settings. I am also indebted to Leon, for his help in operating the laser cutter. Last but not least, I want to thank Aditya for helping me troubleshoot issues that came up when using Adobe Illustrator for creating diagrams used in my paper.
% =========================
\clearpage
\pagestyle{backmatter}
\printbibliography[heading=bibintoc]{}
\clearpage
\begin{appendices}
\pagestyle{appendices}
\input{sections/appendix/A_homogenous.tex}
\input{sections/appendix/B_object.tex}
\input{sections/appendix/C_code.tex}
\end{appendices}
%TC:endignore
\end{document} % END