mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-04 13:57:31 +08:00
5 lines
186 B
Cython
5 lines
186 B
Cython
from interpolation cimport coord_map as _coord_map
|
|
|
|
def coord_map(Py_ssize_t dim, long coord, mode):
|
|
cdef char mode_c = ord(mode[0].upper())
|
|
return _coord_map(dim, coord, mode_c) |