]> AND Private Git Repository - these_gilles.git/blob - THESE/these.tex
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
18 nov 13
[these_gilles.git] / THESE / these.tex
1 \documentclass[french]{spimufcphdthesis}
2 \usepackage[utf8]{inputenc}
3              
4 \usepackage{graphicx}
5 \usepackage{color, xcolor}
6 \usepackage[ruled,lined,linesnumbered]{algorithm2e}
7 \usepackage{multirow}
8 \usepackage{placeins}
9   
10 \usepackage{amsmath}
11 \usepackage{booktabs}  
12 \usepackage{textcomp}
13 \usepackage{listings}
14
15 \let\OLDlstinputlisting\lstinputlisting
16 \renewcommand{\lstinputlisting}[2][]{\FloatBarrier\OLDlstinputlisting[#1]{#2}\FloatBarrier} 
17
18
19 \lstset{morekeywords={HALF4,HALF3,float2,float3,float4,half,half2,half3,half4,tex2D,dim3,endif,threadIdx,blockIdx,blockDim,gridDim,Dim3,__host__,__global__,__shared__,float}}
20 \lstset{
21   language=C,
22   columns=fixed,
23   basicstyle=\footnotesize\ttfamily,
24   numbers=left,
25   firstnumber=1,
26   numberstyle=\tiny,
27   stepnumber=5,             
28   numbersep=5pt,              
29   tabsize=3,                  
30   extendedchars=true,         
31   breaklines=true,       
32   keywordstyle=\textbf,
33   frame=single,         
34   % keywordstyle=[1]\textbf,   
35   %identifierstyle=\textbf,
36   commentstyle=\color{white}\textbf,
37   stringstyle=\color{white}\ttfamily,
38   % xleftmargin=17pt,
39   % framexleftmargin=17pt,
40   % framexrightmargin=5pt,
41   % framexbottommargin=4pt,
42   backgroundcolor=\color{lightgray},
43   basicstyle=\scriptsize,
44   texcl=true
45   }
46
47 %%--------------------
48 %% Set the title, subtitle, defense date, and
49 %% the registration number of the PhD thesis.
50 %% The optional parameter is the subtitle of the PhD thesis.
51 %% The first mandatory parameter is the title of the PhD thesis.
52 %% The second mandatory parameter is the date of the PhD defense.
53 %% The third mandatory parameter is the reference number given by
54 %% the University Library after the PhD defense.
55 \declarethesis[]{Algorithmes rapides pour le traitement des images bruitées sur GPU}{17 novembre 2013}{XXX}
56       
57 %%--------------------  
58 %% Set the author of the PhD thesis
59 \addauthor[gilles.perrot@univ-fcomte.fr]{Gilles}{Perrot}
60     
61 %%--------------------
62 %% Add a member of the jury
63 %% \addjury{Firstname}{Lastname}{Role in the jury}{Position}
64 \addjury{Incroyable}{Hulk}{Rapporteur}{Professeur à l'Université de Gotham City \\ Commentaire secondaire}
65 \addjury{Super}{Man}{Examinateur}{Professeur à l'Université de Gotham City}
66 \addjury{Bat}{Man}{Directeur de thèse}{Professeur à l'Université de Gotham City}
67    
68 %%--------------------
69 %% Set the laboratory where the thesis was made
70 \addlaboratory{Institut FEMTO-ST, département DISC}
71   
72 %%-------------------- 
73 %% Set the English abstract
74 \thesisabstract[english]{This is the abstract in English}
75        
76 %%--------------------   
77 %% Set the English keywords. They only appear if
78 %% there is an English abstract
79 \thesiskeywords[english]{GPU, Filtering, Image, Segmentation}
80     
81 %% --------------------
82 %% Set the French abstract
83 \thesisabstract[french]{Ceci est le résumé en français}
84  
85 %%--------------------
86 %% Set the French keywords. They only appear if
87 %% there is an French abstract
88 \thesiskeywords[french]{GPU, Filtrage, Image, Segmentation}
89  
90 %%--------------------
91 %% Change the speciality of the PhD thesis
92 \Set{speciality}{Informatique}
93  
94 %%--------------------
95 %% Change the institution
96 \Set{universityname}{Universit\'e de Franche-Comt\'e}
97  
98 %%--------------------
99 %% Change the header and the foot of the pages
100 %% Left header
101 %\lhead{}
102 %% Center header
103 %\chead{}
104 %% Right header
105 %\rhead{}
106 %% Left footer
107 %\lfoot{}
108 %% Center footer
109 %\cfoot{} 
110 %% Right footer
111 %\rfoot{}
112
113
114 %\declareupmtheorem{rq}{Remarque}{Liste des remarques}
115
116 \newcommand{\kl}{\includegraphics[scale=0.7]{kernLeft.png}~}
117 \newcommand{\kr}{\includegraphics[scale=0.7]{kernRight.png}}
118    
119 \begin{document}
120     
121 \tableofcontents
122                                                                          
123 %-------------------- 
124 % The content of the PhD thesis
125 % objectifs, cadre  
126 % annonce du plan  
127 \chapter{Introduction}          
128 \input{Chapters/chapter1/chapter1.tex}
129 \chapter{Les processeurs graphiques (GPU) NVidia\textregistered}\label{ch-GPU}
130 \input{Chapters/chapter1b/chapter1b.tex}
131 \chapter{Le traitement des images bruitées} 
132 \input{Chapters/chapter2/chapter2.tex}
133 % généraliéts
134 %classes d'algo, outils ( histo, PDF, gauss, speckle, etc..)
135 %\section{L'état de l'art des implémentations GPU}
136 % segmentation
137 % filtrage : réduction de bruit, convolutions 
138 % tracking         
139 % pattern recognition 
140 \chapter{La segmentation par snake polygonal orienté régions}
141 \input{Chapters/chapter3/chapter3.tex}     
142  
143 \part*{Le filtrage des images sur GPU}
144 \chapter{Réduction de bruit par recherche des lignes de niveaux}
145 \input{Chapters/chapter4/chapter4.tex}
146
147 \chapter{Le filtre médian sur GPU} 
148 \input{Chapters/chapter5/chapter5.tex}
149
150 \chapter{Les filtres de convolution sur GPU}
151 \input{Chapters/chapter6/chapter6.tex} 
152 % présentation, rôle   
153 % détails : convo NON SEP, convo SEP, discussion Shared mem
154 % résultats, conclusion  
155 % intégrer logiciels dans sections
156 \chapter{Conclusion générale}
157  \input{Chapters/chapter7/chapter7.tex}
158    
159 %--------------------
160 % Bibliography, indexes...
161 \bibliographystyle{plain}
162 \bibliography{biblio}
163 \listoffigures
164 \listoftables
165   
166 \appendix
167  
168 \end{document}