| Line 8... |
Line 8... |
* Author: E.BERTIN, IAP/Leiden
|
* Author: E.BERTIN, IAP/Leiden
|
*
|
*
|
* Contents: functions dealing with on-line filtering of the image
|
* Contents: functions dealing with on-line filtering of the image
|
* (for detection).
|
* (for detection).
|
*
|
*
|
* Last modify: 13/09/2009
|
* Last modify: 01/10/2009
|
*
|
*
|
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
*/
|
*/
|
|
|
/*------------------------------- definitions -------------------------------*/
|
/*------------------------------- definitions -------------------------------*/
|
| Line 33... |
Line 33... |
} filterstruct;
|
} filterstruct;
|
|
|
filterstruct *thefilter;
|
filterstruct *thefilter;
|
|
|
/*------------------------------- functions ---------------------------------*/
|
/*------------------------------- functions ---------------------------------*/
|
void convolve(picstruct *, PIXTYPE *),
|
void convolve(picstruct *, PIXTYPE *, int y),
|
convolve_image(picstruct *field, float *vig1,
|
convolve_image(picstruct *field, float *vig1,
|
float *vig2, int width, int height),
|
float *vig2, int width, int height),
|
filter(picstruct *, PIXTYPE *),
|
filter(picstruct *, PIXTYPE *, int y),
|
neurfilter(picstruct *, PIXTYPE *),
|
neurfilter(picstruct *, PIXTYPE *, int y),
|
endfilter(void),
|
endfilter(void),
|
getfilter(char *filename);
|
getfilter(char *filename);
|
|
|
int getconv(char *filename),
|
int getconv(char *filename),
|
getneurfilter(char *filename);
|
getneurfilter(char *filename);
|