ES-DE/external/CImg
2023-08-05 10:49:38 +02:00
..
.github/workflows Merge commit '6c5f42416f065d2e7e0c4c8a8481f2219e212631' into library-updates 2023-01-06 11:47:13 +01:00
examples Merge commit '2016fd6f5c3d0576722ff49e1aa34fdb69eaf8a9' into library-updates 2023-08-05 10:49:38 +02:00
html Merge commit '2016fd6f5c3d0576722ff49e1aa34fdb69eaf8a9' into library-updates 2023-08-05 10:49:38 +02:00
plugins Merge commit '6c5f42416f065d2e7e0c4c8a8481f2219e212631' into library-updates 2023-01-06 11:47:13 +01:00
resources Merge commit '2016fd6f5c3d0576722ff49e1aa34fdb69eaf8a9' into library-updates 2023-08-05 10:49:38 +02:00
.travis.yml Merge commit '3b12410b916adfdae099f31561bb49ca6f2fc922' as 'external/CImg' 2021-06-07 22:08:20 +02:00
CImg.h Merge commit '2016fd6f5c3d0576722ff49e1aa34fdb69eaf8a9' into library-updates 2023-08-05 10:49:38 +02:00
Licence_CeCILL-C_V1-en.txt Merge commit '3b12410b916adfdae099f31561bb49ca6f2fc922' as 'external/CImg' 2021-06-07 22:08:20 +02:00
Licence_CeCILL_V2-en.txt Merge commit '3b12410b916adfdae099f31561bb49ca6f2fc922' as 'external/CImg' 2021-06-07 22:08:20 +02:00
README.md Merge commit '6c5f42416f065d2e7e0c4c8a8481f2219e212631' into library-updates 2023-01-06 11:47:13 +01:00
README.txt Merge commit '3b12410b916adfdae099f31561bb49ca6f2fc922' as 'external/CImg' 2021-06-07 22:08:20 +02:00

Logo

http://cimg.eu

Build

The CImg Library is a small and open-source C++ library for image processing, designed with these properties in mind:

Usefulness CImg defines classes and methods to manage images in your own C++ code. You can use CImg 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...

Genericity CImg defines a single image class able to represent datasets having up to 4-dimensions (from 1d scalar signals to 3d hyperspectral volumetric images), with template pixel types (bool,char,int,float,...). It also handles image collections and sequences.

Portability CImg is self-contained, thread-safe and highly portable. It fully works on different operating systems (Unix,Windows,MacOS X,*BSD,...) and is compatible with various C++ compilers (Visual C++,g++,clang++,icc,...).

Simplicity CImg is lightweight. It is made of a single header file CImg.h that must be included in your C++ source. It defines only four different classes, encapsulated in the namespace cimg_library. It can be compiled using a minimal set of standard C++ and system libraries only. No need for exotic or complex dependencies.

Extensibility Although not mandatory, CImg can use functionalities of external tools/libraries such as Board, FFMPEG, FFTW3, GraphicsMagick, ImageMagick, Lapack, libcurl, libjpeg, libpng, libtiff, Magick++, OpenEXR, OpenCV, OpenMP or XMedCon. Moreover, a simple plug-in mechanism allows any user to directly enhance the library capabilities according to their needs.

Freedom CImg is a free, open-source library distributed under the CeCILL-C (close to the GNU LGPL) or CeCILL (compatible with the GNU GPL) licenses. It can be used in commercial applications.


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