deprecate vips7 resample dispatch
This commit is contained in:
parent
e6eb08173f
commit
dbdf9c8d83
@ -3,6 +3,7 @@ noinst_LTLIBRARIES = libdeprecated.la
|
|||||||
libdeprecated_la_SOURCES = \
|
libdeprecated_la_SOURCES = \
|
||||||
im_linreg.c \
|
im_linreg.c \
|
||||||
im_point_bilinear.c \
|
im_point_bilinear.c \
|
||||||
|
resample_dispatch.c \
|
||||||
im_openslide2vips.c \
|
im_openslide2vips.c \
|
||||||
im_lab_morph.c \
|
im_lab_morph.c \
|
||||||
deprecated_dispatch.c \
|
deprecated_dispatch.c \
|
||||||
|
@ -39,6 +39,14 @@ extern "C" {
|
|||||||
|
|
||||||
#include <vips/vips.h>
|
#include <vips/vips.h>
|
||||||
|
|
||||||
|
int im_match_linear( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
||||||
|
int xr1, int yr1, int xs1, int ys1,
|
||||||
|
int xr2, int yr2, int xs2, int ys2 );
|
||||||
|
int im_match_linear_search( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
||||||
|
int xr1, int yr1, int xs1, int ys1,
|
||||||
|
int xr2, int yr2, int xs2, int ys2,
|
||||||
|
int hwindowsize, int hsearchsize );
|
||||||
|
|
||||||
int im_lrmerge( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
int im_lrmerge( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
||||||
int dx, int dy, int mwidth );
|
int dx, int dy, int mwidth );
|
||||||
int im_tbmerge( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
int im_tbmerge( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
||||||
|
@ -37,18 +37,6 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif /*__cplusplus*/
|
#endif /*__cplusplus*/
|
||||||
|
|
||||||
int im_match_linear( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
|
||||||
int xr1, int yr1, int xs1, int ys1,
|
|
||||||
int xr2, int yr2, int xs2, int ys2 );
|
|
||||||
int im_match_linear_search( VipsImage *ref, VipsImage *sec, VipsImage *out,
|
|
||||||
int xr1, int yr1, int xs1, int ys1,
|
|
||||||
int xr2, int yr2, int xs2, int ys2,
|
|
||||||
int hwindowsize, int hsearchsize );
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int vips_quadratic( VipsImage *in, VipsImage **out, VipsImage *coeff, ... )
|
|
||||||
__attribute__((sentinel));
|
|
||||||
int vips_shrink( VipsImage *in, VipsImage **out,
|
int vips_shrink( VipsImage *in, VipsImage **out,
|
||||||
double xshrink, double yshrink, ... )
|
double xshrink, double yshrink, ... )
|
||||||
__attribute__((sentinel));
|
__attribute__((sentinel));
|
||||||
@ -56,6 +44,9 @@ int vips_affine( VipsImage *in, VipsImage **out,
|
|||||||
double a, double b, double c, double d, ... )
|
double a, double b, double c, double d, ... )
|
||||||
__attribute__((sentinel));
|
__attribute__((sentinel));
|
||||||
|
|
||||||
|
int vips_quadratic( VipsImage *in, VipsImage **out, VipsImage *coeff, ... )
|
||||||
|
__attribute__((sentinel));
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif /*__cplusplus*/
|
#endif /*__cplusplus*/
|
||||||
|
@ -12,7 +12,6 @@ libresample_la_SOURCES = \
|
|||||||
shrink.c \
|
shrink.c \
|
||||||
interpolate.c \
|
interpolate.c \
|
||||||
transform.c \
|
transform.c \
|
||||||
resample_dispatch.c \
|
|
||||||
bicubic.cpp \
|
bicubic.cpp \
|
||||||
lbb.cpp \
|
lbb.cpp \
|
||||||
nohalo.cpp \
|
nohalo.cpp \
|
||||||
@ -25,10 +24,9 @@ libresample_la_SOURCES = \
|
|||||||
resample.c \
|
resample.c \
|
||||||
resample.h \
|
resample.h \
|
||||||
shrink.c \
|
shrink.c \
|
||||||
im_affine.c \
|
affine.c \
|
||||||
interpolate.c \
|
interpolate.c \
|
||||||
transform.c \
|
transform.c
|
||||||
resample_dispatch.c
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
bicubic.cpp \
|
bicubic.cpp \
|
||||||
|
Loading…
Reference in New Issue
Block a user