Changeset 19

Show
Ignore:
Timestamp:
30.10.2006 22:28:02 (2 years ago)
Author:
decoder
Message:

Small corrections, passes all tests so far... please test :)
TODO: Timeout Stuff, Custom word score, Adding the size parameters to the parsing routine

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/devel/FuzzyOcr.pm

    r18 r19  
    1919 
    2020use FuzzyOcr::Config qw(get_pms save_pms get_thresholds get_scansets get_config get_wordlist set_config finish_parsing_end load_global_words load_personal_words debuglog logfile); 
    21 use FuzzyOcr::Hashing qw(check_image_hash_db check_image_hash_db add_image_hash); 
     21use FuzzyOcr::Hashing qw(check_image_hash_db check_image_hash_db add_image_hash_db calc_image_hash); 
    2222use FuzzyOcr::Deanimate qw(deanimate); 
    2323use FuzzyOcr::Scoring qw(wrong_ctype corrupt_img known_img_hash); 
     
    4141    return 0; 
    4242} 
    43  
    44  
    4543 
    4644sub fuzzyocr_check { 
  • trunk/devel/FuzzyOcr/Hashing.pm

    r18 r19  
    33 
    44use base 'Exporter'; 
    5 our @EXPORT_OK = qw(check_image_hash_db check_image_hash_db add_image_hash); 
     5our @EXPORT_OK = qw(check_image_hash_db check_image_hash_db add_image_hash_db calc_image_hash); 
    66 
    77use lib "../";