Changeset 382 for pwntcha


Ignore:
Timestamp:
Jan 3, 2005, 11:43:31 AM (18 years ago)
Author:
Sam Hocevar
Message:
  • proper headers.
Location:
pwntcha/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • pwntcha/trunk/README

    r381 r382  
    11PWNTCHA - Pretend We're Not a Turing Computer but a Human Antagonist
    22
    3 This research software studies captchas.
     3This is research software. It comes with absolutely no warranty.
    44
  • 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 */
    111
    212/* 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 */
    111
    212#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 */
    111
    212#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 */
    111
    212#include <stdio.h>
    313#include <stdint.h>
    414#include <stdlib.h>
     15#include <math.h>
    516
    617#include "config.h"
     
    609620
    610621//    dst = median(tmp);
    611 tmp = smooth(img);
     622//tmp = smooth(img);
    612623tmp = fill_holes(img);
    613624tmp = median(tmp);
Note: See TracChangeset for help on using the changeset viewer.