mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-29 01:11:56 +08:00
8 lines
328 B
Cython
8 lines
328 B
Cython
|
|
cdef inline unsigned char point_in_polygon(int nr_verts, double *xp, double *yp,
|
|
double x, double y)
|
|
|
|
cdef void points_in_polygon(int nr_verts, double *xp, double *yp,
|
|
int nr_points, double *x, double *y,
|
|
unsigned char *result)
|