libvips/libvips/include/vips/freqfilt.h

65 lines
1.6 KiB
C
Raw Normal View History

2009-11-03 20:03:47 +01:00
/* freq_filt.h
*
* 2/11/09
* - from proto.h
*/
/*
This file is part of VIPS.
VIPS is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
2009-11-03 20:03:47 +01:00
*/
/*
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
*/
2014-01-03 18:19:45 +01:00
#ifndef VIPS_FREQFILT_H
#define VIPS_FREQFILT_H
2009-11-03 20:03:47 +01:00
#ifdef __cplusplus
extern "C" {
#endif /*__cplusplus*/
VIPS_API
2014-01-03 18:03:06 +01:00
int vips_fwfft( VipsImage *in, VipsImage **out, ... )
G_GNUC_NULL_TERMINATED;
VIPS_API
2014-01-03 18:03:06 +01:00
int vips_invfft( VipsImage *in, VipsImage **out, ... )
G_GNUC_NULL_TERMINATED;
2014-01-04 14:00:43 +01:00
VIPS_API
int vips_freqmult( VipsImage *in, VipsImage *mask, VipsImage **out, ... )
G_GNUC_NULL_TERMINATED;
2011-06-21 15:41:38 +02:00
VIPS_API
2014-01-04 14:00:43 +01:00
int vips_spectrum( VipsImage *in, VipsImage **out, ... )
G_GNUC_NULL_TERMINATED;
2014-01-04 14:00:43 +01:00
VIPS_API
2014-01-07 10:06:02 +01:00
int vips_phasecor( VipsImage *in1, VipsImage *in2, VipsImage **out, ... )
G_GNUC_NULL_TERMINATED;
2009-11-03 20:03:47 +01:00
#ifdef __cplusplus
}
#endif /*__cplusplus*/
2014-01-03 18:19:45 +01:00
#endif /*VIPS_FREQFILT_H*/