mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 19:50:38 +08:00
be63ce723f
updated links in cheatsheet renamed directory for Mat tutorial changed links from willow docs to opencv.itseez.com, from Trac to current Redmine
36 lines
1.4 KiB
HTML
36 lines
1.4 KiB
HTML
{% extends "basic/layout.html" %}
|
|
|
|
{% set script_files = script_files + [pathto("_static/insertIframe.js", 1)] %}
|
|
|
|
{% 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>
|
|
{% 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 %}
|
|
<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="http://code.opencv.org">bug report</a>.</li>
|
|
</ul>
|
|
</div>
|
|
{%- if not embedded %}{% if not theme_nosidebar|tobool %}
|
|
</div>
|
|
{%- endif %}{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|