C++ Template Image Processing Library.    

[ Introduction ]-[ News ]-[ Download ]-[ Screenshots ]-[ FAQ ]-[ Tutorial ]-[ Links ]-[ Forums-Eng ]-[ Forums-Fr ]-[ Reference ]-[ SourceForge Repository ]

cimg_library Namespace Reference

Namespace that encompasses all classes and functions of the CImg library. More...


Classes

struct  CImgException
 Class which is thrown when an error occured during a CImg library function call. More...
struct  CImgStats
 Class used to compute basic statistics on pixel values of a CImg image. More...
struct  CImgDisplay
 This class represents a window which can display CImg images and handles mouse and keyboard events. More...
struct  CImg
 Class representing an image (up to 4 dimensions wide), each pixel being of type T. More...
struct  CImgList
 Class representing list of images CImg<T>. More...

Namespaces

namespace  cimg
 Namespace that encompasses low-level functions and variables of the CImg Library.


Detailed Description

Namespace that encompasses all classes and functions of the CImg library.

This namespace is defined to avoid class names collisions that could happen with the include of other C++ header files. Anyway, it should not happen very often and you may start most of your programs with

   #include "CImg.h"
   using namespace cimg_library;
to simplify the declaration of CImg Library objects variables afterwards.

The CImg Library - C++ Template Image Processing Library