mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 01:00:23 +08:00
7 lines
346 B
Cython
7 lines
346 B
Cython
cdef unsigned char point_in_polygon(Py_ssize_t nr_verts, double *xp, double *yp,
|
|
double x, double y) nogil
|
|
|
|
cdef void points_in_polygon(Py_ssize_t nr_verts, double *xp, double *yp,
|
|
Py_ssize_t nr_points, double *x, double *y,
|
|
unsigned char *result) nogil
|