Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 8 of 8

Thread: How Possible it is...

  1. #1
    Member
    Join Date
    Jun 2011
    Posts
    35
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default How Possible it is...

    to make a program that will scan a curriculumn vitae or any document (resume, profile, etc. etc.) using an ordinary scanner, and after scanning... all informations from that document will be automatically saved to the database.

    and what are the needs for this.

    Thanks!!!

  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: How Possible it is...

    Does the "ordinary scanner" produce an image of the scanned page?
    There are programs that will scan images and extract text.
    The "automatically saved to db" part would take some programming to organize the text that was scanned.

  3. #3
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: How Possible it is...

    Text recognition of hand-written text is still considered an "Open area of research". There are some programs out there which somewhat work on hand-written text, but I wouldn't trust their output without any human verification (which somewhat defeats the purpose). Recognizing typed text on the other hand is much easier.

  4. #4
    Member
    Join Date
    Jun 2011
    Posts
    35
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Re: How Possible it is...

    Thanks Sir Norms and Helloworld =)

    yes sir Norms the ordinary scanner produces the image from the scanned page. For example, im scanning my resume and after scanning, a program will read all the information and will save it directly to the database.

    How hard is that to make a program like that one.

  5. #5
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: How Possible it is...

    Quote Originally Posted by javarum View Post
    How hard is that to make a program like that one.
    It's not exactly trivial. What you're looking for is called OCR, and google is your friend.

    Optical character recognition - Wikipedia, the free encyclopedia
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  6. #6
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: How Possible it is...

    How hard is that to make a program like that one.
    Very hard.

  7. #7
    Member
    Join Date
    Jun 2011
    Posts
    35
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Re: How Possible it is...

    OCR? and what OCR stands for sir? =)

  8. #8
    Member
    Join Date
    Jun 2011
    Posts
    35
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default Re: How Possible it is...

    oh i see Optical Character Recognition.... thanks for all! ^_^

Tags for this Thread