Commit e537d162 authored by Jose Gaspar's avatar Jose Gaspar

Initial files to start an MSc

parent 36ccf349
Pipeline #180 failed with stages
-- Starting a new MSc:
Ask Professor Jose Gaspar to create an entry point for the MSc in the SVN:
svn mkdir svn://svn.isr.ist.utl.pt/dccal/msc/new_msc -m "added new MSc"
-- Create an MSc folder in your PC (suggestions for Windows OS):
mkdir c:\msc
mkdir c:\msc\SVN
mkdir c:\msc\matlab.my
Install TortoiseSVN and "checkout" your repository into c:\msc\SVN\.
(See next how to install "matlab.my")
Your SVN contains default folders:
c:\msc\SVN\refs folder containing papers and other references (PDF)
c:\msc\SVN\sw folder to contain software packages, others and yours
c:\msc\SVN\sw_tst tests and experiments based on the sw packages
c:\msc\SVN\data datasets to use
c:\msc\SVN\tex documentation to develop (latex), i.e. reports and the thesis
-- Download and install Matlab utils on your PC (folder "matlab.my")
See install details in:
http://users.isr.ist.utl.pt/~jag/software/matlab_my.htm
Function "addpathx.m" gets available after installing "matlab.my".
In Matlab, goto to the "matlab.my" root folder and type:
>> mtlmyini( 'install' )
You can install also "matlab.extras". It is recomended but not mandatory.
After installing "matlab.my" you can install automatically your MSc SVN folder:
>> mtlmyini( 'install_this_folder' )
which places information into "matlab.my\mtlmyini_path.m".
addpathx('.')
addpath('.')
function ret= addpathxinfo
% Usage assuming "matlab.my\util\addpathx.m" is in the path:
% >> addpathx('c:\my\folder\containing\this\folder')
% (please make sure addpathx.m is upto date)
ret= {
'', 'data'; ...
'', 'sw'; ...
'', 'sw_tst'; ...
};
return
function datasets= data_download_info
datasets= {...
struct('dataId','fiber_find161013t1', 'ofname', 'fiber_find161013t1.zip', 'url', 'https://www.dropbox.com/s/jpyyg1yc2d5f4ba/fiber_find161013t1.zip?dl=1'), ...
struct('dataId','fibers_recal_161023t1', 'ofname', 'fibers_recal_161023t1.zip', 'url', 'https://www.dropbox.com/s/23odo045byybmnq/fibers_recal_161023t1.zip?dl=1'), ...
struct('dataId','Mosaic_raw_161023t1', 'ofname', 'Mosaic_raw_161023t1.zip', 'url', 'https://www.dropbox.com/s/2wl5xofa34307vq/Mosaic_raw_161023t1.zip?dl=1'), ...
struct('dataId','fibersStreamsCorrData', 'ofname', 'fibersStreamsCorrData.zip', 'url', 'https://www.dropbox.com/s/f9eawhmguqrtwg7/fibersStreamsCorrData.zip?dl=1'), ...
struct('dataId','fibersStreamsTest', 'ofname', 'fibersStreamsTest.zip', 'url', 'https://www.dropbox.com/s/ypg487y66gj5t83/fibersStreamsTest.zip?dl=1'), ...
struct('dataId','fibersStreamsCorrDataGray', 'ofname', 'fibersStreamsCorrDataGray.zip', 'url', 'https://www.dropbox.com/s/6iaz1mzwv7echah/fibersStreamsCorrDataGray.zip?dl=1'), ...
};
return
Software to install (by this order!):
1. ghostscript & ghostview
2. miktex
3. texniccenter
4. (texaide 4 - not free anymore; the free version can still be found in the internet?)
5. create temporary folder and do a test: svn://svn.isr.ist.utl.pt/jag/tex_samples
[^^ do export instead of checkout of this repository]
\documentclass[a4paper]{paper}
% better use of an 4a page, lesser margins
\usepackage[a4paper,left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\usepackage[utf8]{inputenc} % utf8 allows portuguese characters
\usepackage{amsmath,amssymb,amsfonts,amsthm,bm} % help maths
\usepackage{xcolor} % allow writing in color e.g. \textcolor{red}{see here!}
\title{Example of writing one very simple document using LaTeX}
\author{author1 author2 author3}
\begin{document}
\maketitle
\begin{abstract}
One can optionally include an abstract section in a paper. There is no limit on the size of the abstract, but usually it comprises just some few paragraphs and in many cases is one single paragraph with half a dozen lines.
\end{abstract}
After starting a document, one can build various sections and sub-sections.
\section{Introduction}
\subsection{Related work}
\subsection{Problem description}
\section{Our proposal}
\section{Results}
\section{Conclusions and future work}
\end{document}
\documentclass[a4paper]{paper}
\title{Example of writing one very simple document using LaTeX}
\author{author1 author2 author3}
\begin{document}
\maketitle
\begin{abstract}
One can optionally include an abstract section in a paper. There is no limit on the size of the abstract, but usually it comprises just some few paragraphs and in many cases is one single paragraph with half a dozen lines.
\end{abstract}
After starting a document, one can build various sections and sub-sections.
\section{Introduction}
\subsection{Related work}
\subsection{Problem description}
\section{Our proposal}
\section{Results}
\section{Conclusions and future work}
\end{document}
latex demo_paper
latex demo_paper
dvips demo_paper
ps2pdf demo_paper.ps
pause
\documentclass[a4paper]{IEEEconf}
\title{Example of writing very simple equations using LaTeX}
\author{author1 author2 author3}
\begin{document}
\maketitle
% Comments (lines starting with \%) do not appear in the final document.
% See in the following: inline, own-line, own-line & numbered equations
This is a demo tex file. Example of one equation, inline with the paragraph is
$ \sum\limits_i {a_i + b_i } $ .
%
The same equation can be shown in its own line:
$$ \sum\limits_i {a_i + b_i } \ \ . $$
%
The same equation occupying its own line and being numbered, looks like this:
%
\begin{equation}
\sum\limits_i {a_i + b_i }
\label{eq:first_eq} \ \ .
\end{equation}
Another equation inline $y=x+y$, which is completely different from Eq.\ref{eq:first_eq} -- this is an illustration on how to reference numbered (labeled) equations.
\end{document}
latex tex_demo
latex tex_demo
dvips tex_demo
ps2pdf tex_demo.ps
pause
\documentclass{article}
\usepackage{graphicx} % to includegraphics
\usepackage{float} % to position figure H
\title{Title of the Paper}
\author{author}
\begin{document}
\maketitle
\begin{abstract}
This abstract is very abstract
\end{abstract}
This is a fast demonstration of making composite figures. See Fig.\ref{fig:figs_tst}.
Notice that in order to place a number of EPS files side by side, a tabular environment has been used.
One figure can hold any number of tabular environments inside, and in this way make a composite figure of a variable number of figures in each line.
\begin{figure}[H]
\centering
\begin{tabular}{ccc}
\includegraphics[width=3cm]{sph_proj.eps} &
\includegraphics[width=3cm]{sph_proj.eps} &
\hspace{1cm} \includegraphics[width=3cm]{sph_proj.eps} \\
(a) & (b) & (c) \\
\end{tabular}
\caption{text of the caption (a) is ... (b) illustrates ... (c) shows ...}
\label{fig:figs_tst}
\end{figure}
\end{document}
latex figs_tst
latex figs_tst
dvips figs_tst
ps2pdf figs_tst.ps
pause
This diff is collapsed.
%
% $Description: Sample bibliography$
%
% $Author: ienne $
% $Date: 1995/09/15 15:19:53 $
% $Revision: 1.3 $
%
@Article{ex1,
author = "Author, Ivan Marc",
title = "Some Related Article {I} Wrote",
journal = "Some Fine Journal",
month = "January",
number = "7",
year = "1999",
volume = "99",
pages = "1-100",
}
@Book{ex2,
author = "Expert, Andreas Nikolaos",
title = "A Book He Wrote",
publisher = "His Publisher",
address = "Erewhon, NC",
year = "1999"
}
%
% $Description: Author guidelines and sample document in LaTeX 2.09$
%
% $Author: ienne $
% $Date: 1995/09/15 15:20:59 $
% $Revision: 1.4 $
%
\documentclass[10pt,twocolumn]{IEEEtran}
\usepackage{float}
%-------------------------------------------------------------------------
% take the % away on next line to produce the final camera-ready version
\pagestyle{empty}
%-------------------------------------------------------------------------
\begin{document}
\title{\LaTeX\ Author Guidelines
for {\boldmath $210 \times 297$-mm} Proceedings Manuscripts}
\author{Paolo Ienne\\
Swiss Federal Institute of Technology\\ Microcomputing Laboratory \\ IN-F
Ecublens, 1015 Lausanne, Switzerland\\ Paolo.Ienne@di.epfl.ch\\
% For a paper whose authors are all at the same institution,
% omit the following lines up until the closing ``}''.
% Additional authors and addresses can be added with ``\and'',
% just like the second author.
\and
Second Author\\
Institution2\\
First line of institution2 address\\ Second line of institution2 address\\
SecondAuthor@institution2.com\\
}
\maketitle
\thispagestyle{empty}
\begin{abstract}
The ABSTRACT is to be in fully-justified italicized text, at the top
of the left-hand column, below the author and affiliation
information. Use the word ``Abstract'' as the title, in 12-point
Times, boldface type, centered relative to the column, initially
capitalized. The abstract is to be in 10-point, single-spaced type.
The abstract may be up to 3 inches (7.62 cm) long. Leave two blank
lines after the Abstract, then begin the main text.
\end{abstract}
%-------------------------------------------------------------------------
\section{Introduction}
Please follow the steps outlined below when submitting your
manuscript to the IEEE Computer Society Press. Note there have
been some changes to the measurements from previous instructions.
%-------------------------------------------------------------------------
\section{Instructions}
Please read the following carefully.
%-------------------------------------------------------------------------
\subsection{Language}
All manuscripts must be in English.
%-------------------------------------------------------------------------
\subsection{Printing your paper}
Print your properly formatted text on high-quality A4 paper.
%-------------------------------------------------------------------------
\subsection{Margins and page numbering}
All printed material, including text, illustrations, and charts,
must be kept within a print area 6.875 inches (17.5 cm) wide by
9.575 inches (24.32 cm) high. Do not write or print anything
outside the print area. Number your pages lightly, in pencil, on
the upper right-hand corners of the BACKS of the pages (for
example, 1/10, 2/10, or 1 of 10, 2 of 10, and so forth). Please do
not write on the fronts of the pages, nor on the lower halves of
the backs of the pages.
%------------------------------------------------------------------------
\subsection{Formatting your paper}
All text must be in a two-column format. The total allowable width
of the text area is 6.875 inches (17.5 cm) wide by 9.575 inches
(24.32 cm) high. Columns are to be 3-1/4 inches (8.25 cm) wide,
with a 5/16 inch (0.8 cm) space between them. The main title (on
the first page) should begin 1.0 inch (2.54 cm) from the top edge
of the page. The second and following pages should begin 1.0 inch
(2.54 cm) from the top edge. On all pages, the bottom margin
should be 1-1/8 inches (2.86 cm) from the bottom edge of the page
for $8.5 \times 11$-inch paper; for A4 paper, approximately 1-5/8
inches (4.13 cm) from the bottom edge of the page.
%-------------------------------------------------------------------------
\subsection{Type-style and fonts}
Wherever Times is specified, Times Roman may also be used. If neither is
available on your word processor, please use the font closest in
appearance to Times that you have access to.
MAIN TITLE. Center the title 1-3/8 inches (3.49 cm) from the top edge of
the first page. The title should be in Times 14-point, boldface type.
Capitalize the first letter of nouns, pronouns, verbs, adjectives, and
adverbs; do not capitalize articles, coordinate conjunctions, or
prepositions (unless the title begins with such a word). Leave two blank
lines after the title.
AUTHOR NAME(s) and AFFILIATION(s) are to be centered beneath the title
and printed in Times 12-point, non-boldface type. This information is to
be followed by two blank lines.
The ABSTRACT and MAIN TEXT are to be in a two-column format.
MAIN TEXT. Type main text in 10-point Times, single-spaced. Do NOT use
double-spacing. All paragraphs should be indented 1 pica (approx. 1/6
inch or 0.422 cm). Make sure your text is fully justified---that is,
flush left and flush right. Please do not place any additional blank
lines between paragraphs. Figure and table captions should be 10-point
Helvetica boldface type as in
\begin{figure}[H]
\caption{Example of caption.}
\end{figure}
\noindent Long captions should be set as in
\begin{figure}[H]
\caption{Example of long caption requiring more than one line. It is
not typed centered but aligned on both sides and indented with an
additional margin on both sides of 1~pica.}
\end{figure}
\noindent Callouts should be 9-point Helvetica, non-boldface type.
Initially capitalize only the first word of section titles and first-,
second-, and third-order headings.
FIRST-ORDER HEADINGS. (For example, {\large \bf 1. Introduction})
should be Times 12-point boldface, initially capitalized, flush left,
with one blank line before, and one blank line after.
SECOND-ORDER HEADINGS.
%(For example, {\elvbf 1.1. Database elements}) % <- not working in current Latex versions
should be Times 11-point boldface, initially capitalized, flush left,
with one blank line before, and one after. If you require a third-order
heading (we discourage it), use 10-point Times, boldface, initially
capitalized, flush left, preceded by one blank line, followed by a period
and your text on the same line.
%-------------------------------------------------------------------------
\subsection{Footnotes}
Please use footnotes sparingly%
\footnote
{%
Or, better still, try to avoid footnotes altogether. To help your
readers, avoid using footnotes altogether and include necessary
peripheral observations in the text (within parentheses, if you
prefer, as in this sentence).
}
and place them at the bottom of the column on the page on which they are
referenced. Use Times 8-point type, single-spaced.
%-------------------------------------------------------------------------
\subsection{References}
List and number all bibliographical references in 9-point Times,
single-spaced, at the end of your paper. When referenced in the text,
enclose the citation number in square brackets, for example~\cite{ex1,ex2}.
Where appropriate, include the name(s) of editors of referenced books.
%-------------------------------------------------------------------------
\subsection{Illustrations, graphs, and photographs}
All graphics should be centered. Your artwork must be in place in the
article (preferably printed as part of the text rather than pasted up).
If you are using photographs and are able to have halftones made at a
print shop, use a 100- or 110-line screen. If you must use plain photos,
they must be pasted onto your manuscript. Use rubber cement to affix the
images in place. Black and white, clear, glossy-finish photos are
preferable to color. Supply the best quality photographs and
illustrations possible. Penciled lines and very fine lines do not
reproduce well. Remember, the quality of the book cannot be better than
the originals provided. Do NOT use tape on your pages!
%-------------------------------------------------------------------------
\subsection{Color}
The use of color on interior pages (that is, pages other
than the cover) is prohibitively expensive. We publish interior pages in
color only when it is specifically requested and budgeted for by the
conference organizers. DO NOT SUBMIT COLOR IMAGES IN YOUR
PAPERS UNLESS SPECIFICALLY INSTRUCTED TO DO SO.
%-------------------------------------------------------------------------
\subsection{Symbols}
If your word processor or typewriter cannot produce Greek letters,
mathematical symbols, or other graphical elements, please use
pressure-sensitive (self-adhesive) rub-on symbols or letters (available
in most stationery stores, art stores, or graphics shops).
%------------------------------------------------------------------------
\subsection{Copyright forms}
You must include your signed IEEE copyright release form when you submit
your finished paper. We MUST have this form before your paper can be
published in the proceedings.
%-------------------------------------------------------------------------
\subsection{Conclusions}
Please direct any questions to the production editor in charge of these
proceedings at the IEEE Computer Society Press: Phone (714) 821-8380, or
Fax (714) 761-1784.
%-------------------------------------------------------------------------
%\nocite{ex1,ex2}
\bibliographystyle{plain}
\bibliography{sample}
\end{document}
latex sample
latex sample
bibtex sample
latex sample
dvips sample
ps2pdf sample.ps
pause
[InternetShortcut]
URL=http://conf.papercept.net/conferences/support/tex.php
This diff is collapsed.
8J+j)*J*J(ZjK
;XJ9
+
;ں998X;+8׹9KJ9JX;+8j8׹X;+)+;J8j8׹)+;J8Jj(zJ*I+JJ+JjJHhxH(IH9I)H)Z;k
J8J+j)*J*Jj
JH J:;'
J9Jy
:J
j8j8׹
jK
jJxJ8j8
j
;z
j8׹)z;J׷
YJ+׷
j8
*zJjJHhxH((xH)Z;k
J8J+j)*J*JJI+JJjJHhxH(IH9I)H)Z;k
J8J+j)*J*JJH{
;8
;JJ*;
Jj:J(
ڋJ9H
YJ+8)(
YJ+7(jz;(
ڋ8J+j)*J*J*(
ڋJ8)(
ڋ8J+j)*J*JGWg
\ No newline at end of file
:Base ee4enu.HLP
1 Release notes (read me first)=hlpRelease_notes
1 Getting Started
2 About TeXaide=hlpTutAbout
2 MathType, Equation Editor and TeXaide=hlpMathType_EE_and_TeXaide
2 Upgrading to MathType=hlpMathType_Upgrade
2 Getting Started=hlpGetting_started>Main
2 User Interface Basics
3 Inserting Symbols=hlpTutInsert_Symbols
3 Inserting Templates=hlpTutInsert_Templates
3 Placing the Insertion Point=hlpTutPlacing_Insertion_Point
3 Moving the Insertion Point=hlpTutMoving_Insertion_Point
3 Selecting Items in Equations=hlpTutSelecting_Items_in_an_Equation
3 Exporting Equations=hlpTutExporting_Equations
3 Drag and Drop=hlpDrag_drop
2 Tutorials
3 Tutorial One: Square Roots and Fractions=hlpTutTutorial_One
3 Tutorial Two: Sums, Subscripts and SuperScripts=hlpTutTutorial_Two
1 Using TeXaide
2 Using the Toolbar
3 Overview=hlpToolbars
3 Viewing and Positioning=hlpToolbar_Viewing_and_Positioning
3 Symbol Palettes=hlpToolbar_Symbol_Palettes
3 Template Palettes=hlpToolbar_Template_Palettes
3 Navigating Using the Keyboard=hlpToolbar_Navigating_with_the_keyboard
2 Working with the Keyboard
3 One-shot Style Shortcuts=hlpOne_shot_style_shortcuts
2 Fonts
3 Styles=hlpStyles
2 Translating Equations
3 Translators=hlpTranslators
3 Translators Dialog=hlpTranslators_Dialog
3 TeX Translators=hlpTeX
3 Translation Issues=hlpTranslationIssues
2 Extending TeXaide
3 Creating a New Translator=hlpCreating_a_new_translator
2 Other Topics
3 Replacing One Template by Another=hlpReplacing_one_template_by_another
3 Status Bar=hlpStatus_Bar
1 TeXaide Reference
2 Start Menu items=hlpStart_Menu
2 Menus
3 File menu=hlpFile_menu
3 Edit menu=hlpEdit_menu
3 View menu=hlpView_menu
3 Format menu=hlpFormat_menu
3 Style menu=hlpStyle_menu
3 Size menu=hlpSize_menu
3 Help menu=hlpHelp_menu
3 MathType on the Web Sub-menu=hlpMathType_on_the_Web_sub_menu
2 Dialogs
3 Define Sizes Dialog=hlpDefine_Sizes_Dialog
3 Define Spacing Dialog=hlpDefine_Spacing_Dialog
3 Define Styles Dialog=hlpDefine_Styles_Dialog
3 Matrix Dialog=hlpMatrix_Dialog
3 Other Size Dialog=hlpOther_Size_Dialog
3 Other Style Dialog=hlpOther_Style_Dialog
3 Translators Dialog=hlpTranslators_Dialog
3 Zoom Dialog=hlpZoom_Dialog
1 Getting Help
2 Ways to Get Assistance While You Work=hlpWays_to_get_assistance_while_you_work
2 Getting Help at the MathType Web Site=hlpGetting_help_at_the_MathType_web_site
2 Technical Support=hlpTechnical_support
2 Giving us Feedback=hlpGiving_us_feedback
1 Installing TeXaide
2 Installing TeXaide=hlpSU_Installing_MathType
2 TeXaide Setup=hlpSU_InstallRemoveDialog
2 Removing TeXaide=hlpSU_Removing_MathType
2 Moving TeXaide to a Different Folder=hlpSU_Moving_MathType
2 Start Menu Items=hlpStart_Menu
1 License Agreement
2 TexAide's End-Use License Agreement=hlpMathType_s_end_user_license_agreement
1 Glossary
2 Character Style=hlpcharacter_style
2 Clipboard=hlpclipboard
2 Current Equation=hlpCurrent_Equation
2 Default Web Browser=hlpdefault_web_browser
2 Encoding=hlpFont_encoding
2 Expanding Integrals=hlpExpanding_integrals
2 Focus=hlpFocus
2 Font=hlpFont
2 Font Encoding=hlpFont_encoding
2 Function=hlpfunction
2 Insertion Point=hlpInsertion_point
2 Keyboard Shortcuts=hlpkeyboard_shortcuts
2 Math Axis=hlpmath_axis
2 Nudging=hlpNudging
2 Pile=hlppile
2 Points=hlppoints
2 Relational Operator=hlprelational_operator
2 Slot=hlpslot
2 Styles=hlpStyles
2 Symbol=hlpSymbol
2 Template=hlptemplate
2 TeX=hlpTeX
2 Typesizes=hlptypesizes
2 Units=hlpunits
2 World Wide Web Consortium (W3C)=hlpThe_World_Wide_Web_Consortium_W3C
2 Web Browser=hlpweb_browser
This diff is collapsed.
Most latex SW is free, please find it in the web
TeXAide is a formulas editor for windows,
which had in the past a free version but does not anymore
the once in the past free version is saved in .\teXaide
%
% Dissertao: (colocar aqui nome prprio + apelido)
% July 2018
%
% Sites / docs to check:
%
% MEEC:
% https://fenix.tecnico.ulisboa.pt/cursos/meec/documentos-e-regulamentos
% https://fenix.tecnico.ulisboa.pt/downloadFile/845043405460433/DMEEC201803.pdf
%
% IST:
% https://graduacao.tecnico.ulisboa.pt/alunos/dissertacao-de-mestrado/
% https://graduacao.tecnico.ulisboa.pt/files/sites/54/guia-de-preparacao-da-dissertacao-1516.pdf
% https://tecnico.ulisboa.pt/pt/recursos/documentos-importantes/
% --------------------------------------------------------- CONFIG:
\documentclass[a4paper,12pt]{book}
%\usepackage[latin1]{inputenc} % incluir uma imagem postscript
%\usepackage[ansinew]{inputenc} % acentuao automtica
\usepackage[portuguese,english]{babel} % titles in last chosen language
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{times} % poe letra bonita em PDF
%\usepackage{indentfirst} % indenta o primeiro paragrafo de cada seco
%\usepackage[dvips]{graphicx}
\usepackage{graphicx}
\graphicspath{{./}{../figs/}} % please create a folder ../figs/.
\usepackage{subfigure} % figuras paralelas ou seguidas com mesma legenda
\usepackage{subcaption}
%\usepackage{epstopdf}
\usepackage{color}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
%\usepackage[colorlinks=false, pdfstartview=FitV, linkcolor=blue, citecolor=blue, urlcolor=blue,breaklinks=true]{hyperref}
%\usepackage{subeqn} % subnumerar equaes
\usepackage{url}
\usepackage{glossaries}
%\usepackage{hyperref} % poe bookmarks no ficheiro pdf
%\PassOptionsToPackage{linktocpage}{hyperref}
\usepackage[linktocpage=true]{hyperref}
\usepackage{setspace} % pacote de espaamento
\usepackage{datetime}
\onehalfspacing % espaamento de 1,5 entre linhas
%\doublespacing
%\vspace{.5cm} % como por um espaamento vertical
\textwidth = 16cm % largura do texto na folha
\textheight = 22cm %
\oddsidemargin = 0cm % margens na folha
\evensidemargin = 0cm %
\marginparwidth = 0pt % margem de paragrafos
%\usepackage[top=25mm, bottom=25mm, left=25mm, right=25mm]{geometry}
\usepackage{fancyhdr} % cabealhos
\pagestyle{fancy} % cabealhos do captulo e seco em minsculas
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{} % apagar as configuraes actuais
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\rightmark}
\fancyhead[RE]{\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{4.5pt} % fazer espao para o risco
\fancypagestyle{plain}{%
\fancyhead{} % Tirar cabealhos de pgina vazias
\renewcommand{\headrulewidth}{0pt} % e o risco
}
%\includeonly{sec2_meth1}
%\includeonly{sec3_meth2}
%\includeonly{sec4_experiments}
% --------------------------------------------------------- MAIN:
\begin{document}
\include{msc_thesis_title} \onehalfspacing
\cleardoublepage \pagenumbering{roman}%
\include{sec0_abstract}
\tableofcontents % main index
%\listoffigures
%\listoftables
\cleardoublepage \pagenumbering{arabic}
\include{sec1_intro}
\include{sec2_meth1}
\include{sec3_meth2}
\include{sec4_experiments}
\include{sec5_conclusion}
\appendix
\include{secx0_app}
\include{secx1_app}
\bibliographystyle{plain}
\bibliography{secz}
\end{document}
latex msc_thesis
latex msc_thesis
bibtex msc_thesis
latex msc_thesis
bibtex msc_thesis
latex msc_thesis
dvips msc_thesis.dvi
ps2pdf msc_thesis.ps
pause
%-------------------------------------------
% cover page
%-------------------------------------------
\thispagestyle{empty}
% -- Option 1/2 large letters:
\newcommand{\myfontA}{\LARGE} \newcommand{\myfontB}{\Large} \newcommand{\myfontC}{\large}
% -- Option 2/2 large letters but not so large:
%\newcommand{\myfontA}{\Large} \newcommand{\myfontB}{\large} \newcommand{\myfontC}{\normalsize}
\singlespace
% Logo -------------------------------------------
$ $ \vspace{-3cm}
\begin{minipage}[t]{5cm}
%\includegraphics[width=\linewidth]{istlogo2.eps} % high res
\includegraphics[width=5cm]{istlogo3.eps} % IST logo 2013
\end{minipage}
%\begin{minipage}[t]{12.5cm}
%\centering
% \vspace*{-1.5cm}
% {{\myfontC \bf UNIVERSIDADE TCNICA DE LISBOA}\\
% {\myfontC \bf \vspace{0.2cm} INSTITUTO SUPERIOR TCNICO}}
%\end{minipage}
\vspace*{-0.5cm} % \hspace*{-1.3cm}
\begin{center}
$ $ \\
\end{center}
%% Boneques ------------------------------------------------
%\begin{figure}[hbtp]
% \centerline{\includegraphics[height=4cm]{cover.eps}}
% \vspace{4mm}
%\end{figure}
% alternative to the Boneques:
\vfill
%% Title --------------------------------------------------
\onehalfspace
\begin{center}
\myfontA
{\bf Title of the Thesis}
\end{center}
%\vspace{7mm}
\singlespace
%% Author ---------------------------------------------------
\vfill
\begin{center}
% place here the full name, i.e first, middle and last names
{\myfontB \bf Full name} \\
%(Licenciado)
\end{center}
%% Subject -------------------------------------------------
\vfill
%% Use the following if thesis title/contents is in Portuguese
%\onehalfspace
%\begin{center}
% {Dissertao para a obteno do Grau de Mestre em}\\
% $ $ \\
% {Engenharia Electrotcnica e de Computadores}
%\end{center}
%\singlespace
%% Use the following if thesis title/contents is in English
\onehalfspace
\begin{center}
{\myfontC Thesis to obtain the Master of Science Degree in}\\
$ $ \\
{\myfontB \bf Electrical and Computer Engineering}
\end{center}
\singlespace
%% Supervisor & juri ----------------------------------------------
\vfill
\onehalfspace
%% --- Ttulo da tese em Portugus => jri em Portugus
%\begin{center}
%{\myfontB \bf Jri}
% $ $ \\
%\myfontC
% $ $ & {} \\
% { Presidente: Professor } \\
% { Orientador: Professor Jos Antnio da Cruz Pinto Gaspar} \\
% { Co-orientador: Doutor } \\
% { Vogal: Professor } \\
%% { Vogal: } \\ % in case of more than one
%\end{center}
\begin{center}
{\myfontB \bf Supervisor} \\
%{\myfontB \bf Supervisors} \\
$ $ \\
\myfontC
{ Professor Jos Antnio da Cruz Pinto Gaspar } \\
%{ Professor } \\
\end{center}
\vfill
%% --- English title => committee in English
\begin{center}
{\myfontB \bf Examination Committee} \\
$ $ \\
\myfontC
{ Chairperson: \emph{to be filled later} } \\
{ Supervisor: Professor Jos Antnio da Cruz Pinto Gaspar} \\
{ Member: \emph{to be filled later} } \\
% {Member: } \\ % in case of more than one
\end{center}
\singlespace
%% Date ----------------------------------------------------
\vfill
\onehalfspace \centerline{\myfontB \bf \monthname \, \the\year} \singlespace
\pagebreak \thispagestyle{empty} $ $ \pagebreak
\chapter*{Declaration}
\addcontentsline{toc}{chapter}{Declaration}
I declare that this document is an original work of my own authorship and that it fulfills all the
requirements of the Code of Conduct and Good Practices of the Universidade de Lisboa.
% -------------------------------------------------------------------------------
% NOTE1: An acknowledgments section is read by everyone, including people that knows nothing about the thesis AND no one revises it (even the supervisors).
% NOTE2: In order to include and acknowledgments section, please uncomment the next lines.
%
%\chapter*{Agradecimentos}
%\addcontentsline{toc}{chapter}{Agradecimentos}
%
%É com bastante satisfação que escrevo esta secção por finalmente ter vencido uma meta importante...
% -------------------------------------------------------------------------------
\chapter*{Resumo}
\addcontentsline{toc}{chapter}{Resumo}
(Resumo em Português)
\vspace{1cm}\noindent\textbf{Palavras chave:}
Câmara pan tilt zoom, ...
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
Although it is clear the intrinsic advantages of pan-tilt cameras with respect to fixed cameras, modern video surveillance systems are still based on networks of fixed cameras...
\vspace{1cm}\noindent\textbf{Keywords:}
Pan and Tilt Zoom Camera, ...
\chapter{Introduction}
Many modern video surveillance systems encompass pan-tilt cameras due to the flexibility they provide in selecting the fields-of-view, as compared to using just fixed cameras. Although patent the great potential of using the pan-tilt cameras, one has to design pan and tilt controllers whose effectiveness directly impacts on the surveillance performance.
%
The work described within this dissertation ...
\section{Related Work}
Related work, e.g. a simple to use camera calibration toolbox \cite{Bouguet}.
Related work, on another relevant subject ...
\section{Problem Formulation}
% Identify one or two main difficulties in state of the art knowledge
% and briefly state how to approach those difficulties
Surveillance with pan-tilt cameras involves not only video processing but also controlling the pan and tilt angles. In this work ...
\section{Thesis Structure}
Chapter 1 introduces the problem to approach in the thesis, in particular presents a short discussion on the state of the art on ...
%
Chapter 2 presents ...
%
Chapter 3 describes ...
%
Chapter 4 provides an overview of the different experiments executed as well as the results attained.
%
Chapter 5 summarizes the work performed and highlights the main achievements in this work. Moreover, this chapter proposes further work to extend the activities described in this document.
The work described hereafter was partially published in (put ref here).
\chapter{Method 1}
\label{sec:meth1}
There is a large variety of segmentation algorithms...
\chapter{Method 2}
\label{sec:meth2}
One advantage of pan-tilt cameras with respect to fixed cameras is the capability of augmenting the surveyed area without adding extra complexity to the system...
\chapter{ Experiments }
This chapter describes the experiments performed to validate the methodologies presented and introduced in previous chapters. Four experiments were performed addressing the ...
\chapter{ Conclusion and Future Work}
The work described in this thesis...
Two main technical constraints were originally identified in this work, (i) ... and (ii) ...
In particular we studied the ...
In future work we plan to extend the framework for multiple pan-tilt-camera scenarios, where questions like how to define regions of interest for a multiple pan-tilt-camera scene? or how to share information between the cameras? would arise.
\chapter{Appendix name}
\chapter{Appendix name}
@Article{Hutchinson96,
author = "S. Hutchinson and G. Hager and P. Corke",
title = "A tutorial on visual servo control",
journal = "IEEE Transactions on Robotics and Automation",
year = "1996",
volume = "12",
number = "5",
pages = "651--670",
}
@InProceedings{Smith05,
title = "Evaluating Multi-Object Tracking",
author = "K. Smith and D. Gatica-Perez and J. Odobez, S. Ba",
booktitle= {Comp. Vision and Patt. Recogn. - Workshops},
year={2005},
xpages={}
}
@INPROCEEDINGS{Sinha04,
AUTHOR = "S. N. Sinha and M. Pollefeys",
TITLE = "Towards Calibrating a Pan-Tilt-Zoom Camera Network",
BOOKTITLE = "Department of Computer Science, University of North Carolina at Chapel Hill",
YEAR = "2006",
xmonth = {Apr},
pages = {91-110},
xaddress = {Beijing, China},
}
@Article{Brown07,
author = "M. Brown and D. Lowe",
title = "Automatic panoramic image stitching using invariant features",
journal = "Int. Journal of Comp. Vision",
year = "2007",
volume = "74",
number = "1",
pages = "59--73",
}
@Book{Hartley00,
author = "R. Hartley and A. Zisserman",
title = "Multiple View Geometry in Computer Vision",
publisher = "Cambridge University Press",
year = "2000",
}
@InProceedings{Haritaoglu98,
title = "W4 :Who? when? where? what? a real time system for detecting and tracking people",
author = "I. Haritaoglu and D. Harwood and L. S. Davis",
booktitle= {IEEE Int. Conf. Automatic Face and Gesture Recognition},
year={1998},
pages={222-227}
}
@Article{Wren97,
author = "C. Wren and A. Azarbayejani and T. Darrell and A. Pentland",
title = "Pfinder: real-time tracking of the human body",
journal = "IEEE Trans. Pattern Anal. Machine Intell.",
year = "1997",
volume = "19",
number = "7",
pages = "780-785",
}
@misc{VRML_www,
author = {W3 Consortium},
title = {Virtual Reality Modeling Language},
howpublished = "\url{http://www.w3.org/MarkUp/VRML/}"
}
@misc{Bouguet,
author = {Jean-Yves Bouguet},
title = {Camera Calibration Toolbox for Matlab},
howpublished = "\url{http://www.vision.caltech.edu/bouguetj}"
}
%
% Dissertao: (colocar aqui nome prprio + apelido)
% July 2018
%
% Sites / docs to check:
%
% MEEC:
% https://fenix.tecnico.ulisboa.pt/cursos/meec/documentos-e-regulamentos
% https://fenix.tecnico.ulisboa.pt/downloadFile/845043405460433/DMEEC201803.pdf
%
% IST:
% https://graduacao.tecnico.ulisboa.pt/alunos/dissertacao-de-mestrado/
% https://graduacao.tecnico.ulisboa.pt/files/sites/54/guia-de-preparacao-da-dissertacao-1516.pdf
% https://tecnico.ulisboa.pt/pt/recursos/documentos-importantes/
% --------------------------------------------------------- CONFIG:
\documentclass[a4paper,10pt]{book}
%\usepackage[latin1]{inputenc} % incluir uma imagem postscript
%\usepackage[ansinew]{inputenc} % acentuao automtica
\usepackage[portuguese,english]{babel} % titles in last chosen language
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{times} % poe letra bonita em PDF
%\usepackage{indentfirst} % indenta o primeiro paragrafo de cada seco
%\usepackage[dvips]{graphicx}
\usepackage{graphicx}
\graphicspath{{./}{../figs/}} % please create a folder ../figs/.
\usepackage{subfigure} % figuras paralelas ou seguidas com mesma legenda
%\usepackage{epstopdf}
\usepackage{color}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
%\usepackage[colorlinks=false, pdfstartview=FitV, linkcolor=blue, citecolor=blue, urlcolor=blue,breaklinks=true]{hyperref}
%\usepackage{subeqn} % subnumerar equaes
\usepackage{url}
\usepackage{glossaries}
%\usepackage{hyperref} % poe bookmarks no ficheiro pdf
%\PassOptionsToPackage{linktocpage}{hyperref}
\usepackage[linktocpage=true]{hyperref}
\usepackage{setspace} % pacote de espaamento
\usepackage{datetime}
\onehalfspacing % espaamento de 1,5 entre linhas
%\doublespacing
%\vspace{.5cm} % como por um espaamento vertical
\textwidth = 16cm % largura do texto na folha
\textheight = 22cm %
\oddsidemargin = 0cm % margens na folha
\evensidemargin = 0cm %
\marginparwidth = 0pt % margem de paragrafos
%\usepackage[top=25mm, bottom=25mm, left=25mm, right=25mm]{geometry}
\usepackage{fancyhdr} % cabealhos
\pagestyle{fancy} % cabealhos do captulo e seco em minsculas
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{} % apagar as configuraes actuais
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\rightmark}
\fancyhead[RE]{\bfseries\leftmark}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{4.5pt} % fazer espao para o risco
\fancypagestyle{plain}{%
\fancyhead{} % Tirar cabealhos de pgina vazias
\renewcommand{\headrulewidth}{0pt} % e o risco
}
%\includeonly{sec2_meth1}
%\includeonly{sec3_meth2}
%\includeonly{sec4_experiments}
% --------------------------------------------------------- MAIN:
\begin{document}
\include{msc_thesis_title} \onehalfspacing
\cleardoublepage \pagenumbering{roman}%
\include{sec0_abstract}
\tableofcontents % main index
\listoffigures
\listoftables
\cleardoublepage \pagenumbering{arabic}
\include{sec1_intro}
\include{sec2_meth1}
\include{sec3_meth2}
\include{sec4_experiments}
\include{sec5_conclusion}
\appendix
\include{secx0_app}
\include{secx1_app}
\bibliographystyle{plain}
\bibliography{secz}
\end{document}
latex msc_thesis
latex msc_thesis
bibtex msc_thesis
latex msc_thesis
bibtex msc_thesis
latex msc_thesis
dvips msc_thesis.dvi
ps2pdf msc_thesis.ps
pause
%-------------------------------------------
% cover page
%-------------------------------------------
\thispagestyle{empty}
% -- Option 1/2 large letters:
\newcommand{\myfontA}{\LARGE} \newcommand{\myfontB}{\Large} \newcommand{\myfontC}{\large}
% -- Option 2/2 large letters but not so large:
%\newcommand{\myfontA}{\Large} \newcommand{\myfontB}{\large} \newcommand{\myfontC}{\normalsize}
\singlespace
% Logo -------------------------------------------
$ $ \vspace{-3cm}
\begin{minipage}[t]{5cm}
%\includegraphics[width=\linewidth]{istlogo2.eps} % high res
\includegraphics[width=5cm]{istlogo3.eps} % IST logo 2013
\end{minipage}
%\begin{minipage}[t]{12.5cm}
%\centering
% \vspace*{-1.5cm}
% {{\myfontC \bf UNIVERSIDADE TCNICA DE LISBOA}\\
% {\myfontC \bf \vspace{0.2cm} INSTITUTO SUPERIOR TCNICO}}
%\end{minipage}
\vspace*{-0.5cm} % \hspace*{-1.3cm}
\begin{center}
$ $ \\
\end{center}
%% Boneques ------------------------------------------------
%\begin{figure}[hbtp]
% \centerline{\includegraphics[height=4cm]{cover.eps}}
% \vspace{4mm}
%\end{figure}
% alternative to the Boneques:
\vfill
%% Title --------------------------------------------------
\onehalfspace
\begin{center}
\myfontA
{\bf Title of the Thesis}
\end{center}
%\vspace{7mm}
\singlespace
%% Author ---------------------------------------------------
\vfill
\begin{center}
% place here the full name, i.e first, middle and last names
{\myfontB \bf Full name} \\
%(Licenciado)
\end{center}
%% Subject -------------------------------------------------
\vfill
%% Use the following if thesis title/contents is in Portuguese
%\onehalfspace
%\begin{center}
% {Dissertao para a obteno do Grau de Mestre em}\\
% $ $ \\
% {Engenharia Electrotcnica e de Computadores}
%\end{center}
%\singlespace
%% Use the following if thesis title/contents is in English
\onehalfspace
\begin{center}
{\myfontC Thesis to obtain the Master of Science Degree in}\\
$ $ \\
{\myfontB \bf Electrical and Computer Engineering}
\end{center}
\singlespace
%% Supervisor & juri ----------------------------------------------
\vfill
\onehalfspace
%% --- Ttulo da tese em Portugus => jri em Portugus
%\begin{center}
%{\myfontB \bf Jri}
% $ $ \\
%\myfontC
% $ $ & {} \\
% { Presidente: Professor } \\
% { Orientador: Professor Jos Antnio da Cruz Pinto Gaspar} \\
% { Co-orientador: Doutor } \\
% { Vogal: Professor } \\
%% { Vogal: } \\ % in case of more than one
%\end{center}
\begin{center}
{\myfontB \bf Supervisor} \\
%{\myfontB \bf Supervisors} \\
$ $ \\
\myfontC
{ Professor Jos Antnio da Cruz Pinto Gaspar } \\
%{ Professor } \\
\end{center}
\vfill
%% --- English title => committee in English
\begin{center}
{\myfontB \bf Examination Committee} \\
$ $ \\
\myfontC
{ Chairperson: \emph{to be filled later} } \\
{ Supervisor: Professor Jos Antnio da Cruz Pinto Gaspar} \\
{ Member: \emph{to be filled later} } \\
% {Member: } \\ % in case of more than one
\end{center}
\singlespace
%% Date ----------------------------------------------------
\vfill
\onehalfspace \centerline{\myfontB \bf \monthname \, \the\year} \singlespace
\pagebreak \thispagestyle{empty} $ $ \pagebreak
\chapter*{Declaration}
\addcontentsline{toc}{chapter}{Declaration}
I declare that this document is an original work of my own authorship and that it fulfills all the
requirements of the Code of Conduct and Good Practices of the Universidade de Lisboa.
% -------------------------------------------------------------------------------
% NOTE1: An acknowledgments section is read by everyone, including people that knows nothing about the thesis AND no one revises it (even the supervisors).
% NOTE2: In order to include and acknowledgments section, please uncomment the next lines.
%
%\chapter*{Agradecimentos}
%\addcontentsline{toc}{chapter}{Agradecimentos}
%
%É com bastante satisfação que escrevo esta secção por finalmente ter vencido uma meta importante...
% -------------------------------------------------------------------------------
\chapter*{Resumo}
\addcontentsline{toc}{chapter}{Resumo}
(Resumo em Português)
\vspace{1cm}\noindent\textbf{Palavras chave:}
Câmara pan tilt zoom, ...
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
Although it is clear the intrinsic advantages of pan-tilt cameras with respect to fixed cameras, modern video surveillance systems are still based on networks of fixed cameras...
\vspace{1cm}\noindent\textbf{Keywords:}
Pan and Tilt Zoom Camera, ...
\chapter{Introduction}
Many modern video surveillance systems encompass pan-tilt cameras due to the flexibility they provide in selecting the fields-of-view, as compared to using just fixed cameras. Although patent the great potential of using the pan-tilt cameras, one has to design pan and tilt controllers whose effectiveness directly impacts on the surveillance performance.
%
The work described within this dissertation ...
\section{Related Work}
Related work, e.g. a simple to use camera calibration toolbox \cite{Bouguet}.
Related work, on another relevant subject ...
\section{Problem Formulation}
% Identify one or two main difficulties in state of the art knowledge
% and briefly state how to approach those difficulties
Surveillance with pan-tilt cameras involves not only video processing but also controlling the pan and tilt angles. In this work ...
\section{Thesis Structure}
Chapter 1 introduces the problem to approach in the thesis, in particular presents a short discussion on the state of the art on ...
%
Chapter 2 presents ...
%
Chapter 3 describes ...
%
Chapter 4 provides an overview of the different experiments executed as well as the results attained.
%
Chapter 5 summarizes the work performed and highlights the main achievements in this work. Moreover, this chapter proposes further work to extend the activities described in this document.
The work described hereafter was partially published in (put ref here).
\chapter{Method 1}
\label{sec:meth1}
There is a large variety of segmentation algorithms...
\chapter{Method 2}
\label{sec:meth2}
One advantage of pan-tilt cameras with respect to fixed cameras is the capability of augmenting the surveyed area without adding extra complexity to the system...
\chapter{ Experiments }
This chapter describes the experiments performed to validate the methodologies presented and introduced in previous chapters. Four experiments were performed addressing the ...
\chapter{ Conclusion and Future Work}
The work described in this thesis...
Two main technical constraints were originally identified in this work, (i) ... and (ii) ...
In particular we studied the ...
In future work we plan to extend the framework for multiple pan-tilt-camera scenarios, where questions like how to define regions of interest for a multiple pan-tilt-camera scene? or how to share information between the cameras? would arise.
\chapter{Appendix name}
\chapter{Appendix name}
@Article{Hutchinson96,
author = "S. Hutchinson and G. Hager and P. Corke",
title = "A tutorial on visual servo control",
journal = "IEEE Transactions on Robotics and Automation",
year = "1996",
volume = "12",
number = "5",
pages = "651--670",
}
@InProceedings{Smith05,
title = "Evaluating Multi-Object Tracking",
author = "K. Smith and D. Gatica-Perez and J. Odobez, S. Ba",
booktitle= {Comp. Vision and Patt. Recogn. - Workshops},
year={2005},
xpages={}
}
@INPROCEEDINGS{Sinha04,
AUTHOR = "S. N. Sinha and M. Pollefeys",
TITLE = "Towards Calibrating a Pan-Tilt-Zoom Camera Network",
BOOKTITLE = "Department of Computer Science, University of North Carolina at Chapel Hill",
YEAR = "2006",
xmonth = {Apr},
pages = {91-110},
xaddress = {Beijing, China},
}
@Article{Brown07,
author = "M. Brown and D. Lowe",
title = "Automatic panoramic image stitching using invariant features",
journal = "Int. Journal of Comp. Vision",
year = "2007",
volume = "74",
number = "1",
pages = "59--73",
}
@Book{Hartley00,
author = "R. Hartley and A. Zisserman",
title = "Multiple View Geometry in Computer Vision",
publisher = "Cambridge University Press",
year = "2000",
}
@InProceedings{Haritaoglu98,
title = "W4 :Who? when? where? what? a real time system for detecting and tracking people",
author = "I. Haritaoglu and D. Harwood and L. S. Davis",
booktitle= {IEEE Int. Conf. Automatic Face and Gesture Recognition},
year={1998},
pages={222-227}
}
@Article{Wren97,
author = "C. Wren and A. Azarbayejani and T. Darrell and A. Pentland",
title = "Pfinder: real-time tracking of the human body",
journal = "IEEE Trans. Pattern Anal. Machine Intell.",
year = "1997",
volume = "19",
number = "7",
pages = "780-785",
}
@misc{VRML_www,
author = {W3 Consortium},
title = {Virtual Reality Modeling Language},
howpublished = "\url{http://www.w3.org/MarkUp/VRML/}"
}
@misc{Bouguet,
author = {Jean-Yves Bouguet},
title = {Camera Calibration Toolbox for Matlab},
howpublished = "\url{http://www.vision.caltech.edu/bouguetj}"
}
\documentclass[a4paper,journal]{IEEEtran} % 10pt
%\documentclass[a4paper,conference]{IEEEtran} % 10pt
%\documentclass[a4paper,12pt,conference]{IEEEtran}
%\IEEEoverridecommandlockouts % This command is only needed if you want to use the \thanks command
%\overrideIEEEmargins % provide a wider margin on the binding edge
% See the \addtolength command later in the file to balance the column lengths
% on the last page of the document
\usepackage[utf8]{inputenc}
\usepackage{times}
\usepackage{graphicx}
\graphicspath{{./}{../figs/}}
%\usepackage{subfigure}
\usepackage{amssymb}
\usepackage{amsmath}
%\usepackage{amsthm}
\usepackage{url}
%\usepackage{glossary}
%\usepackage[affil-it]{authblk}
%\usepackage[linktocpage=true]{hyperref}
%\usepackage{setspace}
%\usepackage{xspace}
\title{Thesis Report Title}
\author{
%{\parbox{\linewidth}{\centering Author1, Jos\'e Gaspar} } \\
{\parbox{\linewidth}{\centering Author1, Author2} } \\
\parbox{\linewidth} {\centering
%Institute for Systems and Robotics, Instituto Superior T\'ecnico / UTL, Lisbon, Portugal\\
Instituto Superior T\'ecnico / UTL, Lisbon, Portugal\\
{\tt\small email1, email2}}
%\thanks{This work has been partially supported by ... .}
} % end of author{}
\begin{document}
\maketitle
\input{sec0_abstract}
\input{sec1_intro}
\input{sec2_meth1}
\input{sec3_meth2}
\input{sec4_experiments}
\input{sec5_conclusion}
\appendix
\input{secx0_app}
\input{secx1_app}
\bibliographystyle{plain}
\bibliography{secz}
\end{document}
@echo off
set file_main=msc_report
latex %file_main%
latex %file_main%
bibtex %file_main%
latex %file_main%
bibtex %file_main%
latex %file_main%
dvips %file_main%.dvi
ps2pdf %file_main%.ps %file_main%.pdf
pause
% NOTE1: An acknowledgments subsection is read by everyone, including people that knows nothing about the thesis AND no one revises it (even the supervisors).
% NOTE2: In order to include and acknowledgments subsection, please uncomment the next lines.
%
%\section*{Agradecimentos}
%\addcontentsline{toc}{section}{Agradecimentos}
%
%É com bastante satisfação que escrevo esta secção por finalmente ter vencido uma meta importante...
% -------------------------------------------------------------------------------
%\section*{Resumo}
%\addcontentsline{toc}{section}{Resumo}
%
%(Resumo em Português)
%
%
%\vspace{1cm}\noindent\textbf{Palavras chave:}
%Câmara pan tilt zoom, ...
\section*{Abstract}
\addcontentsline{toc}{section}{Abstract}
Although it is clear the intrinsic advantages of pan-tilt cameras with respect to fixed cameras, modern video surveillance systems are still based on networks of fixed cameras...
\vspace{1cm}\noindent\textbf{Keywords:}
Pan and Tilt Zoom Camera, ...
\section{Introduction}
Many modern video surveillance systems encompass pan-tilt cameras due to the flexibility they provide in selecting the fields-of-view, as compared to using just fixed cameras. Although patent the great potential of using the pan-tilt cameras, one has to design pan and tilt controllers whose effectiveness directly impacts on the surveillance performance.
%
The work described within this dissertation ...
\subsection{Related Work}
Related work, e.g. a simple to use camera calibration toolbox \cite{Bouguet}.
Related work, on another relevant subject ...
\subsection{Problem Formulation}
% Identify one or two main difficulties in state of the art knowledge
% and briefly state how to approach those difficulties
Surveillance with pan-tilt cameras involves not only video processing but also controlling the pan and tilt angles. In this work ...
\subsection{Report Structure}
Section 1 introduces the problem to approach in the thesis, in particular presents a short discussion on the state of the art on ...
%
Section 2 presents ...
%
Section 3 describes ...
%
Section 4 provides an overview of the different experiments executed as well as the results attained.
%
Section 5 summarizes the work performed and highlights the main achievements in this work. Moreover, this section proposes further work to extend the activities described in this document.
The work described hereafter was partially published in (put ref here).
\section{Method 1}
\label{sec:meth1}
There is a large variety of segmentation algorithms...
\section{Method 2}
\label{sec:meth2}
One advantage of pan-tilt cameras with respect to fixed cameras is the capability of augmenting the surveyed area without adding extra complexity to the system...
\section{ Experiments }
This section describes the experiments performed to validate the methodologies presented and introduced in previous sections. Four experiments were performed addressing the ...
\section{ Conclusion and Future Work}
The work described in this thesis...
Two main technical constraints were originally identified in this work, (i) ... and (ii) ...
In particular we studied the ...
In future work we plan to extend the framework for multiple pan-tilt-camera scenarios, where questions like how to define regions of interest for a multiple pan-tilt-camera scene? or how to share information between the cameras? would arise.
\section{Appendix name}
\section{Appendix name}
@Article{Hutchinson96,
author = "S. Hutchinson and G. Hager and P. Corke",
title = "A tutorial on visual servo control",
journal = "IEEE Transactions on Robotics and Automation",
year = "1996",
volume = "12",
number = "5",
pages = "651--670",
}
@InProceedings{Smith05,
title = "Evaluating Multi-Object Tracking",
author = "K. Smith and D. Gatica-Perez and J. Odobez, S. Ba",
booktitle= {Comp. Vision and Patt. Recogn. - Workshops},
year={2005},
xpages={}
}
@INPROCEEDINGS{Sinha04,
AUTHOR = "S. N. Sinha and M. Pollefeys",
TITLE = "Towards Calibrating a Pan-Tilt-Zoom Camera Network",
BOOKTITLE = "Department of Computer Science, University of North Carolina at Chapel Hill",
YEAR = "2006",
xmonth = {Apr},
pages = {91-110},
xaddress = {Beijing, China},
}
@Article{Brown07,
author = "M. Brown and D. Lowe",
title = "Automatic panoramic image stitching using invariant features",
journal = "Int. Journal of Comp. Vision",
year = "2007",
volume = "74",
number = "1",
pages = "59--73",
}
@Book{Hartley00,
author = "R. Hartley and A. Zisserman",
title = "Multiple View Geometry in Computer Vision",
publisher = "Cambridge University Press",
year = "2000",
}
@InProceedings{Haritaoglu98,
title = "W4 :Who? when? where? what? a real time system for detecting and tracking people",
author = "I. Haritaoglu and D. Harwood and L. S. Davis",
booktitle= {IEEE Int. Conf. Automatic Face and Gesture Recognition},
year={1998},
pages={222-227}
}
@Article{Wren97,
author = "C. Wren and A. Azarbayejani and T. Darrell and A. Pentland",
title = "Pfinder: real-time tracking of the human body",
journal = "IEEE Trans. Pattern Anal. Machine Intell.",
year = "1997",
volume = "19",
number = "7",
pages = "780-785",
}
@misc{VRML_www,
author = {W3 Consortium},
title = {Virtual Reality Modeling Language},
howpublished = "\url{http://www.w3.org/MarkUp/VRML/}"
}
@misc{Bouguet,
author = {Jean-Yves Bouguet},
title = {Camera Calibration Toolbox for Matlab},
howpublished = "\url{http://www.vision.caltech.edu/bouguetj}"
}
\documentclass[10pt,twocolumn]{IEEEtran}
% replace the keyword "twocolumn" by "onecolumn" if you want a single column document
% ------------------------------------------------------------------------------------
% If you are using *TeXnicCenter*, already configured with profiles as "LaTeX -> PDF",
% do the following to create a project and have the compile hotkey Ctrl+F5:
% Project -> Create with active file as the main file
% Do not forget to select "Uses BibTeX"
% ------------------------------------------------------------------------------------
% some useful packages:
\usepackage{graphicx}
\graphicspath{{./}{../figs/}}
\usepackage{url}
\begin{document}
\title{Title}
\author{Author}
\maketitle
\begin{abstract}
Abstract text.
\end{abstract}
\section{Introduction}
Introduction text, containing one citation to a very well known Computer Vision Book~\cite{Hartley00}, in order to indicate how to do citations.
\section{Second Section}
Text for the second section.
\subsection{First Subsection}
\subsection{Second Subsection}
\bibliographystyle{plain}
\bibliography{../project/secz}
% replace "project" by "thesis" if you are doing the thesis
\end{document}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment