X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=server%2Fimage.h;h=8e2cd685a540585bf933d5ed440dbd99d493a85b;hb=6bc90047ed36b392d90a1bf778baf9687b835f2d;hp=7cec1ed1826ceedd21319283da66fbb93a5cfd64;hpb=4fbe722e8fc016b6812ebdef40003359781490ba;p=matches%2FMCTX3420.git diff --git a/server/image.h b/server/image.h index 7cec1ed..8e2cd68 100644 --- a/server/image.h +++ b/server/image.h @@ -1,14 +1,18 @@ /** * @file image.h - * @purpose Helper functions for image processing + * @brief Helper functions for image processing */ #ifndef _IMAGE_H #define _IMAGE_H #include "common.h" +#include "cv.h" -extern void Image_Handler(FCGIContext * context, const char * params); +extern void Image_Init(); +extern void Image_Handler(FCGIContext * context, char * params); +extern void Image_Cleanup(); +extern bool Camera_GetImage(int num, int width, int height, IplImage ** image); #endif //_IMAGE_H