- Timestamp:
- Jan 3, 2005, 11:43:31 AM (18 years ago)
- Location:
- pwntcha/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
pwntcha/trunk/README
r381 r382 1 1 PWNTCHA - Pretend We're Not a Turing Computer but a Human Antagonist 2 2 3 This research software studies captchas.3 This is research software. It comes with absolutely no warranty. 4 4 -
pwntcha/trunk/src/common.h
r381 r382 1 /* 2 * commin.h: common stuff 3 * $Id$ 4 * 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 10 */ 1 11 2 12 /* image structure */ -
pwntcha/trunk/src/image.c
r381 r382 1 /* 2 * image.c: image I/O functions 3 * $Id$ 4 * 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 10 */ 1 11 2 12 #include <stdio.h> -
pwntcha/trunk/src/main.c
r381 r382 1 /* 2 * main.c: main function 3 * $Id$ 4 * 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 10 */ 1 11 2 12 #include <stdio.h> -
pwntcha/trunk/src/slashdot.c
r381 r382 1 /* 2 * slashdot.c: decode Slashdot captchas 3 * $Id$ 4 * 5 * Copyright: (c) 2004 Sam Hocevar <sam@zoy.org> 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the Do What The Fuck You Want To 8 * Public License as published by Banlu Kemiyatorn. See 9 * http://sam.zoy.org/projects/COPYING.WTFPL for more details. 10 */ 1 11 2 12 #include <stdio.h> 3 13 #include <stdint.h> 4 14 #include <stdlib.h> 15 #include <math.h> 5 16 6 17 #include "config.h" … … 609 620 610 621 // dst = median(tmp); 611 tmp = smooth(img);622 //tmp = smooth(img); 612 623 tmp = fill_holes(img); 613 624 tmp = median(tmp);
Note: See TracChangeset
for help on using the changeset viewer.