 |
naev 0.12.5
|
65void computegradient(
double *img,
int w,
int h,
double *gx,
double *gy );
76double edgedf(
double gx,
double gy,
double a );
78double distaa3(
double *img,
double *gximg,
double *gyimg,
int w,
int c,
int xc,
79 int yc,
int xi,
int yi );
83#define DISTAA( c, xc, yc, xi, yi ) \
84 ( distaa3( img, gx, gy, w, c, xc, yc, xi, yi ) )
86void edtaa3(
double *img,
double *gx,
double *gy,
int w,
int h,
short *distx,
87 short *disty,
double *dist );