Skip to content

Commit

Permalink
Merge 0.3 develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoulon committed Dec 22, 2013
2 parents 01d28e5 + 6c94f22 commit e7cfbd4
Show file tree
Hide file tree
Showing 361 changed files with 34,691 additions and 6,372 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "src/dependencies/glfw"]
path = src/dependencies/glfw
url = git://github.com/elmindreda/glfw.git
[submodule "src/dependencies/OpenExif"]
path = src/dependencies/OpenExif
url = https://github.com/openMVG-thirdparty/OpenExif.git
4 changes: 2 additions & 2 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Setup the required external library.
$ cmake -DCMAKE_BUILD_TYPE=RELEASE . ../openMVG/src/

If you want have an IDE openable project with codeblocks:
$ cmake -G "CodeBlocks - Unix Makefiles" -DCMAKE_BUILD_TYPE=RELEASE . ../openmvg/src/
$ cmake -G "CodeBlocks - Unix Makefiles" -DCMAKE_BUILD_TYPE=RELEASE . ../openMVG/src/

Compile the project
$ make
Expand Down Expand Up @@ -77,6 +77,6 @@ Mac compilation
$ cd ..
$ mkdir openMVG_Build
$ cd openMVG_Build
$ cmake -DCMAKE_BUILD_TYPE=RELEASE -G "Xcode" . ../openmvg/src/
$ cmake -DCMAKE_BUILD_TYPE=RELEASE -G "Xcode" . ../openMVG/src/
$ xcodebuild -configuration Release

9 changes: 9 additions & 0 deletions docs/sphinx/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- HTML documentation is generated from .rst files with Sphinx

$ sphinx-build -b html ./sphinx/rst OutDir/sphinx/html
Or use the target doc in the cmake build system
$ make doc

Sphinx setup:
Please follow the http://sphinx-doc.org/latest/install.html guide.

9 changes: 9 additions & 0 deletions docs/sphinx/rst/FAQ/FAQ.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
############################
FAQ
############################

.. toctree::
:maxdepth: 1

questions

4 changes: 4 additions & 0 deletions docs/sphinx/rst/FAQ/questions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*******************
To fill
*******************

26 changes: 26 additions & 0 deletions docs/sphinx/rst/_themes/armstrong/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Copyright (c) 2011 Bay Citizen & Texas Tribune

Original ReadTheDocs.org code
Copyright (c) 2010 Charles Leifer, Eric Holscher, Bobby Grace

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

11 changes: 11 additions & 0 deletions docs/sphinx/rst/_themes/armstrong/globaltoc.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{#
basic/globaltoc.html
~~~~~~~~~~~~~~~~~~~~

Sphinx sidebar template: global table of contents.

:copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
#}
<h3><a href="{{ pathto(master_doc) }}">{{ _('OpenMVG library') }}</a></h3>
{{ toctree() }}
80 changes: 80 additions & 0 deletions docs/sphinx/rst/_themes/armstrong/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
{% extends "basic/layout.html" %}

{% set script_files = script_files + [pathto("_static/searchtools.js", 1)] %}

{% block htmltitle %}
{{ super() }}

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>

{% endblock %}


{%- macro sidebar() %}
{%- if render_sidebar %}
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
{%- block sidebarlogo %}
{%- if logo %}
<p class="logo"><a href="{{ pathto(master_doc) }}">
<img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
</a></p>
{%- endif %}
{%- endblock %}
{%- if sidebars != None %}
{#- new style sidebar: explicitly include/exclude templates #}
{%- for sidebartemplate in sidebars %}
{%- include sidebartemplate %}
{%- endfor %}
{%- else %}
{#- old style sidebars: using blocks -- should be deprecated #}
{%- block sidebartoc %}
{%- include "globaltoc.html" %}
{%- endblock %}
{%- block sidebarsourcelink %}
{%- include "sourcelink.html" %}
{%- endblock %}
{%- if customsidebar %}
{%- include customsidebar %}
{%- endif %}
{%- block sidebarsearch %}
{%- include "searchbox.html" %}
{%- endblock %}
{%- endif %}
</div>
</div>
{%- endif %}
{%- endmacro %}


{% block footer %}
<div class="footer">
{%- if show_copyright %}
{%- if hasdoc('copyright') %}
{% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
{%- else %}
{% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
{%- endif %}
{%- endif %}
{%- if last_updated %}
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
{%- endif %}
</div>


{% if theme_analytics_code %}
<!-- Google Analytics Code -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '{{ theme_analytics_code }}']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
{% endif %}

{% endblock %}
65 changes: 65 additions & 0 deletions docs/sphinx/rst/_themes/armstrong/rtd-themes.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
[theme]
inherit = default
stylesheet = rtd.css
pygment_style = default
show_sphinx = False

[options]
show_rtd = True

white = #ffffff
almost_white = #f8f8f8
barely_white = #f2f2f2
dirty_white = #eeeeee
almost_dirty_white = #e6e6e6
dirtier_white = #dddddd
lighter_gray = #cccccc
gray_a = #aaaaaa
gray_9 = #999999
light_gray = #888888
gray_7 = #777777
gray = #666666
dark_gray = #444444
gray_2 = #222222
black = #111111
light_color = #e8ecef
light_medium_color = #DDEAF0
medium_color = #8ca1af
medium_color_link = #86989b
medium_color_link_hover = #a6b8bb
dark_color = #465158

h1 = #000000
h2 = #465158
h3 = #6c818f

link_color = #444444
link_color_decoration = #CCCCCC

medium_color_hover = #697983
green_highlight = #8ecc4c


positive_dark = #609060
positive_medium = #70a070
positive_light = #e9ffe9

negative_dark = #900000
negative_medium = #b04040
negative_light = #ffe9e9
negative_text = #c60f0f

ruler = #abc

viewcode_bg = #f4debf
viewcode_border = #ac9

highlight = #ffe080

code_background = #eeeeee

background = #465158
background_link = #ffffff
background_link_half = #ffffff
background_text = #eeeeee
background_text_link = #86989b
Loading

0 comments on commit e7cfbd4

Please sign in to comment.