ajju has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.
  • Comment on Having problems with Image::OCR::Tesseract perl module installation on fedora 10.
  • Download Code

Replies are listed 'Best First'.
Re: Having problems with Image::OCR::Tesseract perl module installation on fedora 10.
by marto (Cardinal) on Nov 29, 2010 at 21:02 UTC

    So you can't get one of the prerequisites to install from your other thread? There's really no need to start a new thread. Have you read the INSTALL file, do you have the required programs and modules installed?

    Thanks for continually ignoring the formatting advice which has been pointed out to you several times now.

Re: Having problems with Image::OCR::Tesseract perl module installation on fedora 10.
by Khen1950fx (Canon) on Nov 29, 2010 at 21:53 UTC
    Image::OCR::Tesseract requires that you download and install tesseract. Also, you'll probably need the tessdoc. Another common problem is Image::Magick. Your best bet is to use yum to install ImageMagick and ImageMagick-devel. On my system, it has a problem with libMagickCore.so.4 not being found. Then try installing Image::Magick from CPAN.
      Image::Magick isn't a problem as this module does not make use of Image::Magick
        The README specifically mentions tesseract and ImageMagick. Testing Image::Magick is a good way to see if ImageMagick is working properly.
Re: Having problems with Image::OCR::Tesseract perl module installation on fedora 10.
by VinsWorldcom (Prior) on Nov 29, 2010 at 21:20 UTC

    The Image::OCR::Tesseract Makefile.PL file uses a local copy of Devel::AssertOS to determine your OS and either create the Makefile or not. If you're not getting a Makefile created, that'd be the first place to look.

    What is the value of $^O on your system?

    A reply falls below the community's threshold of quality. You may see it by logging in.
Re: Having problems with Image::OCR::Tesseract perl module installation on fedora 10.
by Anonymous Monk on Nov 29, 2010 at 21:45 UTC
    Look at the source of the module, its a one trick pony

    I wouldn't bother with this module, I'd simply use tesseract directly

Re: Having problems with Image::OCR::Tesseract perl module installation on fedora 10.
by ajinkyagadewar (Novice) on Apr 12, 2012 at 06:07 UTC
    I recently worked on extraction of text from images in perl using tesseract.

    Below is the approach I followed and worked well for me:

    1. Download executable of tessract-OCR. Best way to do that is using SVN link for download. Need to follow all steps in
    SVN link

    2. It also has dependency on Leptonica

    3. Once everything goes well install 'Image::OCR::Tesseract' from CPAN. If 1 and 2 works fine, all tests should pass and the installation should be successful.

    Let me know if this works for you.