index.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Boost Generic Image Library - Boost.GIL documentation</title>
  7. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/style.css" type="text/css" />
  9. <script type="text/javascript">
  10. var DOCUMENTATION_OPTIONS = {
  11. URL_ROOT: './',
  12. VERSION: '',
  13. COLLAPSE_MODINDEX: false,
  14. FILE_SUFFIX: '.html'
  15. };
  16. </script>
  17. <script type="text/javascript" src="_static/jquery.js"></script>
  18. <script type="text/javascript" src="_static/underscore.js"></script>
  19. <script type="text/javascript" src="_static/doctools.js"></script>
  20. <link rel="index" title="Index" href="genindex.html" />
  21. <link rel="search" title="Search" href="search.html" />
  22. <link rel="top" title="Boost.GIL documentation" href="#" />
  23. <link rel="next" title="Installation" href="installation.html" />
  24. </head>
  25. <body>
  26. <div class="header">
  27. <table border="0" cellpadding="7" cellspacing="0" width="100%" summary=
  28. "header">
  29. <tr>
  30. <td valign="top" width="300">
  31. <h3><a href="#"><img
  32. alt="C++ Boost" src="_static/gil.png" border="0"></a></h3>
  33. </td>
  34. <td >
  35. <h1 align="center"><a href="#"></a></h1>
  36. </td>
  37. <td>
  38. <div id="searchbox" style="display: none">
  39. <form class="search" action="search.html" method="get">
  40. <input type="text" name="q" size="18" />
  41. <input type="submit" value="Search" />
  42. <input type="hidden" name="check_keywords" value="yes" />
  43. <input type="hidden" name="area" value="default" />
  44. </form>
  45. </div>
  46. <script type="text/javascript">$('#searchbox').show(0);</script>
  47. </td>
  48. </tr>
  49. </table>
  50. </div>
  51. <hr/>
  52. <div class="content">
  53. <div class="navbar" style="text-align:right;">
  54. <a class="next" title="Installation" href="installation.html"><img src="_static/next.png" alt="next"/></a>
  55. </div>
  56. <div class="section" id="boost-generic-image-library">
  57. <h1>Boost Generic Image Library</h1>
  58. <p>The Generic Image Library (GIL) is a C++11 library that abstracts image
  59. representations from algorithms and allows writing code that can work on
  60. a variety of images with performance similar to hand-writing for a specific
  61. image type.</p>
  62. <div class="section" id="quickstart">
  63. <h2>Quickstart</h2>
  64. <div class="toctree-wrapper compound">
  65. <ul>
  66. <li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a></li>
  67. <li class="toctree-l1"><a class="reference internal" href="tutorial/video.html">Tutorial: Video Lecture</a></li>
  68. <li class="toctree-l1"><a class="reference internal" href="tutorial/histogram.html">Tutorial: Histogram</a></li>
  69. <li class="toctree-l1"><a class="reference internal" href="tutorial/gradient.html">Tutorial: Image Gradient</a></li>
  70. <li class="toctree-l1"><a class="reference internal" href="naming.html">Naming Conventions</a></li>
  71. </ul>
  72. </div>
  73. </div>
  74. <div class="section" id="core-library-documentation">
  75. <h2>Core Library Documentation</h2>
  76. <div class="toctree-wrapper compound">
  77. <ul>
  78. <li class="toctree-l1"><a class="reference internal" href="design/index.html">Design Guide</a><ul>
  79. <li class="toctree-l2"><a class="reference internal" href="design/basics.html">Basics</a></li>
  80. <li class="toctree-l2"><a class="reference internal" href="design/concepts.html">Concepts</a></li>
  81. <li class="toctree-l2"><a class="reference internal" href="design/point.html">Point</a></li>
  82. <li class="toctree-l2"><a class="reference internal" href="design/channel.html">Channel</a></li>
  83. <li class="toctree-l2"><a class="reference internal" href="design/color_space.html">Color Space and Layout</a></li>
  84. <li class="toctree-l2"><a class="reference internal" href="design/color_base.html">Color Base</a></li>
  85. <li class="toctree-l2"><a class="reference internal" href="design/pixel.html">Pixel</a></li>
  86. <li class="toctree-l2"><a class="reference internal" href="design/pixel_iterator.html">Pixel Iterator</a></li>
  87. <li class="toctree-l2"><a class="reference internal" href="design/pixel_locator.html">Pixel Locator</a></li>
  88. <li class="toctree-l2"><a class="reference internal" href="design/image_view.html">Image View</a></li>
  89. <li class="toctree-l2"><a class="reference internal" href="design/image.html">Image</a></li>
  90. <li class="toctree-l2"><a class="reference internal" href="design/dynamic_image.html">Dynamic images and image views</a></li>
  91. <li class="toctree-l2"><a class="reference internal" href="design/metafunctions.html">Metafunctions</a></li>
  92. <li class="toctree-l2"><a class="reference internal" href="design/examples.html">Examples</a></li>
  93. <li class="toctree-l2"><a class="reference internal" href="design/technicalities.html">Technicalities</a></li>
  94. <li class="toctree-l2"><a class="reference internal" href="design/extending.html">Extending</a></li>
  95. <li class="toctree-l2"><a class="reference internal" href="design/conclusions.html">Conclusions</a></li>
  96. </ul>
  97. </li>
  98. <li class="toctree-l1"><a class="reference internal" href="image_processing/index.html">Image Processing</a><ul>
  99. <li class="toctree-l2"><a class="reference internal" href="image_processing/overview.html">Overview</a></li>
  100. <li class="toctree-l2"><a class="reference internal" href="image_processing/basics.html">Basics</a></li>
  101. <li class="toctree-l2"><a class="reference internal" href="image_processing/affine-region-detectors.html">Affine region detectors</a></li>
  102. </ul>
  103. </li>
  104. <li class="toctree-l1"><a class="reference external" href="./reference/index.html#://">API Reference</a></li>
  105. </ul>
  106. </div>
  107. </div>
  108. <div class="section" id="extensions-documentation">
  109. <h2>Extensions Documentation</h2>
  110. <div class="toctree-wrapper compound">
  111. <ul>
  112. <li class="toctree-l1"><a class="reference internal" href="io.html">IO extensions</a><ul>
  113. <li class="toctree-l2"><a class="reference internal" href="io.html#overview">Overview</a></li>
  114. <li class="toctree-l2"><a class="reference internal" href="io.html#supported-platforms">Supported Platforms</a></li>
  115. <li class="toctree-l2"><a class="reference internal" href="io.html#tutorial">Tutorial</a></li>
  116. <li class="toctree-l2"><a class="reference internal" href="io.html#using-io">Using IO</a></li>
  117. <li class="toctree-l2"><a class="reference internal" href="io.html#running-gil-io-tests">Running gil::io tests</a></li>
  118. </ul>
  119. </li>
  120. <li class="toctree-l1"><a class="reference internal" href="toolbox.html">ToolBox extension</a><ul>
  121. <li class="toctree-l2"><a class="reference internal" href="toolbox.html#overview">Overview</a></li>
  122. <li class="toctree-l2"><a class="reference internal" href="toolbox.html#folder-structure">Folder Structure</a></li>
  123. <li class="toctree-l2"><a class="reference internal" href="toolbox.html#acknowledgements">Acknowledgements</a></li>
  124. <li class="toctree-l2"><a class="reference internal" href="toolbox.html#id1">Reference</a></li>
  125. </ul>
  126. </li>
  127. <li class="toctree-l1"><a class="reference internal" href="numeric.html">Numeric extension</a><ul>
  128. <li class="toctree-l2"><a class="reference internal" href="numeric.html#overview">Overview</a></li>
  129. </ul>
  130. </li>
  131. </ul>
  132. </div>
  133. </div>
  134. <div class="section" id="examples">
  135. <h2>Examples</h2>
  136. <ul class="simple">
  137. <li><a class="reference download internal" href="_downloads/x_gradient.cpp" download=""><code class="xref download docutils literal"><span class="pre">x_gradient.cpp</span></code></a>:
  138. Writing an algorithm that operates on generic images</li>
  139. <li><a class="reference download internal" href="_downloads/dynamic_image.cpp" download=""><code class="xref download docutils literal"><span class="pre">dynamic_image.cpp</span></code></a>:
  140. Using images whose properties (color space, channel type) are specified
  141. at run time</li>
  142. <li><a class="reference download internal" href="_downloads/histogram.cpp" download=""><code class="xref download docutils literal"><span class="pre">histogram.cpp</span></code></a>: Creating a histogram</li>
  143. <li><a class="reference download internal" href="_downloads/interleaved_ptr.cpp" download=""><code class="xref download docutils literal"><span class="pre">interleaved_ptr.cpp</span></code></a>,
  144. <a class="reference download internal" href="_downloads/interleaved_ptr.hpp" download=""><code class="xref download docutils literal"><span class="pre">interleaved_ptr.hpp</span></code></a>,
  145. <a class="reference download internal" href="_downloads/interleaved_ref.hpp" download=""><code class="xref download docutils literal"><span class="pre">interleaved_ref.hpp</span></code></a>:
  146. Creating your own pixel reference and pixel iterator</li>
  147. <li><a class="reference download internal" href="_downloads/mandelbrot.cpp" download=""><code class="xref download docutils literal"><span class="pre">mandelbrot.cpp</span></code></a>:
  148. Creating a synthetic image defined by a function</li>
  149. <li><a class="reference download internal" href="_downloads/packed_pixel.cpp" download=""><code class="xref download docutils literal"><span class="pre">packed_pixel.cpp</span></code></a>:
  150. Defining bitmasks and images whose channels or pixels are not byte-aligned</li>
  151. <li><a class="reference download internal" href="_downloads/resize.cpp" download=""><code class="xref download docutils literal"><span class="pre">resize.cpp</span></code></a>:
  152. Rescaling an image using bilinear sampling (requires the optional
  153. Numeric extension)</li>
  154. <li><a class="reference download internal" href="_downloads/affine.cpp" download=""><code class="xref download docutils literal"><span class="pre">affine.cpp</span></code></a>:
  155. Applying an affine transformation to an image (requires the optional
  156. Numeric extension)</li>
  157. <li><a class="reference download internal" href="_downloads/convolution.cpp" download=""><code class="xref download docutils literal"><span class="pre">convolution.cpp</span></code></a>:
  158. Blurring images (requires the optional Numeric extension)</li>
  159. </ul>
  160. </div>
  161. </div>
  162. <div class="navbar" style="text-align:right;">
  163. <a class="next" title="Installation" href="installation.html"><img src="_static/next.png" alt="next"/></a>
  164. </div>
  165. </div>
  166. <div class="footer" role="contentinfo">
  167. Last updated on 2019-12-10 00:12:10.
  168. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.5.6.
  169. </div>
  170. </body>
  171. </html>