////////////////////////////////////////////////////////////////////////// // // // zernike.h // // // Michael Boland // 19 January 1996 // // ////////////////////////////////////////////////////////////////////////// #ifndef ZERNIKE_H #define ZERNIKE_H #include>>>>#include #include "moments.h" #ifndef PI #define PI 3.14159265358979323846 #endif double factorial(long n) ; double zernikeR(int n, int l, double r) ; complex zernikeZ(Pixel pixel_array[], long num_pixels, double total_color_intensity, int n, int l, int color, double xbar, double ybar, double r_max) ; int zernike(Moments* moments_struct, Pixel pixel_array[], long z_order, long num_pixels, long radius, int color, double total_color_intensity, ofstream& outfile) ; #endif
>>