mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.5 KiB
36 lines
1.5 KiB
15 years ago
|
{% extends "basic/layout.html" %}
|
||
|
|
||
14 years ago
|
{% set script_files = script_files + [pathto("_static/insertIframe.js", 1)] %}
|
||
|
|
||
15 years ago
|
{% block document %}
|
||
|
<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>
|
||
14 years ago
|
{% if theme_lang == 'c' %}
|
||
|
{% endif %}
|
||
|
{% if theme_lang == 'cpp' %}
|
||
|
<li>Try the <a href="http://opencv.willowgarage.com/wiki/Welcome?action=AttachFile&do=get&target=opencv_cheatsheet.pdf">Cheatsheet</a>.</li>
|
||
|
{% endif %}
|
||
|
{% if theme_lang == 'py' %}
|
||
|
<li>Try the <a href="cookbook.html">Cookbook</a>.</li>
|
||
|
{% endif %}
|
||
15 years ago
|
<li>Ask a question in the <a href="http://tech.groups.yahoo.com/group/OpenCV/">user group/mailing list</a>.</li>
|
||
|
<li>If you think something is missing or wrong in the documentation,
|
||
|
please file a <a href="https://code.ros.org/trac/opencv/wiki">bug report</a>.</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
||
|
</div>
|
||
|
{%- endif %}{% endif %}
|
||
|
</div>
|
||
|
{% endblock %}
|
||
|
|