diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kooka/README.KADMOS | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kooka/README.KADMOS')
-rw-r--r-- | kooka/README.KADMOS | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/kooka/README.KADMOS b/kooka/README.KADMOS new file mode 100644 index 00000000..a6242155 --- /dev/null +++ b/kooka/README.KADMOS @@ -0,0 +1,73 @@ +Kooka and KADMOS integration +============================ + +This file describes how to make Kooka working with the KADMOS OCR/ICR +engine. + +KAMDOS is commercial OCR/ICR software component of the company + + reRecognition GmbH + Hafenstr. 50B + 8280 Kreuzlingen + Switzerland + Tel.: +41 71 6780000 + Fax: +41 71 6780099 + www.reRecognition.com + +and Kooka can be build using the linux version of the component in +order to achive very good ocr results. + +Please contact re Recognition directly if you like to obtain or test +KADMOS. Note that if you are linking against KADMOS, you loose the +permission to use the GPL Qt version, so you need a commercial Qt +version as well. + +Configuration +------------- + +As Kooka does not require KADMOS, it is neccessary to configure +Kooka to use the KADMOS library. This could be done by calling the +configure script of Kooka's source distribution with following +parameter: +./configure --with-kadmos-dir=/where/kadmos.h/resides/ + +The configure script tries to locate the file kadmos.h in the +directory that was specified. The KADMOS library is expected in the +same directory. Build the source after configuring with KADMOS. Kooka +enables the code to work with KADMOS in the source and links the +library. + +Installation +------------ + +KADMOS is linked statically and thus there is no need for special +installation of the KADMOS library. + +Installation of the Classifier Files: + +KADMOS needs classifier files for the ocr process which come with +the KADMOS developer's toolkit. The classifier files need to be installed +in the KDE application data directory for Kooka in a subdirectory named +classifiers. If your KDE installation goes to /opt/kde3/, this is for +example /opt/kde3/share/apps/kooka/classifiers. Kooka picks the +available classifiers up automatically. + +The classifiers are named in the following way: + +[fontkind][country/region].rec, +where fontkinds are +ttf -> machine print font +hand -> handprint (isolated) +norm -> OCR norm font + + +For example the following classifier names are used: + +ttfus.rec US machineprint classifiers +handus.rec US handwriting classifiers +norm.rec Special OCR character sets, not localized + + +---------------------------------------------------------------------- +Klaas Freitag <freitag@suse.de> +$Id$ |