Changeset 387 for pwntcha/trunk/src/common.h
- Timestamp:
- Jan 3, 2005, 4:29:46 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/common.h
r385 r387 19 19 20 20 /* available CAPTCHA decoders */ 21 char * slashdot_decode(char *image);21 char * decode_slashdot(struct image *img); 22 22 23 23 /* image operations */ 24 struct image * load_image(char *name);25 struct image * new_image(int width, int height);24 struct image * image_load(char *name); 25 struct image * image_new(int width, int height); 26 26 int getgray(struct image *img, int x, int y, int *g); 27 27 int getpixel(struct image *img, int x, int y, int *r, int *g, int *b); … … 29 29 30 30 /* image filters */ 31 void f lood_fill(struct image *img, int x, int y, int r, int g, int b);32 struct image *fil l_holes(struct image *img);33 struct image * detect_lines(struct image *img);34 struct image * equalize(struct image *img);35 struct image * trick(struct image *img);36 struct image * smooth(struct image *img);37 struct image * median(struct image *img);31 void filter_flood_fill(struct image *img, int x, int y, int r, int g, int b); 32 struct image *filter_fill_holes(struct image *img); 33 struct image *filter_detect_lines(struct image *img); 34 struct image *filter_equalize(struct image *img); 35 struct image *filter_trick(struct image *img); 36 struct image *filter_smooth(struct image *img); 37 struct image *filter_median(struct image *img); 38 38
Note: See TracChangeset
for help on using the changeset viewer.