-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
91 lines (65 loc) · 4.29 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
84
85
86
87
88
89
90
91
%% First of all, include a document class and options
\documentclass[english,master]{diploma}
%% Includes
\usepackage[autostyle=true]{csquotes} % enhanced support for quotation marks, support for biblatex package
\usepackage[backend=biber, style=iso-numeric, alldates=iso]{biblatex} % bibliography
\DeclareNameAlias{default}{family-given} % Name format 'last-first' deprecated. Use 'family-given'
\usepackage{csvsimple}
\usepackage{amsmath}
\usepackage{bm}
\usepackage{amsfonts}
\usepackage{mathtools}
\mathtoolsset{showonlyrefs=true}
\usepackage{xfrac}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{dirtytalk}
\usepackage{microtype}
\usepackage{multirow, makecell}
\emergencystretch=1em
\newcommand*\Laplace{\mathop{}\!\mathbin\bigtriangleup}
\newcommand{\figref}[1]{\figurename~\ref{#1}}
\newcommand{\tabref}[1]{\tablename~\ref{#1}}
\newcommand{\norm}[1]{\left\lVert#1\right\rVert}
\DeclareMathOperator*{\argmin}{arg\,min}
\DeclareMathOperator*{\argmax}{arg\,max}
\usepackage{xcolor}
\usepackage{colortbl}
\definecolor{LightCyan}{rgb}{0.82,1,1}
\definecolor{Cyan}{rgb}{0.60,1,1}
%% Next, enter data for leading pages
\ThesisAuthor{Bc. Vojtěch Dorňák}
\ThesisSupervisor{Ing. Lukáš Pospíšil, Ph.D.}
\CzechThesisTitle{Algoritmy pro klasifikaci visuálních signálů s využitím technik extrakce významných rysů}
\EnglishThesisTitle{Algorithms used for classifying visual signals using methods for extracting significant features}
\SubmissionYear{2021}
\Acknowledgement{I would like thank the thesis supervisor Ing. Lukáš Pospíšil, Ph.D. and the thesis consultant Ing. Marek Pecha for their guidance throughout every step of writing this thesis. Their expertise helped form this text into the version you are reading now. I would also like to thank my girlfriend Nikola Viková for her everyday support while this thesis was being created. }
\CzechAbstract{Klasifikace vizuálních dat je důležitý úkol v moderním oboru počítačového vidění. Kvalita často používaných neuronových sítí závisí na velkém objemu trénovacích dat. Tato práce prozkoumává alternativní konvekční klasifikační metody, kde je rozměr dat redukován pomocí projekce na prostor významných bodů. Lokální a globální techniky extrakce významných bodů, a to SIFT, SURF, ORB a PCA jsou porovnány. Klasifikace pomocí SVM a Bayeovský Model je prozkoumána na třech datasetech o malém množství trénovacích dat a různé komplexnosti.}
\CzechKeywords{klasifikace vizuálních dat; extrakce rysů; Support Vector Machine; Bag of Words; k-means; Scale-Invariant Feature Transform; Speed-Up Robust Features; Oriented Fast and Rotated Brief; Analýza hlavních komponent}
\EnglishAbstract{Classification of visual data is a fundamental task in state-of-the-art computer vision. The efficiency of the commonly used neural networks crucially depends on a large amount of training data. This thesis explores alternative conventional classification methods, where the dimension of the visual data is reduced by projecting the data onto a space of significant features. The local and global feature extraction techniques, namely SIFT, SURF, ORB, and PCA are compared. The classification by SVM and the Bayesian Model is examined on three datasets with a small number of training images of different complexity.}
\EnglishKeywords{visual data classification; feature extraction; Support Vector Machine; Bag of Words; k-means; Scale-Invariant Feature Transform; Speed-Up Robust Features; Oriented Fast and Rotated Brief; Principal Component Analysis}
\AddAcronym{SIFT}{Scale Invariant Feature Transform}
\AddAcronym{DoG}{Difference of Gaussian}
\AddAcronym{SURF}{Speed Up Robust Features}
\AddAcronym{ORB}{Oriented Fast and Rotated Brief}
\AddAcronym{SVM}{Support Vector Machine}
\AddAcronym{PCA}{Principal Component Analysis}
\AddAcronym{BoVW}{Bag of Visual Words}
% Bibliography resources for BibLaTeX
\addbibresource{main.bib}
%% Beginning of the document
\begin{document}
%% Leading pages printing
\MakeTitlePages
\listoffigures
\clearpage
\listoftables
\clearpage
\include{content/introduction/introduction}
\include{content/extract/extract}
\include{content/classifiers/classifiers}
\include{content/data/data}
\include{content/results/results}
\include{content/conclusion/conclusion}
\printbibliography[heading=bibintoc]
\end{document}