Changeset 19
- Timestamp:
- 30.10.2006 22:28:02 (2 years ago)
- Files:
-
- trunk/devel/FuzzyOcr.pm (modified) (2 diffs)
- trunk/devel/FuzzyOcr/Hashing.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/devel/FuzzyOcr.pm
r18 r19 19 19 20 20 use 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 );21 use FuzzyOcr::Hashing qw(check_image_hash_db check_image_hash_db add_image_hash_db calc_image_hash); 22 22 use FuzzyOcr::Deanimate qw(deanimate); 23 23 use FuzzyOcr::Scoring qw(wrong_ctype corrupt_img known_img_hash); … … 41 41 return 0; 42 42 } 43 44 45 43 46 44 sub fuzzyocr_check { trunk/devel/FuzzyOcr/Hashing.pm
r18 r19 3 3 4 4 use base 'Exporter'; 5 our @EXPORT_OK = qw(check_image_hash_db check_image_hash_db add_image_hash );5 our @EXPORT_OK = qw(check_image_hash_db check_image_hash_db add_image_hash_db calc_image_hash); 6 6 7 7 use lib "../";
