| 1 | \documentclass{ut-thesis} |
|---|
| 2 | %\documentclass[draft,12pt]{ut-thesis} |
|---|
| 3 | |
|---|
| 4 | \newcommand{\doctype}{chapter\xspace} |
|---|
| 5 | |
|---|
| 6 | \newcommand{\thesisonly}[1]{#1} |
|---|
| 7 | |
|---|
| 8 | \input{aastex_defines} |
|---|
| 9 | \input{preamble} |
|---|
| 10 | |
|---|
| 11 | \degree{Doctor of Philosophy} |
|---|
| 12 | \department{Computer Science} |
|---|
| 13 | \gradyear{2009} |
|---|
| 14 | \author{Dustin Lang} |
|---|
| 15 | \title{\an: Automatic recognition and calibration of astronomical images} |
|---|
| 16 | |
|---|
| 17 | \setcounter{tocdepth}{2} |
|---|
| 18 | |
|---|
| 19 | \begin{document} |
|---|
| 20 | |
|---|
| 21 | \begin{preliminary} |
|---|
| 22 | \maketitle |
|---|
| 23 | |
|---|
| 24 | %% (At most 150 words for M.Sc. or 350 words for Ph.D.) |
|---|
| 25 | \begin{abstract} |
|---|
| 26 | We present \an, a system for automatically recognizing and |
|---|
| 27 | astrometrically calibrating astronomical images, using the information |
|---|
| 28 | in the image pixels alone. The system is based on the \emph{geometric |
|---|
| 29 | hashing} approach in computer vision: We use the geometric |
|---|
| 30 | relationships between low-level features (stars and galaxies), which |
|---|
| 31 | are relatively indistinctive, to create geometric features that are |
|---|
| 32 | distinctive enough that we can recognize images that cover less than |
|---|
| 33 | one-millionth of the area of the sky. The geometric features are used |
|---|
| 34 | to rapidly generate hypotheses about the location---the pointing, |
|---|
| 35 | scale, and rotation---of an image on the sky. Each hypothesis is then |
|---|
| 36 | evaluated in a Bayesian decision theory framework in order to ensure |
|---|
| 37 | that most correct hypotheses are accepted while the false positive |
|---|
| 38 | rate is kept close to zero. The feature-matching process is |
|---|
| 39 | accelerated by using a new fast and space-efficient \kdtree |
|---|
| 40 | implementation. The \an system is available via a web interface, and |
|---|
| 41 | the software is released under an open-source license. It is being |
|---|
| 42 | used by hundreds of individual astronomers and several large-scale |
|---|
| 43 | projects, so we have at least partially achieved our goal of helping |
|---|
| 44 | ``to organize, annotate and make searchable all the world's |
|---|
| 45 | astronomical information.'' |
|---|
| 46 | \end{abstract} |
|---|
| 47 | |
|---|
| 48 | %\begin{dedication} |
|---|
| 49 | %Dedication. |
|---|
| 50 | %\end{dedication} |
|---|
| 51 | |
|---|
| 52 | %\newpage |
|---|
| 53 | |
|---|
| 54 | \begin{acknowledgements} |
|---|
| 55 | [to be written] |
|---|
| 56 | % -Sam |
|---|
| 57 | % -Hogg |
|---|
| 58 | % -Stumm, Keir, Astrometry.net team, testers |
|---|
| 59 | % -Iain |
|---|
| 60 | % -Family |
|---|
| 61 | \end{acknowledgements} |
|---|
| 62 | |
|---|
| 63 | \tableofcontents |
|---|
| 64 | |
|---|
| 65 | %\listoftables |
|---|
| 66 | %\listoffigures |
|---|
| 67 | |
|---|
| 68 | \end{preliminary} |
|---|
| 69 | |
|---|
| 70 | \numberparagraphs |
|---|
| 71 | |
|---|
| 72 | \chapter{Introduction} |
|---|
| 73 | \graphicspath{{figs-review/}} |
|---|
| 74 | \include{review} |
|---|
| 75 | |
|---|
| 76 | \chapter[\antitle: recognizing astronomical images] |
|---|
| 77 | {\an: recognition of arbitrary astronomical images% |
|---|
| 78 | \footnote{This chapter was originally prepared as a manuscript |
|---|
| 79 | by me, David~W.~Hogg, Keir~Mierle, Michael~Blanton, and |
|---|
| 80 | Sam~Roweis.}} |
|---|
| 81 | \label{chap:techreport} |
|---|
| 82 | \graphicspath{{figs-techreport/}} |
|---|
| 83 | \include{tech-report} |
|---|
| 84 | |
|---|
| 85 | \chapter[Verifying an astrometric alignment] |
|---|
| 86 | {Verifying a proposed alignment between astronomical images} |
|---|
| 87 | \label{chap:verify} |
|---|
| 88 | \graphicspath{{figs-verify/}} |
|---|
| 89 | \input{verify} |
|---|
| 90 | |
|---|
| 91 | \chapter[Efficient implementation of \kdtreestitle] |
|---|
| 92 | {Efficient implementation of the \kdtreetitle data structure% |
|---|
| 93 | \footnote{This chapter was originally prepared as a manuscript |
|---|
| 94 | by me, Keir Mierle, and Aeron Buchanan.}} |
|---|
| 95 | \label{chap:kdtree} |
|---|
| 96 | \graphicspath{{figs-kdtree/}} |
|---|
| 97 | \include{kdtree} |
|---|
| 98 | |
|---|
| 99 | \chapter{Conclusion} |
|---|
| 100 | \label{chap:conclusion} |
|---|
| 101 | \include{conclusion} |
|---|
| 102 | |
|---|
| 103 | \addcontentsline{toc}{chapter}{Bibliography} |
|---|
| 104 | |
|---|
| 105 | %% (change according to your preference) |
|---|
| 106 | \bibliographystyle{plain} |
|---|
| 107 | |
|---|
| 108 | \bibliography{thesis} |
|---|
| 109 | |
|---|
| 110 | \end{document} |
|---|