-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
gmic.h
575 lines (476 loc) · 23.7 KB
/
gmic.h
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
/*
#
# File : gmic.h
# ( C++ header file )
#
# Description : GREYC's Magic for Image Computing - G'MIC API file
# ( https://gmic.eu )
#
# Note : Include this file in your C++ source code, if you
# want to use the G'MIC interpreter in your own program.
#
# Copyright : David Tschumperlé
# ( https://tschumperle.users.greyc.fr/ )
#
# Licenses : This file is 'dual-licensed', you have to choose one
# of the two licenses below to apply.
#
# CeCILL-C
# The CeCILL-C license is close to the GNU LGPL.
# ( http://cecill.info/licences/Licence_CeCILL-C_V1-en.html )
#
# or CeCILL v2.1
# The CeCILL license is compatible with the GNU GPL.
# ( http://cecill.info/licences/Licence_CeCILL_V2.1-en.html )
#
# This software is governed either by the CeCILL or the CeCILL-C license
# under French law and abiding by the rules of distribution of free software.
# You can use, modify and or redistribute the software under the terms of
# the CeCILL or CeCILL-C licenses as circulated by CEA, CNRS and INRIA
# at the following URL: "http://cecill.info".
#
# As a counterpart to the access to the source code and rights to copy,
# modify and redistribute granted by the license, users are provided only
# with a limited warranty and the software's author, the holder of the
# economic rights, and the successive licensors have only limited
# liability.
#
# In this respect, the user's attention is drawn to the risks associated
# with loading, using, modifying and/or developing or reproducing the
# software by the user in light of its specific status of free software,
# that may mean that it is complicated to manipulate, and that also
# therefore means that it is reserved for developers and experienced
# professionals having in-depth computer knowledge. Users are therefore
# encouraged to load and test the software's suitability as regards their
# requirements in conditions enabling the security of their systems and/or
# data to be ensured and, more generally, to use and operate it in the
# same conditions as regards security.
#
# The fact that you are presently reading this means that you have had
# knowledge of the CeCILL and CeCILL-C licenses and that you accept its terms.
#
*/
#ifndef gmic_version
#define gmic_version 350
#ifndef gmic_pixel_type
#define gmic_pixel_type float
#endif
// Define gmic_uint64 type.
#ifndef gmic_uint64
#if cimg_OS==2
#define gmic_uint64 __int64
#else // #if cimg_OS==2
#if UINTPTR_MAX==0xffffffff || defined(__arm__) || defined(_M_ARM) || ((ULONG_MAX)==(UINT_MAX))
#define gmic_uint64 unsigned long long
#else
#define gmic_uint64 unsigned long
#endif // #if UINTPTR_MAX==0xffffffff || defined(__arm__) || defined(_M_ARM) || ((ULONG_MAX)==(UINT_MAX))
#endif // #if cimg_OS==2
#endif // #ifndef gmic_uint64
// Define some special character codes used for replacement in double quoted strings.
const char gmic_dollar = 23, gmic_lbrace = 24, gmic_rbrace = 25, gmic_comma = 26, gmic_dquote = 28,
gmic_store = 29; // <- this one is only used in variable names.
//---------------------------------------------------------
// Public API for the 'gmic_image' and 'gmic_list' classes.
//---------------------------------------------------------
#ifndef gmic_core
#ifndef cimg_library
namespace gmic_library {
// Class 'gmic_image<T>'.
//-----------------------
template<typename T> struct gmic_image {
unsigned int _width; // Number of image columns (dimension along the X-axis)
unsigned int _height; // Number of image lines (dimension along the Y-axis)
unsigned int _depth; // Number of image slices (dimension along the Z-axis)
unsigned int _spectrum; // Number of image channels (dimension along the C-axis)
bool _is_shared; // Tells if the data buffer has been allocated by another object
T *_data; // Pointer to the first pixel value
// Destructor.
~gmic_image() {
if (!_is_shared) delete[] _data;
}
// Constructor.
gmic_image():_width(0),_height(0),_depth(0),_spectrum(0),_is_shared(false),_data(0) { }
// Allocate memory for specified image dimensions.
gmic_image<T>& assign(const unsigned int size_x, const unsigned int size_y=1,
const unsigned int size_z=1, const unsigned int size_c=1);
// Create image by copying existing buffer of t values.
template<typename t>
gmic_image<T>& assign(const t *const values, const unsigned int size_x, const unsigned int size_y=1,
const unsigned int size_z=1, const unsigned int size_c=1);
gmic_image<T>& assign(const T *const values, const unsigned int size_x, const unsigned int size_y,
const unsigned int size_z, const unsigned int size_c, const bool is_shared);
// Pixel access.
operator T*() {
return _data;
}
operator const T*() const {
return _data;
}
T& operator()(const unsigned int x, const unsigned int y=0, const unsigned z=0, const unsigned c=0) {
return _data[x + y*_width + z*_width*_height + c*_width*_height*_depth ];
}
const T& operator()(const unsigned int x, const unsigned int y=0, const unsigned z=0, const unsigned c=0) const {
return _data[x + y*_width + z*_width*_height + c*_width*_height*_depth ];
}
};
// Class 'gmic_list<T>'.
//----------------------
template<typename T> struct gmic_list {
unsigned int _width; // Number of images in the list
unsigned int _allocated_width; // Allocated items in the list (must be 2^N and >size)
gmic_image<T> *_data; // Pointer to the first image of the list
// Destructor.
~gmic_list() {
delete[] _data;
}
// Constructor.
gmic_list():_width(0),_allocated_width(0),_data(0) {}
// Allocate memory for specified list dimension.
gmic_list<T>& assign(const unsigned int n);
// Image access.
operator gmic_image<T>*() {
return _data;
}
operator const gmic_image<T>*() const {
return _data;
}
gmic_image<T>& operator()(const unsigned int l) {
return _data[l];
}
const gmic_image<T>& operator()(const unsigned int l) const {
return _data[l];
}
};
}
#endif // #ifndef cimg_library
#else // #ifndef gmic_core
//-------------------------------------------------------------
// Private API (used when compiling gmic core components only).
//-------------------------------------------------------------
#ifdef _MSC_VER
#pragma comment(linker,"/STACK:6291456")
#pragma inline_depth(2)
#endif
#include <locale>
#ifdef cimg_version
#error "[gmic] *** Error *** File 'CImg.h' has been already included (should have been done first in file 'gmic.h')."
#endif
#ifndef cimg_plugin
#define cimg_plugin "gmic.cpp"
#endif
#ifndef cimglist_plugin
#define cimglist_plugin "gmic.cpp"
#endif
#ifndef cimg_verbosity
#define cimg_verbosity 1
#endif
#ifndef cimg_display
#define cimg_display 0
#endif
#ifndef cimg_appname
#define cimg_appname "gmic"
#endif
#ifdef gmic_is_parallel
#define cimg_use_pthread
#endif
#define cimg_library gmic_library
#define CImg gmic_image
#define CImgList gmic_list
#if defined(cimg_use_abort) && !defined(__MACOSX__) && !defined(__APPLE__)
inline bool *gmic_current_is_abort();
#define cimg_abort_init bool *const gmic_is_abort = ::gmic_current_is_abort()
#define cimg_abort_test if (*gmic_is_abort) throw CImgAbortException()
#endif
inline double gmic_mp_dollar(const char *const str, void *const p_list);
#define cimg_mp_operator_dollar(str) \
::gmic_mp_dollar(str,&imglist)
inline double gmic_mp_abort();
#define cimg_mp_func_abort() \
return ::gmic_mp_abort()
template<typename T>
inline double gmic_mp_get(double *const ptrd, const unsigned int siz, const bool to_string, const char *const str,
void *const p_list, const T& pixel_type);
#define cimg_mp_func_get(ptrd,siz,to_string,str) \
return ::gmic_mp_get(ptrd,siz,to_string,str,&mp.imglist,(T)0)
inline double gmic_mp_set(const double *const ptrs, const unsigned int siz, const char *const str,
void *const p_list);
#define cimg_mp_func_set(ptrs,siz,str) \
return ::gmic_mp_set(ptrs,siz,str,&mp.imglist)
inline double gmic_mp_name(const unsigned int ind, double *const out_str, const unsigned int siz,
void *const p_list);
#define cimg_mp_func_name(ind,out_str,siz) \
return ::gmic_mp_name(ind,out_str,siz,&mp.imglist)
template<typename T>
inline double gmic_mp_run(char *const str, const bool is_parallel_run, void *const p_list, const T& pixel_type);
#define cimg_mp_func_run(str,is_parallel_run) \
return ::gmic_mp_run(str,is_parallel_run,&mp.imglist,(T)0)
template<typename T>
inline double gmic_mp_store(const double *const ptrs, const unsigned int siz,
const unsigned int w, const unsigned int h, const unsigned int d, const unsigned int s,
const bool is_compressed, const char *const str,
void *const p_list, const T& pixel_type);
#define cimg_mp_func_store(ptrs,siz,w,h,d,s,is_compressed,str) \
return ::gmic_mp_store(ptrs,siz,w,h,d,s,is_compressed,str,&mp.imglist,(T)0)
#include "CImg.h"
#if cimg_OS==2
#include <process.h>
#include <psapi.h>
#elif cimg_OS==1
#include <cerrno>
#include <sys/resource.h>
#if !defined(__NetBSD__) && !defined(cimg_use_pthread) && cimg_display!=1
#include <sys/syscall.h>
#endif
#include <signal.h>
#endif // #if cimg_OS==2
#endif // #ifndef gmic_core
//--------------------------------------------------------
// Public API for the 'gmic' and 'gmic_exception' classes.
//--------------------------------------------------------
#include <cstdio>
#include <cstring>
#define gmic_new_attr commands(0), command_names(0), command_has_arguments(0), \
_variables(0), _variable_names(0), variables(0), variable_names(0), _variable_lengths(0), variable_lengths(0)
using namespace gmic_library;
// Class 'gmic'.
//--------------
struct gmic {
// Destructor.
~gmic();
// Constructors.
gmic();
gmic& assign();
gmic(const gmic& gmic_instance);
gmic& assign(const gmic& gmic_instance);
template<typename T>
gmic(const char *const command_line, const char *const custom_commands=0, const bool include_stdlib=true,
float *const p_progress=0, bool *const p_is_abort=0, const T& pixel_type=(T)0);
template<typename T>
gmic& assign(const char *const command_line, const char *const custom_commands=0, const bool include_stdlib=true,
float *const p_progress=0, bool *const p_is_abort=0, const T& pixel_type=(T)0);
template<typename T>
gmic(const char *const command_line,
gmic_list<T>& images, gmic_list<char>& image_names, const char *const custom_commands=0,
const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0);
template<typename T>
gmic& assign(const char *const command_line,
gmic_list<T>& images, gmic_list<char>& image_names, const char *const custom_commands=0,
const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0);
// Run G'MIC pipeline on an already-constructed object.
template<typename T>
gmic& run(const char *const command_line, const T& pixel_type=(T)0);
template<typename T>
gmic& run(const char *const command_line, gmic_list<T> &images, gmic_list<char> &image_names);
// Bridge for calling gmic with classes compatible with 'gmic_list'.
template<typename ti, typename tn>
gmic(const char *const command_line,
ti& images, tn& image_names,
const char *const custom_commands=0,
const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0):gmic_new_attr {
assign(command_line,
*(gmic_list<gmic_pixel_type>*)&images,*(gmic_list<char>*)&image_names,
custom_commands,include_stdlib,p_progress,p_is_abort);
}
template<typename ti, typename tn>
gmic& assign(const char *const command_line,
ti& images, tn& image_names,
const char *const custom_commands=0,
const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0) {
return assign(command_line,
*(gmic_list<gmic_pixel_type>*)&images,*(gmic_list<char>*)&image_names,
custom_commands,include_stdlib,p_progress,p_is_abort);
}
template<typename ti, typename tn>
gmic& run(const char *const command_line, ti& images, tn& image_names) {
return run(command_line,
*(gmic_list<gmic_pixel_type>*)&images,*(gmic_list<char>*)&image_names);
}
// These functions return (or init) G'MIC-specific paths.
static const char* path_user(const char *const custom_path=0);
static const char* path_rc(const char *const custom_path=0);
static bool init_rc(const char *const custom_path=0);
// Functions below should be considered as *private*, and should not be used in user's code.
template<typename T>
static bool search_sorted(const char *const str, const T& list, const unsigned int length, unsigned int &out_ind);
static const gmic_image<void*> current_run(const char *const func_name, void *const p_list);
static bool* current_is_abort();
static double mp_dollar(const char *const str, void *const p_list);
static double mp_abort();
template<typename T>
static double mp_get(double *const ptrd, const unsigned int siz, const bool to_string, const char *const str,
void *const p_list, const T& pixel_type);
static double mp_set(const double *const ptrs, const unsigned int siz, const char *const str, void *const p_list);
static double mp_name(const unsigned int ind, double *const out_str, const unsigned int siz, void *const p_list);
template<typename T>
static double mp_run(char *const str, const bool is_parallel_run, void *const p_list, const T& pixel_type);
template<typename T>
static double mp_store(const double *const ptrs, const unsigned int siz,
const unsigned int w, const unsigned int h, const unsigned int d, const unsigned int s,
const bool is_compressed, const char *const str,
void *const p_list, const T& pixel_type);
static bool get_debug_info(const char *const s, unsigned int &line_number, unsigned int &file_number);
static int _levenshtein(const char *const s, const char *const t, gmic_image<int>& d, const int i, const int j);
static int levenshtein(const char *const s, const char *const t);
static unsigned int hashcode(const char *const str, const bool is_variable);
static bool has_arguments(const char *const command);
static const char* basename(const char *const str);
static char *strreplace_fw(char *const str);
static char *strreplace_bw(char *const str);
static unsigned int strescape(const char *const str, char *const res);
static const gmic_image<char>& decompress_stdlib();
template<typename T>
gmic& _gmic(const char *const command_line, gmic_list<T>& images, gmic_list<char>& image_names,
const char *const custom_commands, const bool include_stdlib,
float *const p_progress, bool *const p_is_abort);
gmic_image<char> get_variable(const char *const name, const unsigned int *const variable_sizes=0,
const gmic_list<char> *const image_names=0, unsigned int *const varlength=0) const;
const char *set_variable(const char *const name, const char operation='=', const char *const value=0,
const double dvalue=0, const unsigned int *const variable_sizes=0);
const char *set_variable(const char *const name, const gmic_image<unsigned char>& value,
const unsigned int *const variable_sizes=0);
gmic& add_commands(const char *const data_commands, const char *const command_file=0,
const bool add_debug_info=false,
unsigned int *count_new=0, unsigned int *count_replaced=0, bool *const is_main_=0);
gmic& add_commands(std::FILE *const file, const char *const filename=0, const bool add_debug_info=false,
unsigned int *count_new=0, unsigned int *count_replaced=0, bool *const is_main_=0);
gmic_image<char> callstack2string(const bool _is_debug=false) const;
gmic_image<char> callstack2string(const gmic_image<unsigned int>& callstack_selection,
const bool _is_debug=false) const;
gmic_image<char> callstack2string(const gmic_image<unsigned int>* callstack_selection,
const bool _is_debug=false) const;
void pop_callstack(const unsigned int callstack_size);
gmic_image<unsigned int> selection2cimg(const char *const string, const unsigned int indice_max,
const gmic_list<char>& names, const char *const command,
const bool is_selection=true);
gmic_image<char>& selection2string(const gmic_image<unsigned int>& selection, const gmic_list<char>& image_names,
const unsigned int display_selection, gmic_image<char>& res) const;
gmic_list<char> command_line_to_CImgList(const char *const command_line);
void _gmic_substitute_args(const char *const argument, const char *const argument0, const char *const command,
const char *const item);
gmic& print(const gmic_image<unsigned int> *const callstack_selection,
const char *format, ...);
gmic& warn(const gmic_image<unsigned int> *const callstack_selection,
const char *format, ...);
gmic& debug(const char *format, ...);
gmic& error(const bool output_header, const char *format, ...);
gmic& error(const bool output_header, const gmic_image<unsigned int> *const callstack_selection,
const char *const command, const char *format, ...);
template<typename T>
gmic_image<char> substitute_item(const char *const source, gmic_list<T>& images, gmic_list<char>& image_names,
gmic_list<T>& parent_images, gmic_list<char>& parent_image_names,
const unsigned int *const variable_sizes,
const gmic_image<unsigned int> *const command_selection, const bool is_image_expr);
template<typename T>
void wait_threads(void *const p_gmic_threads, const bool try_abort, const T& pixel_type);
template<typename T>
bool check_cond(const char *const expr, gmic_list<T>& images, const char *const command);
template<typename T>
gmic& display_plots(gmic_list<T>& images, gmic_list<char>& image_names,
const unsigned int *const variable_sizes,
const gmic_image<unsigned int>& selection, const unsigned int plot_type,
const unsigned int vertex_type, const double xmin, const double xmax,
const double ymin, const double ymax, const bool exit_on_anykey);
template<typename T>
gmic& display_objects3d(const gmic_list<T>& images, const gmic_list<char>& image_names,
const gmic_image<unsigned int>& selection, const gmic_image<unsigned char>& background3d,
const bool exit_on_anykey);
template<typename T>
gmic_image<T>& check_image(const gmic_list<T>& list, gmic_image<T>& img);
template<typename T>
const gmic_image<T>& check_image(const gmic_list<T>& list, const gmic_image<T>& img);
template<typename T>
gmic& remove_images(gmic_list<T>& images, gmic_list<char>& image_names, const gmic_image<unsigned int>& selection,
const unsigned int start, const unsigned int end);
template<typename T>
gmic& _run(const gmic_list<char>& command_line, gmic_list<T> &images, gmic_list<char> &image_names,
const bool push_new_run);
template<typename T>
gmic& _run(const gmic_list<char>& command_line, unsigned int& position, gmic_list<T>& images,
gmic_list<char>&image_names, gmic_list<T>& parent_images, gmic_list<char>& parent_image_names,
const unsigned int *const variable_sizes, bool *const is_noargs, const char *const parent_arguments,
const gmic_image<unsigned int> *const command_selection, const bool push_new_run);
// Class attributes.
static const char *builtin_command_names[];
static gmic_image<int> builtin_command_inds;
static gmic_image<char> stdlib;
static bool is_display_available;
gmic_list<char> *commands, *command_names, *command_has_arguments, command_files, callstack,
*_variables, *_variable_names, **variables, **variable_names;
gmic_image<unsigned int> dowhiles, fordones, foreachdones, repeatdones, *_variable_lengths, **variable_lengths;
gmic_image<unsigned char> light3d;
gmic_image<void*> display_windows;
gmic_image<char> status;
float light3d_x, light3d_y, light3d_z, _progress, *progress;
gmic_uint64 reference_time;
unsigned int nb_dowhiles, nb_fordones, nb_foreachdones, nb_repeatdones, nb_remaining_fr,
nb_carriages_default, nb_carriages_stdout, debug_filename, debug_line, cimg_exception_mode;
int verbosity, network_timeout;
bool allow_main_, is_change, is_debug, is_running, is_start, is_return, is_quit, is_debug_info,
_is_abort, *is_abort, is_abort_thread, is_lbrace_command;
const char *starting_command_line;
};
// Class 'gmic_exception'.
//------------------------
struct gmic_exception {
gmic_image<char> _command, _message;
// Constructors.
gmic_exception() {}
gmic_exception(const char *const command, const char *const message) {
if (command) {
_command.assign((unsigned int)std::strlen(command) + 1,1,1,1);
std::strcpy(_command._data,command);
}
if (message) {
_message.assign((unsigned int)std::strlen(message) + 1,1,1,1);
std::strcpy(_message._data,message);
}
}
// Return error message.
const char *what() const { // Give the error message returned by the G'MIC interpreter.
return _message._data?_message._data:"";
}
const char *command() const {
return _command._data?_command._data:"";
}
};
// Explicit declarations of functions.
//-------------------------------------
inline bool *gmic_current_is_abort() {
return gmic::current_is_abort();
}
inline double gmic_mp_dollar(const char *const str, void *const p_list) {
return gmic::mp_dollar(str,p_list);
}
inline double gmic_mp_abort() {
return gmic::mp_abort();
}
template<typename T>
inline double gmic_mp_get(double *const ptrd, const unsigned int siz, const bool to_string, const char *const str,
void *const p_list, const T& pixel_type) {
return gmic::mp_get(ptrd,siz,to_string,str,p_list,pixel_type);
}
inline double gmic_mp_set(const double *const ptrs, const unsigned int siz, const char *const str,
void *const p_list) {
return gmic::mp_set(ptrs,siz,str,p_list);
}
inline double gmic_mp_name(const unsigned int ind, double *const out_str, const unsigned int siz,
void *const p_list) {
return gmic::mp_name(ind,out_str,siz,p_list);
}
template<typename T>
inline double gmic_mp_run(char *const str, const bool is_parallel_run,
void *const p_list, const T& pixel_type) {
return gmic::mp_run(str,is_parallel_run,p_list,pixel_type);
}
template<typename T>
inline double gmic_mp_store(const double *const ptrs, const unsigned int siz,
const unsigned int w, const unsigned int h, const unsigned int d, const unsigned int s,
const bool is_compressed, const char *const str,
void *const p_list, const T& pixel_type) {
return gmic::mp_store(ptrs,siz,w,h,d,s,is_compressed,str,p_list,pixel_type);
}
#endif // #ifndef gmic_version
// Local Variables:
// mode: c++
// End: