⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.shtml

📁 this a image processing program
💻 SHTML
字号:
<!DOCTYPE html PUBLIC "-//w3c//dtd html 4.0 transitional//en"><html>  <head>    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">    <title>The CImg Library - C++ Template Image Processing Library</title>    <meta content="David Tschumperle" name="author">  </head>  <body alink="#ff0000" bgcolor="#ffffff" link="#0000ee" vlink="#551a8b">    <!--#include file="head.html" -->    <font face="Arial,Helvetica" size="-1">      <img src="img/item_intro.jpg">      <br><br>      <b>What is it ?</b>      <ul>        <li> The CImg Library is an <b>open source C++ toolkit for image processing</b> :	It provides simple classes and functions to load, save, process and display images in your own C++ code.</li>        <li> It is intended to be <b>highly portable</b> and fully works on different operating systems (<b>Unix/X11, Windows, MacOS X</b>, <b>*BSD</b>) with different C++ compilers.          It should compile on other systems as well (eventually without display capabilities).</li>        <li> It consists only of <b>a single header file</b> <i><a href="http://cimg.cvs.sourceforge.net/cimg/CImg/CImg.h?view=markup">CImg.h</a></i> that must be included in your C++ program source.</li>        <li> It contains useful <b>image processing algorithms</b> for image loading/saving, displaying, resizing/rotating, filtering,	     object drawing (text, lines, faces, curves, ellipses, 3D objects, ..), etc...</li>        <li> The main image class can represent images up to <b>4-dimension</b> wide <i>(x,y,z,v)</i> (from 1-D scalar          signals to 3-D multi-channel volumes), with <b>template pixel types</b>.</li>        <li> It depends on a <b>minimal number of libraries</b> : you can compile it only with standard C++ libraries.          No need for exotic libraries and complex dependencies.</li>        <li> Additional features appear with the use of <a href="http://www.imagemagick.org/">ImageMagick</a>,	<a href="http://www.libpng.org/pub/png/libpng.html">libpng</a>, <a href="http://www.ijg.org/">libjpeg</a>	or <a href="http://xmedcon.sourceforge.net/">XMedCon</a>.          Install the ImageMagick package or link your code with libpng and libjpeg	  to be able to load and save standard compressed image formats (GIF,BMP,TIF,JPG,PNG,...).	  Install the XMedCon package to be able to read DICOM medical image files.	  All these extra-tools are available for any platforms.</li>      </ul>      <blockquote>        <b>CImg</b> stands for <b><i>"Cool Image"</i></b> : It is easy to use and efficient. It's like a STL for image processing !<br>        In the CImg package, a <a href="screenshots.shtml">lot of examples</a> are provided to help the developper in its first steps.<br>      </blockquote>     <b>Authors :</b>      <blockquote>        <a href="http://www.greyc.ensicaen.fr/~dtschump/">David Tschumperl&eacute;</a>	<br><br>        With the help of various contributors, including :        <i>  Haz-Edine Assemlal,  Yohan Bentolila,  Jerome Boulanger,  Fran&ccedil;ois-Xavier Dup&eacute;,  Eric Fausett,  Sebastien Fourey,  Jean-Daniel Guyot,  Matt Hanson,  Christoph Hormann,  Werner Jainek,  Daniel Kondermann,  Pierre Kornprobst,  Orges Leka,  Francois Lauze,  Thomas Martin,  Jean Martinot,  Renaud Peteri,  Martin Petricek,  Konstantin Spirin,  Grzegorz Szwoch,  Thierry Thomas,  Yu-En-Yun,  Bug Zhao.	</i>      </blockquote>      <b>Learn More :</b>      <ul>        <li>You can look at the <a href="CImg_slides.pdf">CImg Library presentation slides</a> (.pdf format) that introduces the basic concepts of the library.        <li>The <a href="screenshots.shtml">Screenshots</a> section shows examples of applications where CImg can be typically used.</li>        <li>The <a href="download.shtml">Download</a> section is the place to get the latest CImg Library package.</li>        <li>The <a href="reference/group__cimg__tutorial.html">Tutorial</a> section illustrate the basis of CImg classes and functions with a first code.</li>      </ul>      <b>License :</b>      <blockquote>        The CImg Library is distributed under two distinct licenses : the library itself is governed by the	<a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.txt">CeCILL-C License</a> (LGPL-like),	while the library example files are governed by the        <a href="http://www.cecill.info/licences/Licence_CeCILL_V2-en.html">CeCILL License</a> (GPL-like).	Both are <b>open source licenses</b>, the CeCILL-C being less restrictive than the CeCILL one.<br/>        The library has been mainly designed for teaching and research activities.<br/>        The 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">INRIA</a>.      </blockquote>      <b>Quick History :</b>      <blockquote>        The development of the CImg Library 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" src="img/logoODYSSEE.png"> Lab</a>        at the <a href="http://www-sop.inria.fr/"><img border="0" src="img/logoINRIA.gif"> 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. That's why the CImg library        is intended to be quite <i>generic</i>, thanks to the pixel-template        parameters and the high number of possible dimensions (four dimensions for an        image).&nbsp; I must admit that the limit of 4 dimensions has never been a problem        since I started the library (particularly since we can also use image lists in the CImg Library).	Conversely, this limit permitted to implement very        efficient functions and algorithms. To sum up, the CImg Library has been designed        to be <i>simple to use</i>, and <i>efficient</i>.        It provides a lot of basic functions that one would like to see in an image        processing framework for C++ programming. Its simplicity, its tiny size        and its efficiency are the three reasons for you to download and test it !        If you are interested, just go to the <a href="download.shtml">download section</a>,        or see the <a href="screenshots.shtml">screenshots section</a>, in order to see        what CImg can do for you.<br>	I am now a permanent researcher of the  <a href="http://www.cnrs.fr"><img border="0" src="img/logoCNRS.gif"> institution</a>,	working in the <a href="http://www.greyc.ensicaen.fr/EquipeImage"><img border="0" src="img/logoIMAGE.gif"> group</a>	at the <a href="http://www.greyc.ensicaen.fr"><img border="0" src="img/logoGREYC.gif"> GREYC lab</a> in Caen/France.	I am still using, maintaining and updating the CImg Library.      </blockquote>      <b>How to contribute ?</b>      <blockquote>      The CImg Library is an open source C++ library which is mainly developped during      free time. If you enjoy using the CImg Library, you can contribute to the project      in different ways. This will motivate me to continue the work.      <ul>      <li>You can report bugs, propose patches or new functionalities, using the      CImg forums.</li>      <li>You can write tutorials or parts of the <a href="reference/index.html">documentation</a>.</li>      <li>You can send me a postcard from your city. 2 postcards received yet, 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>      </ul>      </li><br/>      <li>If you are rich, you can <a href="http://sourceforge.net/donate/index.php?group_id=96492">      <img src="img/project-support.jpg"></a></li>      </ul>      My coordinates (e-mail or mail) can be found on      <a href="http://www.greyc.ensicaen.fr/~dtschump/">my web page</a>.      </blockquote>      <b>Copyrights :</b>      <blockquote>      <font size="-2">	Copyrights (C) 2000->2003, David Tschumperl

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -