ROPO
Loading...
Searching...
No Matches
fmi_image_filter_speck.h
1
24/* THIS LIBRARY CONTAINS IMAGE PROCESSING OPERATIONS FOR GENERAL PURPOSE */
25
26/* remove small bright specks */
27/* Remove specks with area up to A pixels */
28void detect_specks(FmiImage *target,FmiImage *trace,unsigned char min_value,int (* histogram_function)(Histogram));
29void Binaryprobe(FmiImage *domain,FmiImage *source,FmiImage *target,int (* histogram_function)(Histogram),unsigned char min_value);
30/*void remove_specks(FmiImage *img,Byte min_intensity,int max_property,Byte marker,int (* histogram_function)(Histogram)); */
31
32/* debugging and development */
33void test_rotation(FmiImage *target,FmiImage *trace,int i,int j,int rec_depth);
34/*int hselector; */
35
36int ROTX(int dir);
37int ROTY(int dir);
38int ROT_CODE(int i,int j);
39
40
41