mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-01 14:19:52 +08:00
14 lines
593 B
Cython
14 lines
593 B
Cython
|
|
cdef inline double nearest_neighbour(double* image, int rows, int cols,
|
|
double r, double c, char mode,
|
|
double cval=*)
|
|
|
|
cdef inline double bilinear_interpolation(double* image, int rows, int cols,
|
|
double r, double c, char mode,
|
|
double cval=*)
|
|
|
|
cdef inline double get_pixel(double* image, int rows, int cols, int r, int c,
|
|
char mode, double cval=*)
|
|
|
|
cdef inline int coord_map(int dim, int coord, char mode)
|