KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
i_collage.h
Go to the documentation of this file.
1 
5 /*
6  * $Id: i_collage.h 18278 2014-11-25 01:42:10Z ksimek $
7  */
8 
9 #ifndef I_CPP_I_COLLAGE_H_IVI_LAB_LIBRARY
10 #define I_CPP_I_COLLAGE_H_IVI_LAB_LIBRARY
11 
12 #include <i/i_collage.h>
13 namespace kjb {
14 
15 class Image;
16 
22 Image make_collage(
24  Image const* const* input_images,
25  int num_horizontal,
26  int num_vertical
27 );
28 
30 Image make_collage(
31  Image const* input_img_array,
32  int num_horizontal,
33  int num_vertical
34 );
35 
37 
38 }
39 
40 #endif /* I_CPP_I_COLLAGE_H_IVI_LAB_LIBRARY */
Image make_collage(Image const *const *input_images, int num_horizontal, int num_vertical)
wrapper for kjb_c::make_image_collage
Definition: i_collage.cpp:29