This file is indexed.

/usr/share/doc/cimg-dev/html/index.shtml is in cimg-doc 1.4.9-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--#include file="header.html" -->

<img src="img/item_intro.gif" alt="Introduction"></img>
<p>
  The <tt><i>CImg Library</i></tt> is an <b>open source</b>, <b>C++ toolkit</b> for <b>image processing</b>,
  designed with these properties in mind :

  <table border="0" width="100%" cellspacing="16">
    <tr><td><img src="img/item_usefulness.jpg" alt="Usefulness"></img></td>
      <td><hr noshade="noshade" size="1" width="100%"></hr>
        <tt><i>CImg</i></tt> defines <i>classes</i> and <i>methods</i>
        to manage images in your own C++ code. You can use it to load/save various file formats, access pixel values,
        display/transform/filter images, draw primitives (text, faces, curves, 3d objects, ...), compute statistics,
        manage user interactions on images, and so on...
    </td></tr>
    <tr><td><img src="img/item_genericity.jpg" alt="Genericity"></img></td>
      <td><hr noshade="noshade" size="1" width="100%"></hr>
        <tt><i>CImg</i></tt> defines a single image class which can represent datasets having up to
        <i>4-dimensions</i> (from 1d scalar signals to 3d hyperspectral volumetric images),
        with <i>template pixel types</i> (<tt>bool,char,int,float,...</tt>).<br/>
        It also handles image <i>collections</i> and <i>sequences</i>.
    </td></tr>
    <tr><td><img src="img/item_portability.jpg" alt="Portability"></img></td>
      <td><hr noshade="noshade" size="1" width="100%"></hr>
        <tt><i>CImg</i></tt> is <i>self-contained</i> and thus <i>highly portable</i>. It fully works on
        <i>different operating systems</i> (<tt>Unix,Windows,MacOS X,*BSD,...</tt>) and is compatible
        with <i>various C++ compilers</i> (<tt>Visual C++,g++,icc,...</tt>).
    </td></tr>
    <tr><td><img src="img/item_simplicity.jpg" alt="Simplicity"></img></td>
      <td><hr noshade="noshade" size="1" width="100%"></hr>
        <tt><i>CImg</i></tt> is <i>lightweight</i>. It is made of a single header file
        <a href="http://cimg.cvs.sourceforge.net/cimg/CImg/CImg.h?view=markup"><tt>CImg.h</tt></a>
        that must be included in your C++ source. It defines only <i>four</i> different classes, encapsulated
        in a namespace.
        It can be compiled using a minimal set of standard C++ and system libraries.<br/>
        <i>No need for exotic or complex dependencies</i>.
    </td></tr>
    <tr><td><img src="img/item_extensibility.jpg" alt="Extensibility"></img></td>
      <td><hr noshade="noshade" size="1" width="100%"></hr>
        Although not mandatory, <tt><i>CImg</i></tt> can use functionalities of external tools/libraries such as
        <a href="http://www.imagemagick.org/">ImageMagick</a>,
        <a href="http://www.graphicsmagick.org/">GraphicsMagick</a>,
        <a href="http://xmedcon.sourceforge.net/">XMedCon</a>,
        <a href="http://ffmpeg.mplayerhq.hu/">FFMPEG</a>,
        <a href="http://www.libpng.org/pub/png/libpng.html">libpng</a>,
        <a href="http://www.ijg.org/">libjpeg</a>,
        <a href="http://www.libtiff.org/">libtiff</a>,
        <a href="http://www.imagemagick.org/Magick++/">Magick++</a>,
        <a href="http://http://opencv.willowgarage.com/wiki/">OpenCV</a>,
        <a href="http://www.netlib.org/lapack/">Lapack</a>,
        <a href="http://libboard.sourceforge.net/">Board</a>,
        <a href="http://www.openexr.com/">OpenEXR</a>
        or
        <a href="http://www.fftw.org/">FFTW3</a>.
        Moreover, a simple <i>plug-in</i> mechanism allows any user to directly enhance the library
        capabilities according to his needs.
    </td></tr>
    <tr><td><img src="img/item_freedom.jpg" alt="Freedom"></img></td>
      <td><hr noshade="noshade" size="1" width="100%"></hr>
        <tt><i>CImg</i></tt> is a <i>free, open-source library</i> distributed under the
        <a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt"><i>CeCILL-C</i></a> (close to the GNU LGPL)
        or
        <a href="http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt"><i>CeCILL</i></a> (compatible with the GNU GPL)
        licenses</i></a>. It can be used in commercial applications.
</td></tr>
</table>
</p>

<blockquote>
  <b>CImg</b> stands for <b><i>Cool Image</i></b> : It is <i>easy to use</i>, <i>efficient</i> and is intended to be
  a very pleasant toolbox to design image processing algorithms in C++. Due to its generic conception, it covers a wide range
  of image processing applications.
</blockquote>

<br/><img src="img/item_authors.jpg" alt="Authors"></img>
<blockquote>
  <a href="http://www.greyc.ensicaen.fr/~dtschump/">David Tschumperl&eacute;</a> (project leader)<br/><br/>
  with the help of many contributors around the world :<br/><br/>
  <i>
    Antonio Albiol,
    Haz-Edine Assemlal,
    Vincent Barra,
    Romain Blei,
    Yohan Bentolila,
    Jerome Boulanger,
    Frederic Devernay,
    Fran&ccedil;ois-Xavier Dup&eacute;,
    Eric Fausett,
    Jean-Marie Favreau,
    Sebastien Fourey,
    Alexandre Fournier,
    Vincent Garcia,
    David Grimbichler,
    Jinwei Gu,
    Jean-Daniel Guyot,
    Matt Hanson,
    Sebastien Hanel,
    Michael Holroyd,
    Christoph Hormann,
    Hon-Kwok Fung,
    Werner Jainek,
    Daniel Kondermann,
    Pierre Kornprobst,
    Orges Leka,
    Francois Lauze,
    Xie Long,
    Thomas Martin,
    Cesar Martinez,
    Jean Martinot,
    Arnold Meijster (Center for High Performance Computing and Visualization, University of Groningen/The Netherlands)
    Nikita Melnichenko,
    Baptiste Mougel,
    Julien Morat,
    Guillaume Nee,
    Andrea Onofri,
    Renaud Peteri,
    Martin Petricek,
    Paolo Prete,
    Adrien Reboisson,
    Klaus Schneider,
    Jakob Schluttig,
    Konstantin Spirin,
    Rainer Steffens,
    David G. Starkweather,
    Grzegorz Szwoch,
    Thierry Thomas,
    Yu-En-Yun,
    Vo Duc Khanh,
    Phillip Wood,
    Bug Zhao,
    Haibo Zheng.
  </i>
</blockquote>

<br/><img src="img/item_licenses.jpg" alt="Licenses"></img>
<blockquote>
  The <tt><i>CImg Library</i></tt> is an open-source product distributed under <b>two distinct licenses</b> :
  the library core itself is dual-licensed and
  can be governed either by the
  <a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt"><b>CeCILL-C</b> License</a> (LGPL-like),
  or the
  <a href="http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt"><b>CeCILL</b> License</a> (GPL-compatible).
  Most of the other package files are distributed under the
  <a href="http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt"><b>CeCILL</b> License</a>.
  Both are <b>open source licenses</b>, the CeCILL-C being less restrictive than the CeCILL.<br/><br/>
  The <tt><i>CImg Library</i></tt> source code has been registered to the <a href="http://app.legalis.net/paris/">APP</a>
  (French Agency for the Protection of Programs) by the <a href="http://www.inria.fr/index.en.html">INRIA</a>,
  under registration number <i>IDDN.FR.001.040004.000.S.P.2004.000.21000.</i>
</blockquote>

<br/><img src="img/item_learnmore.jpg" alt="Learn More"></img>
<ul>
  <li>The <a href="screenshots.shtml">Screenshots</a> section illustrates some of the different source code examples provided in
    the <tt><i>CImg</i></tt> package.</li>
  <li>The <a href="reference/group__cimg__tutorial.html">Tutorial</a> section shows the basic use of <tt><i>CImg</i></tt> classes
    and functions with a small first code.</li>
  <li>You can look at the quite complete <a href="CImg_slides.pdf">CImg Library presentation slides</a> (.pdf format) which gives
    more insights on the different library concepts.</li>
  <li>Online web statistics on the <tt><i>CImg</i></tt> website activity are available
    <a href="http://my.statcounter.com/project/standard/stats.php?project_id=895001&guest=1">here</a>,
    <a href="http://sourceforge.net/project/stats/?group_id=96492&ugn=cimg">here</a> and below :</li>
</ul>
<table align="center" border="0" cellpadding="10" cellspacing="0" width="500">
  <tbody><tr>
      <td><script type="text/javascript" src="http://www.ohloh.net/p/8841/widgets/project_basic_stats.js"></script></td>
      <td><script type="text/javascript" src="http://www.ohloh.net/p/8841/widgets/project_cocomo.js"></script></td>
  </tr></tbody>
</table>

<br/><img src="img/item_quickhistory.jpg" alt="Quick History"></img>
<blockquote>
  The development of the <tt><i>CImg Library</i></tt> began at the end of 1999, when I started my PhD thesis
  in the <a href="http://www-sop.inria.fr/odyssee"><img border="0" height="16" alt="" src="img/logoODYSSEE.jpg"></img> Lab</a>
  at the <a href="http://www-sop.inria.fr/"><img border="0" height="16" alt="" src="img/logoINRIA.gif"></img> Sophia Antipolis</a>.
  It was designed to help me and my colleagues developing various image processing algorithms,
  for datasets as simple as 2D scalar images, or as complex as 3D volumes of diffusion tensors. I also used it for
  courses on image processing I teached at the university. As a result, the <tt><i>CImg library</i></tt>
  has been always intended to be <i>compact</i>, <i>easy to install and to use</i>, <i>multi-platform</i> and <i>generic</i>.
  It provides a lot of basic functions that any human would like to find in a C++ image processing framework.<br/><br/>
  I am now a permanent researcher of the  <a href="http://www.cnrs.fr"><img border="0" alt="" height="32" src="img/logoCNRS.gif"></img>
    institution</a>,
  working in the <a href="http://www.greyc.ensicaen.fr/EquipeImage"><img border="0" alt="" height="32" src="img/logoIMAGE.gif"></img>
    group</a> at the <a href="http://www.greyc.ensicaen.fr"><img border="0" alt="" height="32" src="img/logoGREYC.gif"></img>
    GREYC lab</a> in Caen/France.
  I am still using, maintaining and updating the <tt><i>CImg Library</i></tt>, and will probably do it for the next couple of years.
</blockquote>

