include/ale: instance parameter for ale_trans_rescale.
[libale.git] / include / ale.h
blobdc62b38eb5839a9356173e8d04d9528a4452d710
1 /*
2 * Copyright 2008, 2009 David Hilvert <dhilvert@gmail.com>
4 * This file is part of libale.
6 * libale is free software: you can redistribute it and/or modify it under the
7 * terms of the GNU Affero General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
11 * libale is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
14 * more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with libale. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _ALE_H
21 #define _ALE_H
23 #include <stdio.h>
24 #include <stdarg.h>
27 * libale requires OpenCL
29 * http://www.khronos.org/registry/cl/
31 * We assume the following header file, according to official documentation
32 * example code. If this doesn't work, try OpenCL/cl.h (or perhaps CL/cl.h),
33 * as even Khronos does not seem to be entirely consistent in OpenCL header
34 * naming.
37 #include <OpenCL/opencl.h>
40 * Macro for code definition.
43 #define ALE_CODE(ID, ...) \
44 static const char *ale_string_ ## ID = #__VA_ARGS__ ;
47 * Stringification macro.
50 #define ALE_STRINGIFY(ID) \
51 ale_string_ ## ID
53 #if 0
56 * Alternative code definition and stringification macros (e.g., if the above
57 * cause compiler warnings regarding unused statics.
60 #define ALE_CODE(ID, ...) \
61 inline const char *ale_stringify_ ## ID() { return #__VA_ARGS__ ; }
63 #define ALE_STRINGIFY(ID) \
64 ale_stringify_ ## ID()
66 #endif
69 * Macros for shared data types used in evaluation.
72 #define ALE_DATA_TYPE(TYPE, ...) \
73 __VA_ARGS__ \
74 ALE_CODE(TYPE, __VA_ARGS__ )
76 #define ALE_STRUCT(TYPE, ...) \
77 ALE_DATA_TYPE(TYPE, struct TYPE { __VA_ARGS__ }; )
79 #define ALE_UNION(TYPE, ...) \
80 ALE_DATA_TYPE(TYPE, union TYPE { __VA_ARGS__ }; )
82 #define ALE_TYPEDEF(TYPE, ...) \
83 ALE_DATA_TYPE(TYPE, typedef __VA_ARGS__ TYPE; )
86 * Pointer for portable storage (e.g., between 32- and 64-bit architectures).
87 * This may allow, e.g., storing compute device pointers on the host, which
88 * could be useful for inclusion in structures to be passed back to the compute
89 * device, etc.
91 * It is expected that TYPE is incomplete on the host side in the common case,
92 * but its inclusion may be useful for type checking. On the other hand,
93 * dereferencing P on the host side may have unexpected result, and should not
94 * generally be necessary.
96 * Note that this should also be usable for storing pointers dereferenced solely
97 * on the host side (as might be expected for ale_context, or for its included
98 * cl_context).
100 * We add a table type (T) here to allow the possibility that pointer values
101 * change on the device for a given cl_mem object. Cf:
103 * http://www.khronos.org/message_boards/viewtopic.php?p=4782#p4782
105 * INDEX is a (32- or) 64-bit pointer to the index of an (e.g., cl_mem) entry
106 * in a table on the host (e.g., in such a table associated with an
107 * ale_context). OFFSET is measured from the start of the indexed memory area,
108 * and is disabled for now to reduce pointer sizes, but can be enabled for
109 * greater pointer generality.
112 #define ALE_POINTER(TYPE, TYPEP) \
113 ALE_DATA_TYPE( TYPEP, typedef union { TYPE *p; struct {cl_long index; /* cl_int offset; */} t; cl_long widest_pointer_type; } TYPEP;)
116 * Macro for API type definition
118 * API type name selection is based roughly on the approach taken in
120 * http://www.khronos.org/registry/cl/api/1.0/cl.h
122 * *_retain() and *_release() are patterned after OpenCL reference counting.
124 * *_valid() attempts to determine validity, returning non-zero if valid.
127 #define ALE_API_TYPEDEF(TYPENAME) \
128 ALE_DATA_TYPE( _ ## TYPENAME, struct _ ## TYPENAME; ) \
129 ALE_POINTER( struct _ ## TYPENAME , TYPENAME ) \
130 int TYPENAME ## _valid(TYPENAME xx_valid_argument); \
131 TYPENAME TYPENAME ## _NULL(); \
132 int TYPENAME ## _retain(TYPENAME xx_retain_argument); \
133 int TYPENAME ## _release(TYPENAME xx_release_argument);
136 * Macros for API parameter declaration.
139 #define ALE_API_PARAMETER_R(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
140 PARAMETER_TYPE OBJECT_TYPE ## _get_ ## PARAMETER_NAME (OBJECT_TYPE object);
142 #define ALE_API_PARAMETER_W(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
143 int OBJECT_TYPE ## _set_ ## PARAMETER_NAME (OBJECT_TYPE object, PARAMETER_TYPE value);
145 #define ALE_API_PARAMETER_RW(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
146 ALE_API_PARAMETER_R(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
147 ALE_API_PARAMETER_W(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE)
149 #define ALE_API_RC_PARAMETER_R(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
150 PARAMETER_TYPE OBJECT_TYPE ## _retain_ ## PARAMETER_NAME (OBJECT_TYPE object);
152 #define ALE_API_RC_PARAMETER_RW(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
153 ALE_API_RC_PARAMETER_R(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE) \
154 ALE_API_PARAMETER_W(OBJECT_TYPE, PARAMETER_NAME, PARAMETER_TYPE)
157 * API types
160 ALE_API_TYPEDEF(ale_context)
162 ALE_API_TYPEDEF(ale_image)
163 ALE_API_TYPEDEF(ale_render)
164 ALE_API_TYPEDEF(ale_trans)
165 ALE_API_TYPEDEF(ale_align_properties)
167 ALE_API_TYPEDEF(ale_filter)
168 ALE_API_TYPEDEF(ale_psf)
170 ALE_API_TYPEDEF(ale_certainty)
172 ALE_API_TYPEDEF(ale_exclusion_list)
174 ALE_API_TYPEDEF(ale_sequence)
176 ALE_API_TYPEDEF(ale_scene)
180 * Bayer patterns. (Values are based on original ALE d2::image code, but using
181 * standard clockwise ordering rather than ALE counterclockwise ordering.)
184 enum {
185 ALE_BAYER_NONE = 0x0,
186 ALE_BAYER_RGBG = 0x4, /* binary 100 */
187 ALE_BAYER_GRGB = 0x5, /* binary 101 */
188 ALE_BAYER_GBGR = 0x6, /* binary 110 */
189 ALE_BAYER_BGRG = 0x7 /* binary 111 */
193 * Bayer utility functions. (Based on original ALE d2::image_bayer_ale_real
194 * code.)
198 * Return the color of a given pixel, for a given bayer pattern.
200 static unsigned int ale_bayer_color(unsigned int i, unsigned int j, unsigned int bayer) {
201 unsigned int r_x_offset = bayer & 0x1;
202 unsigned int r_y_offset = (bayer & 0x2) >> 1;
204 return (i + r_y_offset) % 2 + (j + r_x_offset) % 2;
208 * Return a vector indicating set channels.
210 static char ale_get_channels(unsigned int i, unsigned int j, unsigned int bayer) {
211 if (bayer == ALE_BAYER_NONE)
212 return 0x7;
213 return (1 << ale_bayer_color(i, j, bayer));
217 * Indicate whether a given channel exists.
219 static int ale_has_channel(unsigned int i, unsigned int j, unsigned int k, unsigned int bayer) {
220 return (1 << k) & ale_get_channels(i, j, bayer);
226 * Image formats.
229 enum {
230 ALE_IMAGE_Y,
231 ALE_IMAGE_RGB,
232 ALE_IMAGE_WEIGHTED_RGB
236 * Domain types.
239 enum {
240 ALE_TYPE_UINT_8,
241 ALE_TYPE_UINT_16,
242 ALE_TYPE_UINT_32,
243 ALE_TYPE_UINT_64,
244 ALE_TYPE_FLOAT_32,
245 ALE_TYPE_FLOAT_64
249 * Invariant types.
251 * For ALE avgf, use MEAN|FIRST with saturation threshold;
252 * other invariants are analogous; e.g.,
254 * MEAN|LAST,
255 * MEDIAN|FIRST,
256 * etc.
258 * Not all expressible combinations are accepted, or, indeed, meaningful.
261 enum {
262 ALE_INVARIANT_NONE = 0,
263 ALE_INVARIANT_MEAN = 1,
264 ALE_INVARIANT_FIRST = 2,
265 ALE_INVARIANT_LAST = 4,
266 ALE_INVARIANT_MAX = 8,
267 ALE_INVARIANT_MIN = 16,
268 ALE_INVARIANT_MEDIAN = 32
272 * Status return values.
274 * Based loosely on OpenCL status return values.
277 enum {
278 ALE_UNSPECIFIED_FAILURE = -1,
279 ALE_SUCCESS = 0
283 * Image buffer types.
286 enum {
287 ALE_BUFFER_CL,
288 ALE_BUFFER_HOST,
289 ALE_BUFFER_FILE
293 * Obtain a Libale context given an OpenCL context
296 ale_context ale_new_context(cl_context cc);
299 * Retain an OpenCL context from a Libale context.
302 cl_context ale_context_retain_cl(ale_context ac);
305 * Set a context property.
308 int ale_context_set_property(ale_context ac, const char *name, const char *value);
311 * Set a context-wide signal recipient
314 int ale_context_set_receiver(ale_context ac, void (*receiver_callback)(const char *signal, va_list ap));
317 * Send a context signal
320 int ale_context_vsignal(ale_context ac, const char *signal, va_list ap);
321 int ale_context_signal(ale_context ac, const char *signal, ...);
324 * Context preferred coordinate resolution.
327 ALE_API_PARAMETER_RW(ale_context, coords_type, int)
330 * Context preferred color resolution.
333 ALE_API_PARAMETER_RW(ale_context, color_type, int)
336 * Context preferred certainty resolution.
339 ALE_API_PARAMETER_RW(ale_context, certainty_type, int)
342 * Context preferred weight resolution.
345 ALE_API_PARAMETER_RW(ale_context, weight_type, int)
348 * Obtain a Libale transformation
351 ale_trans ale_new_trans(ale_context ac, ale_image ai);
354 * Set original bounds for a Libale transformation.
357 int ale_trans_set_original_bounds(ale_trans at, ale_image ai);
360 * Rescale a transform with a given factor.
363 int ale_trans_rescale(ale_trans at, double factor);
366 * Transformation exposure parameter.
369 ALE_API_PARAMETER_RW(ale_trans, exposure, double)
372 * Transformation gamma parameter. (Default is 0.45.)
375 ALE_API_PARAMETER_RW(ale_trans, gamma, double)
378 * Transformation black level parameter, expressed as a fraction of saturation.
381 ALE_API_PARAMETER_RW(ale_trans, black, double)
384 * Transformation bayer parameter.
387 ALE_API_PARAMETER_RW(ale_trans, bayer, int)
390 * Transformation certainty curve
393 ALE_API_RC_PARAMETER_RW(ale_trans, certainty, ale_certainty)
396 * Create a Libale image.
399 ale_image ale_new_image(ale_context ac, int format, int type);
402 * Convenience function to clone a Libale image (matching size and format, but
403 * not copying contents).
406 ale_image ale_clone_image(ale_image source, int output_type);
409 * Convenience function to scale a Libale image, producing a new (unit gamma,
410 * non-bayer) image.
413 ale_image ale_scale_image(ale_image source, double factor, int output_type, double source_gamma, int source_bayer);
414 ale_image ale_scale_image_wt(ale_image source, double factor, int output_type, int source_bayer);
417 * Set a Libale image to a given OpenCL buffer, host buffer, or file buffer.
420 int ale_image_set_cl(ale_image ai, size_t width, size_t height, cl_mem buffer);
421 int ale_image_set_host_dynamic(ale_image ai, size_t width, size_t height, void *buffer);
422 int ale_image_set_host_static(ale_image ai, size_t width, size_t height, void *buffer, void (*release_callback)(void *), void *callback_data);
423 int ale_image_set_file_dynamic(ale_image ai, size_t width, size_t height, FILE *buffer);
424 int ale_image_set_file_static(ale_image ai, size_t width, size_t height, FILE *buffer, long offset, int (*release_callback)(void *), void *callback_data);
427 * Buffer type for a given Libale image.
430 ALE_API_PARAMETER_R(ale_image, buffer_type, int)
433 * Retain an OpenCL buffer, host buffer, or file buffer, given a Libale image.
434 * (returns NULL or ((cl_mem) 0) on failure).
437 cl_mem ale_image_retain_cl(ale_image ai);
438 void *ale_image_retain_host(ale_image ai);
439 FILE *ale_image_retain_file(ale_image ai);
442 * Release data without internal reference counters.
445 int ale_image_release_host(ale_image ai, void *hi);
446 int ale_image_release_file(ale_image ai, FILE *fi);
449 * Resize a Libale image.
452 int ale_resize_image(ale_image ai, int x_offset, int y_offset, size_t width, size_t height);
455 * Get image statistics.
458 ALE_API_PARAMETER_R(ale_image, height, size_t)
459 ALE_API_PARAMETER_R(ale_image, width, size_t)
460 ALE_API_PARAMETER_R(ale_image, format, int)
461 ALE_API_PARAMETER_R(ale_image, type, int)
462 ALE_API_PARAMETER_RW(ale_image, x_offset, int)
463 ALE_API_PARAMETER_RW(ale_image, y_offset, int)
465 size_t ale_image_get_depth(ale_image ai);
468 * XXX: It is possible that minval and maxval would be better implemented
469 * outside of the API, using other, more generic calls (such as eval).
472 double ale_image_maxval(ale_image source);
473 double ale_image_minval(ale_image source);
474 ale_image ale_image_nn_fill(ale_image source, double nn_defined_radius);
475 ale_image ale_image_get_weights(ale_image source);
478 * Evaluation operator.
481 int ale_eval(const char *s, ...);
483 #if 0
486 * Proposed function evaluation operator, detecting types from a given named
487 * function.
490 int ale_eval_func(const char *s, ...);
492 #endif
495 * Create a Libale incremental renderer, with given invariant.
498 ale_render ale_new_render_incremental(ale_context ac, int type, int invariant);
501 * Libale renderer definition threshold parameter
504 ALE_API_PARAMETER_RW(ale_render, definition_threshold, double)
507 * Libale renderer saturation threshold parameter
510 ALE_API_PARAMETER_RW(ale_render, saturation_threshold, double)
513 * Libale renderer maximum frame range parameter
516 ALE_API_PARAMETER_RW(ale_render, range_threshold, double)
519 * Render resize.
522 int ale_render_resize(ale_render ar, ale_trans at);
525 * Render extend.
528 int ale_render_extend(ale_render ar, ale_trans at);
531 * Render merge.
534 int ale_render_merge(ale_render ar, ale_trans at, ale_image ai);
537 * Render retain image.
540 ale_image ale_render_retain_image(ale_render ar);
543 * Synchronized renderer resize.
546 int ale_render_resize_sync(ale_render ar, ale_sequence s, int i);
549 * Synchronized render extend.
552 int ale_render_extend_sync(ale_render ar, ale_sequence s, int i);
555 * Synchronized renderer merge.
558 int ale_render_merge_sync(ale_render ar, ale_sequence s, int i);
561 * Create a Libale Irani-Peleg renderer, with given reference.
564 ale_render ale_new_render_ip(ale_context ac, ale_render reference, int iterations);
567 * Create a renderer ensemble.
570 ale_render ale_new_render_ensemble(ale_context ac);
573 * Retain a renderer from an ensemble.
576 ale_render ale_render_ensemble_retain(ale_render ar, const char *spec);
579 * Perform any stream processing (e.g., Irani-Peleg) run.
582 int ale_render_stream_process(ale_render ar, ale_sequence s);
585 * Retain an image from a sequence
588 ale_image ale_sequence_retain_image(ale_sequence s, int i);
591 * Release an image from a sequence
594 int ale_sequence_release_image(ale_sequence, int i);
597 * Create a filter.
600 ale_filter ale_new_filter(ale_context ac, const char *type);
603 * Create a point-spread function.
606 ale_psf ale_new_psf(ale_context ac, const char *type);
609 * Create an exclusion region list.
612 ale_exclusion_list ale_new_exclusion_list(ale_context ac);
615 * Append an exclusion region to a list
618 int ale_exclusion_list_append(ale_exclusion_list ae, int is_frame_coords, double xmin, double xmax, double ymin, double ymax, double fmin, double fmax);
621 * Obtain an alignment RESULT between frame A and current approximation B,
622 * starting from transformation START, and given alignment properties
623 * ALIGN_PROPERTIES.
626 int ale_align(ale_context ac, ale_image a, ale_image b, ale_trans start,
627 ale_align_properties align_properties, ale_trans result);
631 * Create an alignment properties structure.
634 ale_align_properties ale_new_align_properties();
637 * Return a PSF error based on a captured sequence and a scene approximation.
640 double ale_psf_error(ale_image approx, ale_sequence sequence);
644 #endif