2
0
mirror of https://github.com/boostorg/gil.git synced 2026-02-01 08:32:10 +00:00
Files
gil/develop/doc/html/histogram/overview.html
github-actions[bot] 76055cd4e0 deploy: 791148660e
2022-04-26 20:13:52 +00:00

121 lines
5.3 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Overview - Boost.GIL documentation</title>
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="../_static/style.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '',
COLLAPSE_MODINDEX: false,
FILE_SUFFIX: '.html'
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/language_data.js"></script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="top" title="Boost.GIL documentation" href="../index.html" />
<link rel="up" title="Histogram" href="index.html" />
<link rel="next" title="Create a histogram" href="create.html" />
<link rel="prev" title="Histogram" href="index.html" />
</head>
<body>
<div class="header">
<table border="0" cellpadding="7" cellspacing="0" width="100%" summary=
"header">
<tr>
<td valign="top" width="300">
<h3><a href="../index.html"><img
alt="C++ Boost" src="../_static/gil.png" border="0"></a></h3>
</td>
<td >
<h1 align="center"><a href="../index.html"></a></h1>
</td>
<td>
<div id="searchbox" style="display: none">
<form class="search" action="../search.html" method="get">
<input type="text" name="q" size="18" />
<input type="submit" value="Search" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</td>
</tr>
</table>
</div>
<hr/>
<div class="content">
<div class="navbar" style="text-align:right;">
<a class="prev" title="Histogram" href="index.html"><img src="../_static/prev.png" alt="prev"/></a>
<a class="up" title="Histogram" href="index.html"><img src="../_static/up.png" alt="up"/></a>
<a class="next" title="Create a histogram" href="create.html"><img src="../_static/next.png" alt="next"/></a>
</div>
<div class="section" id="overview">
<h1>Overview</h1>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#description" id="id1">Description</a></li>
<li><a class="reference internal" href="#tutorials" id="id2">Tutorials</a></li>
</ul>
</div>
<div class="section" id="description">
<h2><a class="toc-backref" href="#id1">Description</a></h2>
<p>The histogram class is built on top of std::unordered_map to keep it compatible with other
STL algorithms. It can support any number of axes (known at compile time i.e. during class
instantiation). Suitable conversion routines from GIL image constructs to the histogram bin
key are shipped with the class itself.</p>
</div>
<div class="section" id="tutorials">
<h2><a class="toc-backref" href="#id2">Tutorials</a></h2>
<dl class="docutils">
<dt>The following flow is recommended:</dt>
<dd><ol class="first last arabic simple">
<li><a class="reference internal" href="create.html#create-histogram"><span class="std std-ref">Create a histogram</span></a></li>
<li><a class="reference internal" href="fill.html#fill-it"><span class="std std-ref">Fill histogram</span></a></li>
<li><a class="reference internal" href="subhistogram.html#sub-histogram"><span class="std std-ref">Making a sub-histogram</span></a></li>
<li><a class="reference internal" href="cumulative.html#cumulative-histogram"><span class="std std-ref">Making a cumulative histogram</span></a></li>
<li><a class="reference internal" href="stl_compatibility.html#stl-compatibility"><span class="std std-ref">STL compatibility</span></a></li>
<li><a class="reference internal" href="extend.html#extend-support"><span class="std std-ref">Extending the class</span></a></li>
<li><a class="reference internal" href="limitations.html#limitations"><span class="std std-ref">Limitations</span></a></li>
</ol>
</dd>
</dl>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">To try out these tutorials you need to get a clone of the repository, since it is not yet released.</p>
</div>
</div>
</div>
<div class="navbar" style="text-align:right;">
<a class="prev" title="Histogram" href="index.html"><img src="../_static/prev.png" alt="prev"/></a>
<a class="up" title="Histogram" href="index.html"><img src="../_static/up.png" alt="up"/></a>
<a class="next" title="Create a histogram" href="create.html"><img src="../_static/next.png" alt="next"/></a>
</div>
</div>
<div class="footer" role="contentinfo">
Last updated on 2022-04-26 20:04:39.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.8.5.
</div>
</body>
</html>