-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
course project final changes, fix styling
- Loading branch information
Showing
17 changed files
with
93 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
\chapter*{ЗАКЛЮЧЕНИЕ} | ||
\addcontentsline{toc}{chapter}{ЗАКЛЮЧЕНИЕ} | ||
|
||
В процессе выполнения предыдущей работы было выявлено, что метод Structure from Motion не подходит для работы в реальном времени на борту беспилотного летательного аппарата. | ||
|
||
В процессе выполнения данной работы были получены следующие результаты: | ||
|
||
\begin{itemize} | ||
\item выявлены требования и поставлена задача; | ||
\item изучены и проанализированы основные алгоритмы компьютерного зрения, основанные на особых точках; | ||
\item разработан простейший алгоритм решения задачи поиска; | ||
\item подготовлены тестовые данные, проведены эксперименты; | ||
\item спроектировано и реализовано приложение, позволяющее строить 3D модели и осуществлять поиск по ним. | ||
\item рассмотрен новый метод Simultaneous Localization and Mapping; | ||
\item изучены и проанализированы различные реализации SLAM. | ||
\end{itemize} | ||
|
||
Полученные теоретические знания и практические навыки, а также результаты экспериментов являются хорошей основой для будущих исследований. | ||
|
||
Выбранная область и проблема позволяют не останавливаться на достигнутом и, в дальнейшем, продолжить работу над задачей. | ||
Полученные теоретические знания и практические навыки, а также результаты экспериментов являются хорошей основой для будущей работы. В результате исследования выявлено, что последние SLAM алгоритмы являются идеальными кандидатами, для решения задачи навигации в режиме реального времени на борту беспилотного летательного аппарата. | ||
\newpage |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
\chapter{ОБЗОР СУЩЕСТВУЮЩИХ АЛГОРИТМОВ И МЕТОДОВ НАВИГАЦИИ} | ||
|
||
\input{theory/common.tex} | ||
\input{theory/sfm.tex} | ||
\input{theory/sift.tex} | ||
\input{theory/feature-based-comparison.tex} | ||
\input{theory/bundle-adjustment.tex} | ||
\input{theory/sfm-conclusions.tex} | ||
\input{theory/slam.tex} | ||
\input{theory/slams-comparison.tex} | ||
\input{theory/conclusions.tex} | ||
\input{theory/slam-conclusions.tex} | ||
|
||
\newpage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
\section{Выводы} | ||
|
||
В этой главе был рассмотрен метод построения 3d реконструкции из набора снимков, называемый Structure from Motion. Были подробно разобраны составляющие его этапы и проанализированы различные алгоритмы, которые могут использоваться на каждом шаге метода. Среди рассмотренных дескрипторов и детекторов можно выделить SIFT - как самый точный и надёжный, и современный ORB - как быстрый, но в то же время достаточно устойчивый. | ||
|
||
Как показали практические эксперименты Structure from Motion больше применим для офлайн построения больших карт местности и 3d реконструкций, чем для работы в реальном времени на борту. Он точный, но медленный. Так как для успешной навигации требуется онлайн работа, то это приводит к необходимости проведения дальнейших исследований и поиска подходящего метода. Метод SLAM будет рассмотрен в следующей главе. |
Oops, something went wrong.