mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 15:44:06 +08:00
8 lines
248 B
Cython
8 lines
248 B
Cython
cimport numpy as np
|
|
import numpy as np
|
|
|
|
|
|
cdef inline double bilinear_interpolation(double* image, int rows, int cols,
|
|
double r, double c, char mode,
|
|
double cval=*)
|