Namespace that encompasses low-level functions and variables of the CImg Library. More...
Functions | |
void | info () |
Print informations about CImg environement variables. More... | |
unsigned int & | exception_mode () |
Get/set the current CImg exception mode. More... | |
int | dialog (const char *title, const char *msg, const char *button1_txt="OK", const char *button2_txt=0, const char *button3_txt=0, const char *button4_txt=0, const char *button5_txt=0, const char *button6_txt=0, const bool centering=false) |
double | eval (const char *const expression, const double x=0, const double y=0, const double z=0, const double v=0) |
Evaluate math expression. More... | |
void | warn (const char *format,...) |
Display a warning message. More... | |
int | system (const char *const command, const char *const module_name=0) |
template<typename T > | |
T & | temporary (const T &) |
Return a reference to a temporary variable of type T. More... | |
template<typename T > | |
void | swap (T &a, T &b) |
Exchange values of variables a and b . More... | |
template<typename T1 , typename T2 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2) |
Exchange values of variables (a1 ,a2 ) and (b1 ,b2 ). More... | |
template<typename T1 , typename T2 , typename T3 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2, T3 &a3, T3 &b3) |
Exchange values of variables (a1 ,a2 ,a3 ) and (b1 ,b2 ,b3 ). More... | |
template<typename T1 , typename T2 , typename T3 , typename T4 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2, T3 &a3, T3 &b3, T4 &a4, T4 &b4) |
Exchange values of variables (a1 ,a2 ,...,a4 ) and (b1 ,b2 ,...,b4 ). More... | |
template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2, T3 &a3, T3 &b3, T4 &a4, T4 &b4, T5 &a5, T5 &b5) |
Exchange values of variables (a1 ,a2 ,...,a5 ) and (b1 ,b2 ,...,b5 ). More... | |
template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2, T3 &a3, T3 &b3, T4 &a4, T4 &b4, T5 &a5, T5 &b5, T6 &a6, T6 &b6) |
Exchange values of variables (a1 ,a2 ,...,a6 ) and (b1 ,b2 ,...,b6 ). More... | |
template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2, T3 &a3, T3 &b3, T4 &a4, T4 &b4, T5 &a5, T5 &b5, T6 &a6, T6 &b6, T7 &a7, T7 &b7) |
Exchange values of variables (a1 ,a2 ,...,a7 ) and (b1 ,b2 ,...,b7 ). More... | |
template<typename T1 , typename T2 , typename T3 , typename T4 , typename T5 , typename T6 , typename T7 , typename T8 > | |
void | swap (T1 &a1, T1 &b1, T2 &a2, T2 &b2, T3 &a3, T3 &b3, T4 &a4, T4 &b4, T5 &a5, T5 &b5, T6 &a6, T6 &b6, T7 &a7, T7 &b7, T8 &a8, T8 &b8) |
Exchange values of variables (a1 ,a2 ,...,a8 ) and (b1 ,b2 ,...,b8 ). More... | |
bool | endianness () |
Return the current endianness of the CPU. More... | |
template<typename T > | |
void | invert_endianness (T *const buffer, const unsigned int size) |
Invert endianness of a memory buffer. More... | |
template<typename T > | |
T & | invert_endianness (T &a) |
Invert endianness of a single variable. More... | |
unsigned long | time () |
Get the value of a system timer with a millisecond precision. More... | |
void | sleep (const unsigned int milliseconds) |
Sleep for a certain numbers of milliseconds. More... | |
unsigned int | _sleep (const unsigned int milliseconds, unsigned long &timer) |
unsigned int | wait (const unsigned int milliseconds) |
Wait for a certain number of milliseconds since the last call. More... | |
void | srand () |
template<typename T > | |
const T | rol (const T a, const unsigned int n=1) |
Return a left bitwise-rotated number. More... | |
template<typename T > | |
const T | ror (const T a, const unsigned int n=1) |
Return a right bitwise-rotated number. More... | |
template<typename T > | |
T | abs (const T a) |
Return the absolute value of a number. More... | |
bool | abs (const bool a) |
unsigned char | abs (const unsigned char a) |
unsigned short | abs (const unsigned short a) |
unsigned int | abs (const unsigned int a) |
unsigned long | abs (const unsigned long a) |
double | abs (const double a) |
float | abs (const float a) |
int | abs (const int a) |
template<typename T > | |
T | sqr (const T val) |
Return the square of a number. More... | |
int | xln (const int x) |
Return 1 + log_10(x). More... | |
template<typename t1 , typename t2 > | |
cimg::superset< t1, t2 >::type | min (const t1 &a, const t2 &b) |
Return the minimum value between two numbers. More... | |
template<typename t1 , typename t2 , typename t3 > | |
cimg::superset2< t1, t2, t3 >::type | min (const t1 &a, const t2 &b, const t3 &c) |
Return the minimum value between three numbers. More... | |
template<typename t1 , typename t2 , typename t3 , typename t4 > | |
cimg::superset3< t1, t2, t3, t4 >::type | min (const t1 &a, const t2 &b, const t3 &c, const t4 &d) |
Return the minimum value between four numbers. More... | |
template<typename t1 , typename t2 > | |
cimg::superset< t1, t2 >::type | max (const t1 &a, const t2 &b) |
Return the maximum value between two numbers. More... | |
template<typename t1 , typename t2 , typename t3 > | |
cimg::superset2< t1, t2, t3 >::type | max (const t1 &a, const t2 &b, const t3 &c) |
Return the maximum value between three numbers. More... | |
template<typename t1 , typename t2 , typename t3 , typename t4 > | |
cimg::superset3< t1, t2, t3, t4 >::type | max (const t1 &a, const t2 &b, const t3 &c, const t4 &d) |
Return the maximum value between four numbers. More... | |
template<typename T > | |
T | sign (const T x) |
Return the sign of a number. More... | |
template<typename T > | |
unsigned int | nearest_pow2 (const T x) |
Return the nearest power of 2 higher than a given number. More... | |
template<typename T > | |
T | mod (const T &x, const T &m) |
Return the modulo of a number. More... | |
int | mod (const bool x, const bool m) |
int | mod (const char x, const char m) |
int | mod (const short x, const short m) |
int | mod (const int x, const int m) |
int | mod (const long x, const long m) |
int | mod (const unsigned char x, const unsigned char m) |
int | mod (const unsigned short x, const unsigned short m) |
int | mod (const unsigned int x, const unsigned int m) |
int | mod (const unsigned long x, const unsigned long m) |
template<typename T > | |
T | minmod (const T a, const T b) |
Return the minmod of two numbers. More... | |
double | rand () |
Return a random variable between [0,1] with respect to an uniform distribution. More... | |
double | crand () |
Return a random variable between [-1,1] with respect to an uniform distribution. More... | |
double | grand () |
Return a random variable following a gaussian distribution and a standard deviation of 1. More... | |
unsigned int | prand (const double z) |
Return a random variable following a Poisson distribution of parameter z. More... | |
double | round (const double x, const double y, const int rounding_type=0) |
Return a rounded number. More... | |
double | _pythagore (double a, double b) |
char | uncase (const char x) |
Remove the 'case' of an ASCII character. More... | |
void | uncase (char *const string) |
Remove the 'case' of a C string. More... | |
float | atof (const char *const str) |
Read a float number from a C-string. More... | |
int | strncasecmp (const char *const s1, const char *const s2, const int l) |
Compare the first n characters of two C-strings, ignoring the case. More... | |
int | strcasecmp (const char *const s1, const char *const s2) |
Compare two C-strings, ignoring the case. More... | |
bool | strpare (char *const s, const char delimiter=' ', const bool symmetric=false) |
Remove useless delimiters on the borders of a C-string. More... | |
void | strclean (char *const s) |
Remove useless spaces and symmetric delimiters ', " and ` from a C-string. More... | |
void | strescape (char *const s) |
Replace explicit escape sequences '' in C-strings. More... | |
const char * | basename (const char *const s) |
Compute the basename of a filename. More... | |
const char * | filenamerand () |
void | winformat_string (char *const s) |
const char * | temporary_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path to store temporary files. More... | |
const char * | imagemagick_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path to the ImageMagick's convert tool. More... | |
const char * | graphicsmagick_path (const char *const user_path=0, const bool reinit_path=false) |
Return path of the GraphicsMagick's gm tool. More... | |
const char * | medcon_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path of the XMedcon tool. More... | |
const char * | ffmpeg_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path to the 'ffmpeg' command. More... | |
const char * | gzip_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path to the 'gzip' command. More... | |
const char * | gunzip_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path to the 'gunzip' command. More... | |
const char * | dcraw_path (const char *const user_path=0, const bool reinit_path=false) |
Return or set path to the 'dcraw' command. More... | |
const char * | split_filename (const char *const filename, char *const body=0) |
Split a filename into two strings 'body' and 'extension'. More... | |
char * | number_filename (const char *const filename, const int number, const unsigned int n, char *const string) |
Create a numbered version of a filename. More... | |
std::FILE * | fopen (const char *const path, const char *const mode) |
Open a file, and check for possible errors. More... | |
int | fclose (std::FILE *file) |
Close a file, and check for possible errors. More... | |
const char * | file_type (std::FILE *const file, const char *const filename) |
Try to guess the image format of a filename, using its magick numbers. More... | |
template<typename T > | |
int | fread (T *const ptr, const unsigned int nmemb, std::FILE *stream) |
Read file data, and check for possible errors. More... | |
template<typename T > | |
int | fwrite (const T *ptr, const unsigned int nmemb, std::FILE *stream) |
Write data to a file, and check for possible errors. More... | |
const char * | option (const char *const name, const int argc, const char *const *const argv, const char *defaut, const char *const usage=0) |
bool | option (const char *const name, const int argc, const char *const *const argv, const bool defaut, const char *const usage=0) |
int | option (const char *const name, const int argc, const char *const *const argv, const int defaut, const char *const usage=0) |
char | option (const char *const name, const int argc, const char *const *const argv, const char defaut, const char *const usage=0) |
float | option (const char *const name, const int argc, const char *const *const argv, const float defaut, const char *const usage=0) |
double | option (const char *const name, const int argc, const char *const *const argv, const double defaut, const char *const usage=0) |
const char * | argument (const unsigned int nb, const int argc, const char *const *const argv, const unsigned int nb_singles=0,...) |
template<typename t > | |
int | dialog (const char *title, const char *msg, const char *button1_txt, const char *button2_txt, const char *button3_txt, const char *button4_txt, const char *button5_txt, const char *button6_txt, const CImg< t > &logo, const bool centering=false) |
Display a dialog box, where a user can click standard buttons. More... | |
Variables | |
const char | t_normal [] = { 0 } |
const char *const | t_red = cimg::t_normal |
const char *const *const | t_bold = cimg::t_normal |
const char *const *const *const | t_purple = cimg::t_normal |
const char *const *const *const *const | t_green = cimg::t_normal |
const unsigned int | keyESC = 1U |
const unsigned int | keyF1 = 2U |
const unsigned int | keyF2 = 3U |
const unsigned int | keyF3 = 4U |
const unsigned int | keyF4 = 5U |
const unsigned int | keyF5 = 6U |
const unsigned int | keyF6 = 7U |
const unsigned int | keyF7 = 8U |
const unsigned int | keyF8 = 9U |
const unsigned int | keyF9 = 10U |
const unsigned int | keyF10 = 11U |
const unsigned int | keyF11 = 12U |
const unsigned int | keyF12 = 13U |
const unsigned int | keyPAUSE = 14U |
const unsigned int | key1 = 15U |
const unsigned int | key2 = 16U |
const unsigned int | key3 = 17U |
const unsigned int | key4 = 18U |
const unsigned int | key5 = 19U |
const unsigned int | key6 = 20U |
const unsigned int | key7 = 21U |
const unsigned int | key8 = 22U |
const unsigned int | key9 = 23U |
const unsigned int | key0 = 24U |
const unsigned int | keyBACKSPACE = 25U |
const unsigned int | keyINSERT = 26U |
const unsigned int | keyHOME = 27U |
const unsigned int | keyPAGEUP = 28U |
const unsigned int | keyTAB = 29U |
const unsigned int | keyQ = 30U |
const unsigned int | keyW = 31U |
const unsigned int | keyE = 32U |
const unsigned int | keyR = 33U |
const unsigned int | keyT = 34U |
const unsigned int | keyY = 35U |
const unsigned int | keyU = 36U |
const unsigned int | keyI = 37U |
const unsigned int | keyO = 38U |
const unsigned int | keyP = 39U |
const unsigned int | keyDELETE = 40U |
const unsigned int | keyEND = 41U |
const unsigned int | keyPAGEDOWN = 42U |
const unsigned int | keyCAPSLOCK = 43U |
const unsigned int | keyA = 44U |
const unsigned int | keyS = 45U |
const unsigned int | keyD = 46U |
const unsigned int | keyF = 47U |
const unsigned int | keyG = 48U |
const unsigned int | keyH = 49U |
const unsigned int | keyJ = 50U |
const unsigned int | keyK = 51U |
const unsigned int | keyL = 52U |
const unsigned int | keyENTER = 53U |
const unsigned int | keySHIFTLEFT = 54U |
const unsigned int | keyZ = 55U |
const unsigned int | keyX = 56U |
const unsigned int | keyC = 57U |
const unsigned int | keyV = 58U |
const unsigned int | keyB = 59U |
const unsigned int | keyN = 60U |
const unsigned int | keyM = 61U |
const unsigned int | keySHIFTRIGHT = 62U |
const unsigned int | keyARROWUP = 63U |
const unsigned int | keyCTRLLEFT = 64U |
const unsigned int | keyAPPLEFT = 65U |
const unsigned int | keyALT = 66U |
const unsigned int | keySPACE = 67U |
const unsigned int | keyALTGR = 68U |
const unsigned int | keyAPPRIGHT = 69U |
const unsigned int | keyMENU = 70U |
const unsigned int | keyCTRLRIGHT = 71U |
const unsigned int | keyARROWLEFT = 72U |
const unsigned int | keyARROWDOWN = 73U |
const unsigned int | keyARROWRIGHT = 74U |
const unsigned int | keyPAD0 = 75U |
const unsigned int | keyPAD1 = 76U |
const unsigned int | keyPAD2 = 77U |
const unsigned int | keyPAD3 = 78U |
const unsigned int | keyPAD4 = 79U |
const unsigned int | keyPAD5 = 80U |
const unsigned int | keyPAD6 = 81U |
const unsigned int | keyPAD7 = 82U |
const unsigned int | keyPAD8 = 83U |
const unsigned int | keyPAD9 = 84U |
const unsigned int | keyPADADD = 85U |
const unsigned int | keyPADSUB = 86U |
const unsigned int | keyPADMUL = 87U |
const unsigned int | keyPADDIV = 88U |
const double | valuePI = 3.14159265358979323846 |
Definition of the mathematical constant PI. More... | |
const unsigned int | font7x11 [7 *11 *256/32] |
const unsigned int | font10x13 [256 *10 *13/32] |
const unsigned int | font8x17 [8 *17 *256/32] |
const unsigned int | font10x19 [10 *19 *256/32] |
const unsigned int | font12x24 [12 *24 *256/32] |
const unsigned int | font16x32 [16 *32 *256/32] |
const unsigned int | font19x38 [19 *38 *256/32] |
const unsigned int | font29x57 [29 *57 *256/32] |
const unsigned char | logo40x38 [4576] |
Namespace that encompasses low-level functions and variables of the CImg Library.
Most of the functions and variables within this namespace are used by the library for low-level processing. Nevertheless, documented variables and functions of this namespace may be used safely in your own source code.
using namespace cimg_library::cimg;
in your source code, since a lot of functions of the cimg::
namespace have prototypes similar to standard C functions that could defined in the global namespace ::
.
|
inline |
Definition at line 4881 of file CImg.h.
Referenced by CImg< uintT >::SVD().
|
inline |
Definition at line 4635 of file CImg.h.
References sleep(), and time().
Referenced by wait(), and CImgDisplay::wait().
|
inline |
Return the absolute value of a number.
std::abs()
or std::fabs()
because it is able to consider a variable of any type, without cast needed. Definition at line 4687 of file CImg.h.
Referenced by CImg< uintT >::_display_object3d(), CImg< uintT >::_draw_ellipse(), CImg< uintT >::_draw_object3d(), CImg< uintT >::_draw_scanline(), CImg< uintT >::_get_select(), CImg< uintT >::_load_bmp(), CImg< uintT >::_LU(), _pythagore(), CImg< uintT >::abs(), CImg< uintT >::distance_hamilton(), CImg< uintT >::draw_axis(), CImg< uintT >::draw_fill(), CImg< uintT >::draw_gaussian(), CImg< uintT >::draw_image(), CImg< uintT >::draw_line(), CImg< uintT >::draw_mandelbrot(), CImg< uintT >::draw_plasma(), CImg< uintT >::draw_point(), CImg< uintT >::draw_quiver(), CImg< uintT >::draw_rectangle(), CImg< uintT >::draw_spline(), CImg< uintT >::draw_triangle(), CImg< T >::_cimg_math_parser::eval(), CImg< uintT >::get_blur_patch(), CImg< uintT >::get_displacement_field(), CImg< uintT >::get_norm(), CImg< uintT >::get_rotate(), CImg< uintT >::get_select_graph(), CImg< uintT >::magnitude(), CImg< uintT >::sharpen(), CImg< uintT >::SVD(), CImg< uintT >::symmetric_eigen(), CImg< uintT >::translate(), and CImg< uintT >::variancemean().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 4711 of file CImg.h.
References NTS::abs().
|
inline |
Definition at line 5682 of file CImg.h.
References i, k, option(), and strcasecmp().
|
inline |
Read a float number from a C-string.
std::atof()
, but that it allows the retrieval of fractions as in "1/2". Definition at line 4905 of file CImg.h.
Referenced by main(), option(), ComSwitch::parseValuesFromArguments(), Rocin::read_parameter_file(), remesh(), and Rocprop::set_option().
|
inline |
Compute the basename of a filename.
Definition at line 4989 of file CImg.h.
References cimg_file_separator.
Referenced by CImg< uintT >::_save_cpp(), and option().
|
inline |
Return a random variable between [-1,1] with respect to an uniform distribution.
Definition at line 4840 of file CImg.h.
References rand().
Referenced by CImg< uintT >::noise().
|
inline |
Return or set path to the 'dcraw' command.
Definition at line 5439 of file CImg.h.
References fclose(), fopen(), and winformat_string().
Referenced by CImg< uintT >::load_dcraw_external().
|
inline |
Definition at line 37329 of file CImg.h.
|
inline |
Display a dialog box, where a user can click standard buttons.
Up to 6 buttons can be defined in the dialog window. This function returns when a user clicked one of the button or closed the dialog window.
title | = Title of the dialog window. |
msg | = Main message displayed inside the dialog window. |
button1_txt | = Label of the 1st button. |
button2_txt | = Label of the 2nd button. |
button3_txt | = Label of the 3rd button. |
button4_txt | = Label of the 4th button. |
button5_txt | = Label of the 5th button. |
button6_txt | = Label of the 6th button. |
logo | = Logo image displayed at the left of the main message. This parameter is optional. |
centering | = Tell to center the dialog window on the screen. |
Definition at line 37190 of file CImg.h.
References CImgDisplay::button, by, cimg_stdout, cimglist_for, CImgDisplay::dimx(), CImgList< T >::dimx(), CImgDisplay::dimy(), CImg< T >::display(), CImg< T >::draw_line(), CImgDisplay::is_closed, CImgDisplay::is_resized, CImgDisplay::key, keyARROWDOWN, keyARROWLEFT, keyARROWRIGHT, keyARROWUP, keyENTER, keyESC, keyTAB, max(), CImgDisplay::mouse_x, CImgDisplay::mouse_y, CImgDisplay::move(), CImgDisplay::resize(), CImgDisplay::screen_dimx(), CImgDisplay::screen_dimy(), CImg< T >::transfer_to(), CImgList< T >::transfer_to(), and CImgDisplay::wait().
|
inline |
Return the current endianness of the CPU.
false
for "Little Endian", true
for "Big Endian". Definition at line 4572 of file CImg.h.
References x.
Referenced by CImgList< uintT >::_load_cimg(), CImg< uintT >::_load_inr(), CImg< uintT >::_load_png(), CImg< uintT >::_load_pnm(), CImgList< uintT >::_save_cimg(), CImg< uintT >::_save_inr(), CImg< uintT >::_save_png(), CImg< uintT >::_save_pnm(), info(), and CImgList< uintT >::load_parrec().
|
inline |
Evaluate math expression.
Definition at line 37338 of file CImg.h.
References CImgList< T >::empty().
Referenced by main().
|
inline |
Get/set the current CImg exception mode.
The way error messages are handled by CImg can be changed dynamically, using this function. Possible values are :
Definition at line 1940 of file CImg.h.
References cimg_debug.
Referenced by CImg< uintT >::fill(), CImg< uintT >::load(), CImgList< uintT >::load(), CImgList< uintT >::load_ffmpeg_external(), CImg< uintT >::load_other(), CImg< uintT >::max(), CImg< uintT >::min(), CImg< uintT >::operator%=(), CImg< uintT >::operator&=(), CImg< uintT >::operator*=(), CImg< uintT >::operator+=(), CImg< uintT >::operator-=(), CImg< uintT >::operator/=(), CImg< uintT >::operator=(), CImg< uintT >::operator^=(), CImg< uintT >::operator|=(), CImg< uintT >::pow(), CImg< uintT >::save_other(), and warn().
|
inline |
Close a file, and check for possible errors.
Definition at line 5507 of file CImg.h.
References warn().
Referenced by CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), CImg< uintT >::_load_analyze(), CImg< uintT >::_load_ascii(), CImg< uintT >::_load_bmp(), CImgList< uintT >::_load_cimg(), CImg< uintT >::_load_dlm(), CImg< uintT >::_load_inr(), CImg< uintT >::_load_jpeg(), CImg< uintT >::_load_off(), CImg< uintT >::_load_pandore(), CImg< uintT >::_load_png(), CImg< uintT >::_load_pnm(), CImg< uintT >::_load_raw(), CImg< uintT >::_load_rgb(), CImg< uintT >::_load_rgba(), CImgList< uintT >::_load_yuv(), CImg< uintT >::_save_ascii(), CImg< uintT >::_save_bmp(), CImgList< uintT >::_save_cimg(), CImg< uintT >::_save_cpp(), CImg< uintT >::_save_dlm(), CImgList< uintT >::_save_empty_cimg(), CImg< uintT >::_save_inr(), CImg< uintT >::_save_jpeg(), CImg< uintT >::_save_off(), CImg< uintT >::_save_pandore(), CImg< uintT >::_save_png(), CImg< uintT >::_save_pnm(), CImg< uintT >::_save_raw(), CImg< uintT >::_save_rgb(), CImg< uintT >::_save_rgba(), CImgList< uintT >::_save_yuv(), dcraw_path(), ffmpeg_path(), file_type(), fileExists(), Rocout::get_fname(), get_restart_time(), CImg< uintT >::get_select_graph(), graphicsmagick_path(), gunzip_path(), gzip_path(), imagemagick_path(), init_profiling(), CImg< uintT >::load_dcraw_external(), CImgList< uintT >::load_ffmpeg_external(), CImg< uintT >::load_graphicsmagick_external(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), CImg< uintT >::load_imagemagick_external(), CImg< uintT >::load_medcon_external(), CImgList< uintT >::load_parrec(), medcon_path(), Scheduler::print(), Coupling::print(), Roccom_base::print_profile(), read_general(), read_reg(), Coupling::read_restart_info(), MeshImpl::read_vtk(), CImg< uintT >::save_analyze(), CImgList< uintT >::save_ffmpeg_external(), CImg< uintT >::save_graphicsmagick_external(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), CImg< uintT >::save_imagemagick_external(), CImg< uintT >::save_medcon_external(), temporary_path(), FullyCoupling::update_distances(), FullyCoupling::update_integrals(), write_bounds(), Coupling::write_restart_info(), writeFlo(), writeMblock(), writeTop(), bcReader::~bcReader(), and FileTokenizer::~FileTokenizer().
|
inline |
Return or set path to the 'ffmpeg' command.
Definition at line 5346 of file CImg.h.
References fclose(), fopen(), and winformat_string().
Referenced by CImgList< uintT >::load_ffmpeg_external().
|
inline |
Try to guess the image format of a filename, using its magick numbers.
Definition at line 5516 of file CImg.h.
References fclose(), fopen(), and fread().
Referenced by CImg< uintT >::load().
|
inline |
Definition at line 4996 of file CImg.h.
References k, rand(), srand(), and v.
Referenced by CImg< uintT >::load_dcraw_external(), CImgList< uintT >::load_ffmpeg_external(), CImg< uintT >::load_graphicsmagick_external(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), CImg< uintT >::load_imagemagick_external(), CImg< uintT >::load_medcon_external(), CImgList< uintT >::save_ffmpeg_external(), CImg< uintT >::save_graphicsmagick_external(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), CImg< uintT >::save_imagemagick_external(), CImg< uintT >::save_medcon_external(), and temporary_path().
|
inline |
Open a file, and check for possible errors.
Definition at line 5494 of file CImg.h.
Referenced by CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), CImg< uintT >::_load_analyze(), CImg< uintT >::_load_ascii(), CImg< uintT >::_load_bmp(), CImgList< uintT >::_load_cimg(), CImg< uintT >::_load_dlm(), CImg< uintT >::_load_inr(), CImg< uintT >::_load_jpeg(), CImg< uintT >::_load_off(), CImg< uintT >::_load_pandore(), CImg< uintT >::_load_png(), CImg< uintT >::_load_pnm(), CImg< uintT >::_load_raw(), CImg< uintT >::_load_rgb(), CImg< uintT >::_load_rgba(), CImgList< uintT >::_load_yuv(), CImg< uintT >::_save_ascii(), CImg< uintT >::_save_bmp(), CImgList< uintT >::_save_cimg(), CImg< uintT >::_save_cpp(), CImg< uintT >::_save_dlm(), CImgList< uintT >::_save_empty_cimg(), CImg< uintT >::_save_inr(), CImg< uintT >::_save_jpeg(), CImg< uintT >::_save_off(), CImg< uintT >::_save_pandore(), CImg< uintT >::_save_png(), CImg< uintT >::_save_pnm(), CImg< uintT >::_save_raw(), CImg< uintT >::_save_rgb(), CImg< uintT >::_save_rgba(), CImgList< uintT >::_save_yuv(), Coupling::baseInit(), dcraw_path(), ffmpeg_path(), file_type(), fileExists(), Rocout::get_fname(), get_restart_time(), CImg< uintT >::get_select_graph(), graphicsmagick_path(), gunzip_path(), gzip_path(), imagemagick_path(), init_profiling(), CImg< uintT >::load_dcraw_external(), CImgList< uintT >::load_ffmpeg_external(), CImg< uintT >::load_graphicsmagick_external(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), CImg< uintT >::load_imagemagick_external(), CImg< uintT >::load_medcon_external(), CImgList< uintT >::load_parrec(), medcon_path(), Scheduler::print(), Coupling::print(), Roccom_base::print_profile(), Agent::read_by_control_file(), read_general(), read_reg(), Coupling::read_restart_info(), MeshImpl::read_vtk(), readBoundaries(), CImg< uintT >::save_analyze(), CImgList< uintT >::save_ffmpeg_external(), CImg< uintT >::save_graphicsmagick_external(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), CImg< uintT >::save_imagemagick_external(), CImg< uintT >::save_medcon_external(), temporary_path(), FullyCoupling::update_distances(), FullyCoupling::update_integrals(), write_bounds(), Coupling::write_restart_info(), writeFlo(), writeMblock(), and writeTop().
|
inline |
Read file data, and check for possible errors.
Definition at line 5569 of file CImg.h.
References warn().
Referenced by CImg< uintT >::_load_analyze(), CImg< uintT >::_load_bmp(), CImg< uintT >::_load_pandore(), CImg< uintT >::_load_png(), CImg< uintT >::_load_pnm(), CImg< uintT >::_load_raw(), CImg< uintT >::_load_rgb(), CImg< uintT >::_load_rgba(), CImgList< uintT >::_load_yuv(), file_type(), FileTokenizer::get_newline(), FileTokenizer::get_string(), CImgList< uintT >::load_parrec(), readDouble(), gridgenBinaryFormatter< float >::readDouble(), readInt(), and gridgenBinaryFormatter< float >::readInt().
|
inline |
Write data to a file, and check for possible errors.
Definition at line 5587 of file CImg.h.
References warn().
Referenced by CImg< uintT >::_save_bmp(), CImgList< uintT >::_save_cimg(), CImg< uintT >::_save_inr(), CImg< uintT >::_save_pnm(), CImg< uintT >::_save_raw(), CImg< uintT >::_save_rgb(), CImg< uintT >::_save_rgba(), CImgList< uintT >::_save_yuv(), CImg< uintT >::save_analyze(), and writeMblock().
|
inline |
Return a random variable following a gaussian distribution and a standard deviation of 1.
Definition at line 4845 of file CImg.h.
References cimg_library::log(), rand(), and sqrt().
Referenced by CImg< uintT >::draw_plasma(), CImg< T >::_cimg_math_parser::eval(), CImg< uintT >::noise(), and prand().
|
inline |
Return path of the GraphicsMagick's gm
tool.
Definition at line 5198 of file CImg.h.
References fclose(), fopen(), k, and winformat_string().
Referenced by info(), CImg< uintT >::load_graphicsmagick_external(), and CImg< uintT >::save_graphicsmagick_external().
|
inline |
Return or set path to the 'gunzip' command.
Definition at line 5408 of file CImg.h.
References fclose(), fopen(), and winformat_string().
Referenced by CImg< uintT >::load_gzip_external(), and CImgList< uintT >::load_gzip_external().
|
inline |
Return or set path to the 'gzip' command.
Definition at line 5377 of file CImg.h.
References fclose(), fopen(), and winformat_string().
Referenced by CImg< uintT >::save_gzip_external(), and CImgList< uintT >::save_gzip_external().
|
inline |
Return or set path to the ImageMagick's convert
tool.
Definition at line 5094 of file CImg.h.
References fclose(), fopen(), k, and winformat_string().
Referenced by info(), CImg< uintT >::load_imagemagick_external(), and CImg< uintT >::save_imagemagick_external().
|
inline |
Print informations about CImg environement variables.
Printing is done on the standard error output.
Definition at line 5702 of file CImg.h.
References cimg_debug, cimg_display, cimg_OS, cimg_stdout, cimg_version, endianness(), graphicsmagick_path(), imagemagick_path(), medcon_path(), t_bold, t_green, t_normal, t_red, and temporary_path().
Referenced by FaceOffset_3::compute_eigenvectors(), Rocmop::compute_eigenvectors(), PatchData::have_computed_info(), main(), and PatchData::note_have_info().
|
inline |
Invert endianness of a memory buffer.
Definition at line 4579 of file CImg.h.
Referenced by CImg< uintT >::_load_analyze(), CImg< uintT >::_load_pandore(), CImg< uintT >::_load_png(), CImg< uintT >::_load_pnm(), CImg< uintT >::_load_raw(), CImgList< uintT >::_save_cimg(), CImg< uintT >::_save_png(), CImg< uintT >::_save_pnm(), invert_endianness(), CImg< uintT >::invert_endianness(), and CImgList< uintT >::load_parrec().
|
inline |
Invert endianness of a single variable.
Definition at line 4599 of file CImg.h.
References invert_endianness().
|
inline |
Return the maximum value between two numbers.
Definition at line 4749 of file CImg.h.
Referenced by CImg< uintT >::_cubic_atX(), CImg< uintT >::_cubic_atXY(), CImg< uintT >::_display(), CImg< uintT >::_display_object3d(), CImg< uintT >::_draw_ellipse(), CImg< uintT >::_draw_object3d(), CImg< uintT >::_draw_scanline(), CImg< uintT >::_load_dlm(), CImgList< uintT >::assign(), CImg< uintT >::autocrop(), CImg< uintT >::blur(), CImg< uintT >::blur_bilateral(), CImgList< uintT >::CImgList(), CImg< uintT >::cubic_atX(), CImg< uintT >::cubic_atXY(), dialog(), CImg< uintT >::distance_hamilton(), CImg< uintT >::draw_fill(), CImg< uintT >::draw_gaussian(), CImg< uintT >::draw_image(), CImg< uintT >::draw_line(), CImg< uintT >::draw_mandelbrot(), CImg< uintT >::draw_plasma(), CImg< uintT >::draw_point(), CImg< uintT >::draw_quiver(), CImg< uintT >::draw_rectangle(), CImg< uintT >::draw_spline(), CImg< uintT >::draw_triangle(), CImg< uintT >::edge_tensors(), CImg< T >::_cimg_math_parser::eval(), CImgList< uintT >::get_append(), CImg< uintT >::get_blur_patch(), CImg< uintT >::get_displacement_field(), CImg< uintT >::get_distance(), CImg< uintT >::get_identity_matrix(), CImg< uintT >::get_resize(), CImg< uintT >::get_rotate(), CImg< uintT >::identity_matrix(), CImg< uintT >::load_tiff(), max(), CImg< uintT >::max(), CImg< uintT >::resize_object3d(), CImg< uintT >::RGBtoHSL(), CImg< uintT >::RGBtoHSV(), CImg< uintT >::sharpen(), and CImg< uintT >::SVD().
|
inline |
|
inline |
|
inline |
Return or set path of the XMedcon
tool.
Definition at line 5302 of file CImg.h.
References fclose(), fopen(), and winformat_string().
Referenced by info(), CImg< uintT >::load_medcon_external(), and CImg< uintT >::save_medcon_external().
|
inline |
Return the minimum value between two numbers.
Definition at line 4728 of file CImg.h.
Referenced by CImg< uintT >::_cubic_atX(), CImg< uintT >::_cubic_atXY(), CImg< uintT >::_display_object3d(), CImg< uintT >::_draw_object3d(), CImg< uintT >::_draw_scanline(), CImg< uintT >::_get_select(), CImg< uintT >::_load_bmp(), CImg< uintT >::_load_pnm(), CImg< uintT >::_load_rgb(), CImg< uintT >::_load_rgba(), CImgList< uintT >::_save_cimg(), CImg< uintT >::atan2(), CImg< uintT >::autocrop(), CImg< uintT >::cubic_atX(), CImg< uintT >::cubic_atXY(), CImg< uintT >::dot(), CImg< uintT >::draw_line(), CImg< uintT >::draw_point(), CImg< uintT >::draw_polygon(), CImg< uintT >::draw_spline(), CImg< uintT >::draw_triangle(), CImg< T >::_cimg_math_parser::eval(), CImg< uintT >::get_BayertoRGB(), CImg< uintT >::get_CMYtoCMYK(), CImg< uintT >::get_resize(), CImg< uintT >::get_rotate(), CImg< uintT >::get_split(), CImg< uintT >::max(), min(), CImg< uintT >::min(), CImg< uintT >::pow(), CImg< uintT >::quantize(), CImg< uintT >::RGBtoHSI(), CImg< uintT >::RGBtoHSL(), CImg< uintT >::RGBtoHSV(), CImg< uintT >::set_vector_at(), and CImg< uintT >::SVD().
|
inline |
|
inline |
|
inline |
Return the minmod of two numbers.
minmod(a
,b
) is defined to be :
a
,b
) = min(a
,b
), if a
and b
have the same sign.a
,b
) = 0, if a
and b
have different signs. Definition at line 4828 of file CImg.h.
Referenced by CImg< uintT >::sharpen().
|
inline |
Return the modulo of a number.
Definition at line 4788 of file CImg.h.
References dx.
Referenced by CImg< uintT >::draw_grid(), CImg< T >::_cimg_math_parser::eval(), CImg< uintT >::get_rotate(), CImg< uintT >::get_warp(), Coupling::normalize_modname(), CImg< uintT >::operator%=(), round(), and CImg< uintT >::translate().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Return the nearest power of 2 higher than a given number.
Definition at line 4776 of file CImg.h.
References i.
Referenced by CImgList< uintT >::assign(), and CImgList< uintT >::CImgList().
|
inline |
Create a numbered version of a filename.
Definition at line 5483 of file CImg.h.
References split_filename().
Referenced by CImg< uintT >::save(), and CImgList< uintT >::save().
|
inline |
Definition at line 5604 of file CImg.h.
References basename(), cimg_stdout, k, t_bold, t_green, t_normal, and t_red.
Referenced by argument(), get_parameter_list(), Agent::init_callback(), option(), ComSwitch::readOptions(), Rocprop::set_option(), Rocmop::set_value(), and Rocout::write_parameter_file().
|
inline |
Definition at line 5634 of file CImg.h.
References option(), s, and strcasecmp().
|
inline |
Definition at line 5642 of file CImg.h.
|
inline |
Definition at line 5652 of file CImg.h.
|
inline |
Definition at line 5662 of file CImg.h.
References atof(), option(), and s.
|
inline |
Definition at line 5672 of file CImg.h.
References atof(), option(), and s.
|
inline |
Return a random variable following a Poisson distribution of parameter z.
Definition at line 4856 of file CImg.h.
References cimg_library::exp(), grand(), k, rand(), s, sqrt(), and y.
Referenced by CImg< uintT >::noise().
|
inline |
Return a random variable between [0,1] with respect to an uniform distribution.
Definition at line 4833 of file CImg.h.
References srand().
Referenced by crand(), CImg< T >::_cimg_math_parser::eval(), filenamerand(), grand(), main(), CImg< uintT >::noise(), Rocblas::random< T >::operator()(), Rocblas::random< double >::operator()(), Rocmop::perturb_stationary(), prand(), CImg< uintT >::rand(), Randomize::randomize_vertex(), and srand().
|
inline |
|
inline |
Return a right bitwise-rotated number.
Definition at line 4677 of file CImg.h.
References n.
Referenced by CImg< uintT >::_load_bmp().
|
inline |
Return a rounded number.
x | is the number to be rounded. |
y | is the rounding precision. |
rounding_type | defines the type of rounding (0=nearest, -1=backward, 1=forward). |
Definition at line 4871 of file CImg.h.
Referenced by CImg< T >::_cimg_math_parser::eval(), and CImg< uintT >::round().
|
inline |
Return the sign of a number.
Definition at line 4770 of file CImg.h.
Referenced by CImg< uintT >::distance_hamilton(), CImg< T >::_cimg_math_parser::eval(), and CImg< uintT >::sharpen().
|
inline |
|
inline |
Split a filename into two strings 'body' and 'extension'.
Definition at line 5470 of file CImg.h.
Referenced by CImg< uintT >::_load_analyze(), CImg< uintT >::load(), CImgList< uintT >::load(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), CImg< uintT >::load_medcon_external(), CImgList< uintT >::load_parrec(), number_filename(), CImg< uintT >::save(), CImgList< uintT >::save(), CImg< uintT >::save_analyze(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), and CImg< uintT >::save_medcon_external().
|
inline |
Return the square of a number.
Definition at line 4717 of file CImg.h.
Referenced by CImg< uintT >::_draw_object3d(), CImg< uintT >::get_BayertoRGB(), CImg< uintT >::get_distance(), CImg< uintT >::get_index(), and QualityAssessor::Assessor::get_stddev().
|
inline |
Definition at line 4658 of file CImg.h.
References rand(), and time().
Referenced by filenamerand(), main(), and rand().
|
inline |
Compare two C-strings, ignoring the case.
Definition at line 4928 of file CImg.h.
References strncasecmp().
Referenced by CImg< uintT >::_load_analyze(), CImg< uintT >::_save_inr(), argument(), FindFirstGeometryDataset(), CImg< uintT >::get_hessian(), Scheduler::ActionItem::hasInput(), Scheduler::ActionItem::hasOutput(), CImg< uintT >::load(), CImgList< uintT >::load(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), option(), rocstar_driver(), CImg< uintT >::save(), CImgList< uintT >::save(), CImg< uintT >::save_analyze(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), and scan_files_HDF4().
|
inline |
Remove useless spaces and symmetric delimiters ', " and ` from a C-string.
Definition at line 4950 of file CImg.h.
References strpare().
Referenced by CImg< T >::_cimg_math_parser::_cimg_math_parser().
|
inline |
Replace explicit escape sequences '' in C-strings.
Definition at line 4962 of file CImg.h.
References cimg_strescape.
|
inline |
Compare the first n
characters of two C-strings, ignoring the case.
Definition at line 4915 of file CImg.h.
Referenced by CImg< uintT >::_get_permute_axes(), CImgList< uintT >::_load_cimg(), CImg< uintT >::_load_inr_header(), CImg< uintT >::_load_off(), CImg< uintT >::_load_pandore(), CImgList< uintT >::_save_cimg(), CImg< uintT >::load(), CImgList< uintT >::load(), CImg< uintT >::save_analyze(), scan_files_HDF4(), and strcasecmp().
|
inline |
Remove useless delimiters on the borders of a C-string.
Definition at line 4935 of file CImg.h.
Referenced by strclean().
|
inline |
Exchange values of variables a
and b
.
Definition at line 4522 of file CImg.h.
Referenced by CImg< uintT >::_draw_triangle(), CImg< uintT >::_get_select(), CImg< uintT >::_LU(), CImg< uintT >::_quicksort(), CImg< uintT >::dijkstra(), CImg< uintT >::draw_line(), CImg< uintT >::draw_plasma(), CImg< uintT >::draw_triangle(), CImg< uintT >::FFT(), CImg< uintT >::get_hessian(), CImg< uintT >::get_index(), CImg< uintT >::get_select_graph(), invert_endianness(), CImg< uintT >::isosurface3d(), CImg< uintT >::kth_smallest(), CImgList< uintT >::reverse_object3d(), swap(), CImg< uintT >::swap(), CImgList< uintT >::swap(), and CImg< uintT >::transpose().
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
std::system()
and is here because using the std::
version on Windows may open undesired consoles. Definition at line 4491 of file CImg.h.
Referenced by COM_F_FUNC2(), CImg< uintT >::load_dcraw_external(), CImgList< uintT >::load_ffmpeg_external(), CImg< uintT >::load_graphicsmagick_external(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), CImg< uintT >::load_imagemagick_external(), CImg< uintT >::load_medcon_external(), Coupling::restart_at_time(), CImgList< uintT >::save_ffmpeg_external(), CImg< uintT >::save_graphicsmagick_external(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), CImg< uintT >::save_imagemagick_external(), and CImg< uintT >::save_medcon_external().
|
inline |
Return a reference to a temporary variable of type T.
Definition at line 4515 of file CImg.h.
Referenced by CImg< uintT >::at(), CImgList< uintT >::atN(), CImgList< uintT >::atNX(), CImgList< uintT >::atNXY(), CImgList< uintT >::atNXYZ(), CImgList< uintT >::atNXYZV(), CImg< uintT >::atX(), CImg< uintT >::atXY(), CImg< uintT >::atXYZ(), and CImg< uintT >::atXYZV().
|
inline |
Return or set path to store temporary files.
Definition at line 5017 of file CImg.h.
References _cimg_test_temporary_path, fclose(), filenamerand(), fopen(), and winformat_string().
Referenced by info(), CImg< uintT >::load_dcraw_external(), CImgList< uintT >::load_ffmpeg_external(), CImg< uintT >::load_graphicsmagick_external(), CImg< uintT >::load_gzip_external(), CImgList< uintT >::load_gzip_external(), CImg< uintT >::load_imagemagick_external(), CImgList< uintT >::save_ffmpeg_external(), CImg< uintT >::save_graphicsmagick_external(), CImg< uintT >::save_gzip_external(), CImgList< uintT >::save_gzip_external(), and CImg< uintT >::save_imagemagick_external().
|
inline |
Get the value of a system timer with a millisecond precision.
Definition at line 4605 of file CImg.h.
Referenced by _sleep(), InterpolateBase::extrapolate_Linear(), CImgDisplay::frames_per_second(), main(), Rocin::read_windows(), flowprobe::ReadProbeData(), ComputeMeshMotion::run(), srand(), wait(), and write_hdf().
|
inline |
Remove the 'case' of an ASCII character.
Definition at line 4888 of file CImg.h.
Referenced by CImg< uintT >::_autocrop(), CImg< T >::_cimg_math_parser::_cimg_math_parser(), CImg< uintT >::assign(), CImg< uintT >::autocrop(), CImg< uintT >::deriche(), CImg< uintT >::FFT(), CImgList< uintT >::get_append(), CImg< uintT >::get_gradient(), CImg< uintT >::get_haar(), CImg< uintT >::get_split(), CImg< uintT >::mirror(), strncasecmp(), and uncase().
|
inline |
Remove the 'case' of a C string.
Acts in-place.
Definition at line 4896 of file CImg.h.
References uncase().
|
inline |
Wait for a certain number of milliseconds since the last call.
This function is equivalent to sleep() but the waiting time is computed with regard to the last call of wait(). It may be used to temporize your program properly.
Definition at line 4650 of file CImg.h.
References _sleep(), and time().
|
inline |
Display a warning message.
format | is a C-string describing the format of the message, as in std::printf() . |
Definition at line 4470 of file CImg.h.
References cimg_stdout, exception_mode(), t_normal, and t_red.
Referenced by CImg< uintT >::_load_analyze(), CImg< uintT >::_load_ascii(), CImg< uintT >::_load_jpeg(), CImg< uintT >::_load_off(), CImg< uintT >::_load_pnm(), CImgList< uintT >::_load_yuv(), CImg< uintT >::_save_bmp(), CImgList< uintT >::_save_cimg(), CImg< uintT >::_save_dlm(), CImg< uintT >::_save_jpeg(), CImg< uintT >::_save_png(), CImg< uintT >::_save_pnm(), CImg< uintT >::_save_rgb(), CImg< uintT >::_save_rgba(), CImg< uintT >::assign(), CImg< uintT >::eigen(), fclose(), CImgList< uintT >::FFT(), fread(), fwrite(), CImg< uintT >::invert(), CImgList< uintT >::load_ffmpeg(), CImg< uintT >::load_tiff(), CImgList< uintT >::load_tiff(), CImgList< uintT >::operator[](), CImgList< uintT >::remove(), CImg< uintT >::save_magick(), CImg< uintT >::solve(), and CImg< uintT >::symmetric_eigen().
|
inline |
Definition at line 5007 of file CImg.h.
Referenced by dcraw_path(), ffmpeg_path(), graphicsmagick_path(), gunzip_path(), gzip_path(), imagemagick_path(), medcon_path(), and temporary_path().
|
inline |
Return 1 + log_10(x).
Definition at line 4722 of file CImg.h.
References cimg_library::log10().
const unsigned int font10x13[256 *10 *13/32] |
Definition at line 2805 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font10x19[10 *19 *256/32] |
Definition at line 2935 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font12x24[12 *24 *256/32] |
Definition at line 3030 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font16x32[16 *32 *256/32] |
Definition at line 3169 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font19x38[19 *38 *256/32] |
Definition at line 3403 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font29x57[29 *57 *256/32] |
Definition at line 3729 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font7x11[7 *11 *256/32] |
Definition at line 2764 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int font8x17[8 *17 *256/32] |
Definition at line 2868 of file CImg.h.
Referenced by CImgList< uintT >::font().
const unsigned int key1 = 15U |
Definition at line 2685 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key2 = 16U |
Definition at line 2686 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key3 = 17U |
Definition at line 2687 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key4 = 18U |
Definition at line 2688 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key5 = 19U |
Definition at line 2689 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key6 = 20U |
Definition at line 2690 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key7 = 21U |
Definition at line 2691 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int key8 = 22U |
Definition at line 2692 of file CImg.h.
Referenced by CImgDisplay::is_key().
const unsigned int keyALT = 66U |
Definition at line 2736 of file CImg.h.
Referenced by CImg< uintT >::_display().
const unsigned int keyARROWDOWN = 73U |
Definition at line 2743 of file CImg.h.
Referenced by CImg< uintT >::_display(), dialog(), and CImg< uintT >::display_graph().
const unsigned int keyARROWLEFT = 72U |
Definition at line 2742 of file CImg.h.
Referenced by CImg< uintT >::_display(), dialog(), and CImg< uintT >::display_graph().
const unsigned int keyARROWRIGHT = 74U |
Definition at line 2744 of file CImg.h.
Referenced by CImg< uintT >::_display(), dialog(), and CImg< uintT >::display_graph().
const unsigned int keyARROWUP = 63U |
Definition at line 2733 of file CImg.h.
Referenced by CImg< uintT >::_display(), dialog(), and CImg< uintT >::display_graph().
const unsigned int keyBACKSPACE = 25U |
Definition at line 2695 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyC = 57U |
Definition at line 2727 of file CImg.h.
Referenced by CImg< uintT >::_display(), CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), and CImg< uintT >::get_select_graph().
const unsigned int keyCTRLLEFT = 64U |
Definition at line 2734 of file CImg.h.
Referenced by CImg< uintT >::_display(), CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), and CImg< uintT >::get_select_graph().
const unsigned int keyD = 46U |
Definition at line 2716 of file CImg.h.
Referenced by CImg< uintT >::_display(), CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), and CImg< uintT >::get_select_graph().
const unsigned int keyF = 47U |
Definition at line 2717 of file CImg.h.
Referenced by CImg< uintT >::_display(), CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), and CImg< uintT >::get_select_graph().
const unsigned int keyHOME = 27U |
Definition at line 2697 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyO = 38U |
Definition at line 2708 of file CImg.h.
Referenced by CImg< uintT >::_display_object3d(), and CImg< uintT >::_get_select().
const unsigned int keyP = 39U |
Definition at line 2709 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::_display_object3d().
const unsigned int keyPAD1 = 76U |
Definition at line 2746 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD2 = 77U |
Definition at line 2747 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD3 = 78U |
Definition at line 2748 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD4 = 79U |
Definition at line 2749 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD5 = 80U |
Definition at line 2750 of file CImg.h.
Referenced by CImg< uintT >::_display().
const unsigned int keyPAD6 = 81U |
Definition at line 2751 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD7 = 82U |
Definition at line 2752 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD8 = 83U |
Definition at line 2753 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAD9 = 84U |
Definition at line 2754 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPADADD = 85U |
Definition at line 2755 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPADSUB = 86U |
Definition at line 2756 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::display_graph().
const unsigned int keyPAGEDOWN = 42U |
Definition at line 2712 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::_get_select().
const unsigned int keyPAGEUP = 28U |
Definition at line 2698 of file CImg.h.
Referenced by CImg< uintT >::_display(), and CImg< uintT >::_get_select().
const unsigned int keyR = 33U |
Definition at line 2703 of file CImg.h.
Referenced by CImg< uintT >::_display(), CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), and CImg< uintT >::get_select_graph().
const unsigned int keyS = 45U |
Definition at line 2715 of file CImg.h.
Referenced by CImg< uintT >::_display_object3d(), CImg< uintT >::_get_select(), and CImg< uintT >::get_select_graph().
const unsigned int keySHIFTLEFT = 54U |
Definition at line 2724 of file CImg.h.
Referenced by CImg< uintT >::_display().
const unsigned int keyV = 58U |
Definition at line 2728 of file CImg.h.
Referenced by CImg< uintT >::_display_object3d().
const unsigned int keyZ = 55U |
Definition at line 2725 of file CImg.h.
Referenced by CImg< uintT >::_display_object3d().
const unsigned char logo40x38[4576] |
Definition at line 4440 of file CImg.h.
Referenced by CImg< uintT >::logo40x38().
const char* const * const t_bold = cimg::t_normal |
const char* const * const * const * const t_green = cimg::t_normal |
const char t_normal[] = { 0 } |
const char* const * const * const t_purple = cimg::t_normal |
const char* const t_red = cimg::t_normal |
const double valuePI = 3.14159265358979323846 |
Definition of the mathematical constant PI.
Definition at line 2761 of file CImg.h.
Referenced by CImg< T >::_cimg_math_parser::_cimg_math_parser(), CImg< uintT >::_draw_ellipse(), CImg< uintT >::blur_anisotropic(), CImg< uintT >::cone3d(), CImg< uintT >::cylinder3d(), CImg< uintT >::draw_arrow(), CImg< uintT >::FFT(), CImg< uintT >::get_rotate(), CImg< uintT >::HSItoRGB(), CImg< uintT >::RGBtoHSI(), and CImg< uintT >::torus3d().