mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 02:01:40 +08:00
7 lines
334 B
Cython
7 lines
334 B
Cython
cdef unsigned char point_in_polygon(Py_ssize_t nr_verts, double *xp, double *yp,
|
|
double x, double y)
|
|
|
|
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)
|