2012-04-02 21:16:54 +08:00
|
|
|
{#
|
|
|
|
basic/layout.html
|
|
|
|
~~~~~~~~~~~~~~~~~
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-04-02 21:16:54 +08:00
|
|
|
Master layout template for Sphinx themes.
|
|
|
|
|
|
|
|
:copyright: Copyright 2007-2011 by the Sphinx team, see AUTHORS.
|
|
|
|
:license: BSD, see LICENSE for details.
|
|
|
|
#}
|
|
|
|
{%- block doctype -%}
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
{%- endblock %}
|
2010-10-25 17:54:47 +08:00
|
|
|
{% set script_files = script_files + [pathto("_static/insertIframe.js", 1)] %}
|
2012-04-02 21:16:54 +08:00
|
|
|
{%- set reldelim1 = reldelim1 is not defined and ' »' or reldelim1 %}
|
|
|
|
{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
|
|
|
|
{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
|
|
|
|
(sidebars != []) %}
|
|
|
|
{%- set url_root = pathto('', 1) %}
|
|
|
|
{%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
|
2012-07-03 23:31:13 +08:00
|
|
|
<script type="text/javascript">
|
2012-04-02 21:16:54 +08:00
|
|
|
|
2012-07-03 23:31:13 +08:00
|
|
|
var _gaq = _gaq || [];
|
|
|
|
_gaq.push(['_setAccount', 'UA-33108845-1']);
|
|
|
|
_gaq.push(['_setDomainName', 'opencv.org']);
|
|
|
|
_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>
|
2012-04-02 21:16:54 +08:00
|
|
|
{%- macro relbar() %}
|
|
|
|
<div class="related">
|
|
|
|
<h3>{{ _('Navigation') }}</h3>
|
|
|
|
<ul>
|
|
|
|
{%- for rellink in rellinks %}
|
|
|
|
<li class="right" {% if loop.first %}style="margin-right: 10px"{% endif %}>
|
|
|
|
<a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}"
|
|
|
|
{{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a>
|
|
|
|
{%- if not loop.first %}{{ reldelim2 }}{% endif %}</li>
|
|
|
|
{%- endfor %}
|
|
|
|
{%- block rootrellink %}
|
|
|
|
<li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}</li>
|
|
|
|
{%- endblock %}
|
|
|
|
{%- for parent in parents %}
|
|
|
|
<li><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li>
|
|
|
|
{%- endfor %}
|
|
|
|
{%- block relbaritems %} {% endblock %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{%- endmacro %}
|
|
|
|
|
|
|
|
{%- 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 %}
|
|
|
|
{%- block sidebarsearch %}
|
|
|
|
{%- include "searchbox.html" %}
|
|
|
|
{%- endblock %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- 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 "localtoc.html" %}
|
|
|
|
{%- endblock %}
|
|
|
|
{%- block sidebarrel %}
|
|
|
|
{%- include "relations.html" %}
|
|
|
|
{%- endblock %}
|
|
|
|
{%- block sidebarsourcelink %}
|
|
|
|
{%- include "sourcelink.html" %}
|
|
|
|
{%- endblock %}
|
|
|
|
{%- if customsidebar %}
|
|
|
|
{%- include customsidebar %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{%- endif %}
|
|
|
|
{%- endmacro %}
|
2010-10-25 17:54:47 +08:00
|
|
|
|
2012-04-02 21:16:54 +08:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset={{ encoding }}" />
|
|
|
|
{{ metatags }}
|
|
|
|
{%- if not embedded and docstitle %}
|
|
|
|
{%- set titlesuffix = " — "|safe + docstitle|e %}
|
|
|
|
{%- else %}
|
|
|
|
{%- set titlesuffix = "" %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- block htmltitle %}
|
|
|
|
<title>{{ title|striptags|e }}{{ titlesuffix }}</title>
|
|
|
|
{%- endblock %}
|
|
|
|
<link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
|
|
|
|
<link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
|
|
|
|
{%- for cssfile in css_files %}
|
|
|
|
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
|
|
|
|
{%- endfor %}
|
|
|
|
{%- if not embedded %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
var DOCUMENTATION_OPTIONS = {
|
|
|
|
URL_ROOT: '{{ url_root }}',
|
|
|
|
VERSION: '{{ release|e }}',
|
|
|
|
COLLAPSE_INDEX: false,
|
|
|
|
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
|
|
|
|
HAS_SOURCE: {{ has_source|lower }}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
{%- for scriptfile in script_files %}
|
|
|
|
<script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
|
|
|
|
{%- endfor %}
|
|
|
|
{%- if use_opensearch %}
|
|
|
|
<link rel="search" type="application/opensearchdescription+xml"
|
|
|
|
title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
|
|
|
|
href="{{ pathto('_static/opensearch.xml', 1) }}"/>
|
|
|
|
{%- endif %}
|
|
|
|
{%- if favicon %}
|
|
|
|
<link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
|
|
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- block linktags %}
|
|
|
|
{%- if hasdoc('about') %}
|
|
|
|
<link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" />
|
|
|
|
{%- endif %}
|
|
|
|
{%- if hasdoc('genindex') %}
|
|
|
|
<link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" />
|
|
|
|
{%- endif %}
|
|
|
|
{%- if hasdoc('search') %}
|
|
|
|
<link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" />
|
|
|
|
{%- endif %}
|
|
|
|
{%- if hasdoc('copyright') %}
|
|
|
|
<link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" />
|
|
|
|
{%- endif %}
|
|
|
|
<link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" />
|
|
|
|
{%- if parents %}
|
|
|
|
<link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}" />
|
|
|
|
{%- endif %}
|
|
|
|
{%- if next %}
|
|
|
|
<link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" />
|
|
|
|
{%- endif %}
|
|
|
|
{%- if prev %}
|
|
|
|
<link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" />
|
|
|
|
{%- endif %}
|
|
|
|
{%- endblock %}
|
|
|
|
{%- block extrahead %} {% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{%- block header %}{% endblock %}
|
|
|
|
|
|
|
|
{%- block relbar1 %}{{ relbar() }}{% endblock %}
|
|
|
|
|
|
|
|
{%- block content %}
|
|
|
|
{%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
|
|
|
|
|
|
|
|
<div class="document">
|
|
|
|
{% block document %}
|
2010-05-12 01:44:00 +08:00
|
|
|
<div class="documentwrapper">
|
|
|
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
|
|
|
<div class="bodywrapper">
|
|
|
|
{%- endif %}{% endif %}
|
|
|
|
<div class="body">
|
|
|
|
{% block body %} {% endblock %}
|
|
|
|
</div>
|
|
|
|
<div class="feedback">
|
|
|
|
<h2>Help and Feedback</h2>
|
|
|
|
You did not find what you were looking for?
|
|
|
|
<ul>
|
2010-12-01 07:35:03 +08:00
|
|
|
{% if theme_lang == 'c' %}
|
|
|
|
{% endif %}
|
|
|
|
{% if theme_lang == 'cpp' %}
|
2013-06-28 16:38:44 +08:00
|
|
|
<li>Try the <a href="http://docs.opencv.org/opencv_cheatsheet.pdf">Cheatsheet</a>.</li>
|
2010-12-01 07:35:03 +08:00
|
|
|
{% endif %}
|
|
|
|
{% if theme_lang == 'py' %}
|
|
|
|
<li>Try the <a href="cookbook.html">Cookbook</a>.</li>
|
|
|
|
{% endif %}
|
2012-10-15 21:56:59 +08:00
|
|
|
<li>Ask a question on the <a href="http://answers.opencv.org">Q&A forum</a>.</li>
|
2010-05-12 01:44:00 +08:00
|
|
|
<li>If you think something is missing or wrong in the documentation,
|
2012-03-11 22:35:46 +08:00
|
|
|
please file a <a href="http://code.opencv.org">bug report</a>.</li>
|
2010-05-12 01:44:00 +08:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
|
|
|
</div>
|
|
|
|
{%- endif %}{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
2012-04-02 21:16:54 +08:00
|
|
|
{%- block sidebar2 %}{{ sidebar() }}{% endblock %}
|
|
|
|
<div class="clearer"></div>
|
|
|
|
</div>
|
|
|
|
{%- endblock %}
|
|
|
|
|
|
|
|
{%- block relbar2 %}{{ relbar() }}{% endblock %}
|
|
|
|
|
|
|
|
{%- block footer %}
|
|
|
|
<div class="footer">
|
|
|
|
{%- if show_copyright %}
|
|
|
|
{%- if hasdoc('copyright') %}
|
|
|
|
{% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
|
|
|
|
{%- else %}
|
|
|
|
{% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if last_updated %}
|
|
|
|
{% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
|
|
|
|
{%- endif %}
|
|
|
|
{%- if show_sphinx %}
|
|
|
|
{% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
|
|
|
|
{%- endif %}
|
|
|
|
</div>
|
|
|
|
{%- endblock %}
|
|
|
|
</body>
|
|
|
|
</html>
|