freqfilt.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* freq_filt.h
  2. *
  3. * 2/11/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 VIPS_FREQFILT_H
  25. #define VIPS_FREQFILT_H
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif /*__cplusplus*/
  29. int vips_fwfft( VipsImage *in, VipsImage **out, ... )
  30. __attribute__((sentinel));
  31. int vips_invfft( VipsImage *in, VipsImage **out, ... )
  32. __attribute__((sentinel));
  33. int vips_freqmult( VipsImage *in, VipsImage *mask, VipsImage **out, ... )
  34. __attribute__((sentinel));
  35. int vips_spectrum( VipsImage *in, VipsImage **out, ... )
  36. __attribute__((sentinel));
  37. int vips_phasecor( VipsImage *in1, VipsImage *in2, VipsImage **out, ... )
  38. __attribute__((sentinel));
  39. #ifdef __cplusplus
  40. }
  41. #endif /*__cplusplus*/
  42. #endif /*VIPS_FREQFILT_H*/