Changeset 389 for pwntcha/trunk/src/common.h
- Timestamp:
- Jan 3, 2005, 10:48:54 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/src/common.h
r387 r389 19 19 20 20 /* available CAPTCHA decoders */ 21 char * decode_slashdot(struct image *img); 21 char *decode_phpbb(struct image *img); 22 char *decode_slashdot(struct image *img); 23 char *decode_test(struct image *img); 22 24 23 25 /* image operations */ 24 struct image * image_load(char *name); 25 struct image * image_new(int width, int height); 26 struct image *image_load(char *name); 27 struct image *image_new(int width, int height); 28 void image_free(struct image *img); 29 void image_display(struct image *img); 26 30 int getgray(struct image *img, int x, int y, int *g); 27 31 int getpixel(struct image *img, int x, int y, int *r, int *g, int *b); … … 32 36 struct image *filter_fill_holes(struct image *img); 33 37 struct image *filter_detect_lines(struct image *img); 34 struct image *filter_equalize(struct image *img );38 struct image *filter_equalize(struct image *img, int threshold); 35 39 struct image *filter_trick(struct image *img); 36 40 struct image *filter_smooth(struct image *img); 37 41 struct image *filter_median(struct image *img); 42 struct image *filter_contrast(struct image *img); 38 43
Note: See TracChangeset
for help on using the changeset viewer.