<br/><img src="img/item_howtohelp.jpg" alt="How to Help ?"></img>
<blockquote>
  The <tt><i>CImg Library</i></tt> is an open source C++ library which is mainly developped during
  free time. If you enjoy using <tt><i>CImg</i></tt>, you may contribute to the project
  in different ways. This will motivate me to continue the work.
  <ul>
    <li>You can help <tt><i>CImg</i></tt> to be more widely known, by displaying a
      <a href="CImg_flyer.pdf">CImg Flyer</a> at work, in your lab or school
      (available in <a href="CImg_flyer.pdf">.PDF</a> or <a href="img/CImg_flyer.jpg">.JPEG</a> formats).
    <li>You can report bugs, propose patches or new functionalities, using the <tt><i>CImg</i></tt>
      <a href="http://sourceforge.net/forum/?group_id=96492">forums</a> or
      <a href="http://sourceforge.net/tracker/?group_id=96492">trackers</a>.</li>
    <li>You can write
      <a href="reference/group__cimg__tutorial.html">tutorials</a>
      or parts of the <a href="reference/index.html">documentation</a>.</li>
    <li>If you just want to say you've been happy with the library, you can send me a postcard from your place, to the following address : <br/>
      <i>David Tschumperl&eacute;, GREYC (UMR CNRS 6072), Equipe IMAGE, 6 Bd du Mar&eacute;chal Juin, 14050 Caen Cedex, FRANCE.</i><br/><br/>
      31 postcards received yet (I still have empty space on my wall ! :) ), from :<br/><br/>
      <ul>
        <li><a href="img/postcard1.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Comissao Nacional de Energia Nuclear, Rio de Janeiro, Brazil.</a></li>
        <li><a href="img/postcard2.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Universidad Nacional del Litoral, Santa Fe, Argentina.</a></li>
        <li><a href="img/postcard3.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Waikiki's only true resort, Honolulu/Hawaii.</a></li>
        <li><a href="img/postcard4.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Royal Pavilion, Brighton/UK.</a></li>
        <li><a href="img/postcard5.jpg" onclick="NewWindow(this.href,'name','320','420','yes');return false;">
            Cambridge, UK.</a></li>
        <li><a href="img/postcard6.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            National Tai-Chung Institute of Technology, Taiwan.</a></li>
        <li><a href="img/postcard7.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Fuzzy Logic Laboratorium Linz-Hagenberg, Linz, Austria.</a></li>
        <li><a href="img/postcard8.jpg" onclick="NewWindow(this.href,'name','500','450','yes');return false;">
            Corte/Corsica.</a></li>
        <li><a href="img/postcard9.jpg" onclick="NewWindow(this.href,'name','400','600','yes');return false;">
            Microsoft Research, Beijing/China.</a></li>
        <li><a href="img/postcard10.jpg" onclick="NewWindow(this.href,'name','700','500','yes');return false;">
            Palermo/Italia.</a></li>
        <li><a href="img/postcard11.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Florida Atlantic University/USA.</a></li>
        <li><a href="img/postcard12.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Ecole Nationale Supérieure des Mines de Saint-Etienne/France.</a></li>
        <li><a href="img/postcard13.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Venice/Italy, from Sebastien/GREYC (Caen/France).</a></li>
        <li><a href="img/postcard14.jpg" onclick="NewWindow(this.href,'name','320','420','yes');return false;">
            Barcelone/Spain, from Jaime.</a></li>
        <li><a href="img/postcard15.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Guadeloupe/France, from Jean-Michel.</a></li>
        <li><a href="img/postcard17.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            London/England, from Sebastien/GREYC (Caen/France).</a></li>
        <li><a href="img/postcard18.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Valencia/Spain, from the Research Institute ITEAM of the Unversidad Politecnica.</a></li>
        <li><a href="img/postcard19.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Vienna/Austria, from Sebastien/GREYC (Caen/France).</a></li>
        <li><a href="img/postcard20.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Neuherberg/Germany, from the Institut for Biomathematick und Biometrie.</a></li>
        <li><a href="img/postcard21.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Cabestany/France, from Guy Poizat.</a></li>
        <li><a href="img/postcard22.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Frascati/Italy, from PhotoComiX.</a></li>
        <li><a href="img/postcard23.jpg" onclick="NewWindow(this.href,'name','420','320','yes');return false;">
            Jaca/Spain, from F. Albior.</a></li>
        <li><a href="img/postcard24.jpg" onclick="NewWindow(this.href,'name','450','320','yes');return false;">
            Munich/Germany, from M???? (didn't succeed in reading the name, sorry !).</a></li>
        <li><a href="img/postcard25.jpg" onclick="NewWindow(this.href,'name','450','320','yes');return false;">
            Playa del Carmen/Mexico, from Sebastien/GREYC (Caen/France).</a></li>
        <li><a href="img/postcard26.jpg" onclick="NewWindow(this.href,'name','450','320','yes');return false;">
            Holland, from Vincent/GREYC (Caen/France).</a></li>
        <li><a href="img/postcard27.jpg" onclick="NewWindow(this.href,'name','500','700','yes');return false;">
            Portland/Oregon/USA, from Mahvin.</a></li>
        <li><a href="img/postcard28.jpg" onclick="NewWindow(this.href,'name','450','320','yes');return false;">
            Gibraltar, from Terry Hendicott.</a></li>
        <li><a href="img/postcard29.jpg" onclick="NewWindow(this.href,'name','450','320','yes');return false;">
            Neuchatel/Switzerland, from Corinne Masimann.</a></li>
        <li><a href="img/postcard30.jpg" onclick="NewWindow(this.href,'name','450','320','yes');return false;">
            Foster City/California, from Arkadi Gelfond.</a></li>
        <li><a href="img/postcard31.jpg" onclick="NewWindow(this.href,'name','350','450','yes');return false;">
            Huntsville/Alabama, from Gordon M. Neeley.</a></li>
      </ul><br/>
    <li>If you have too much money, you can also <a href="http://sourceforge.net/donate/index.php?group_id=96492">
        <img src="img/project-support.jpg" alt=""></img></a></li>
    </ul>
    </blockquote>

    <br/><img src="img/item_copyrights.jpg" alt="Copyrights"></img>
    <blockquote>
      <font size="-2">
        Copyrights (C) From october 2004, David Tschumperlé - GREYC UMR CNRS 6072, Image group.<br/>
        Copyrights (C) January->September 2004, David Tschumperlé.<br/>
        Copyrights (C) 2000->2003, David Tschumperlé - INRIA Sophia-Antipolis. Odyssée group.<br/>
      </font>
    </blockquote>

    <!--#include file="footer.html" -->