mosaicing.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* mosaicing.h
  2. *
  3. * 20/9/09
  4. * - from proto.h
  5. */
  6. /*
  7. This file is part of VIPS.
  8. VIPS is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU Lesser General Public License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  19. 02110-1301 USA
  20. */
  21. /*
  22. These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
  23. */
  24. #ifndef IM_MOSAICING_H
  25. #define IM_MOSAICING_H
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif /*__cplusplus*/
  29. int vips_merge( VipsImage *ref, VipsImage *sec, VipsImage **out,
  30. VipsDirection direction, int dx, int dy, ... )
  31. __attribute__((sentinel));
  32. int vips_mosaic( VipsImage *ref, VipsImage *sec, VipsImage **out,
  33. VipsDirection direction, int xref, int yref, int xsec, int ysec, ... )
  34. __attribute__((sentinel));
  35. int vips_mosaic1( VipsImage *ref, VipsImage *sec, VipsImage **out,
  36. VipsDirection direction,
  37. int xr1, int yr1, int xs1, int ys1,
  38. int xr2, int yr2, int xs2, int ys2, ... )
  39. __attribute__((sentinel));
  40. int vips_match( VipsImage *ref, VipsImage *sec, VipsImage **out,
  41. int xr1, int yr1, int xs1, int ys1,
  42. int xr2, int yr2, int xs2, int ys2, ... )
  43. __attribute__((sentinel));
  44. int vips_globalbalance( VipsImage *in, VipsImage **out, ... )
  45. __attribute__((sentinel));
  46. int vips_remosaic( VipsImage *in, VipsImage **out,
  47. const char *old_str, const char *new_str, ... )
  48. __attribute__((sentinel));
  49. #ifdef __cplusplus
  50. }
  51. #endif /*__cplusplus*/
  52. #endif /*IM_MOSAICING_H*/