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 4 of 4

Thread: Re: How to read a text from an Image file?

  1. #1
    Junior Member
    Join Date
    Apr 2011
    Posts
    1
    My Mood
    Worried
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: How to read a text from an Image file?

    hi all..
    i m working on my final year project,,its about CAPTCHA breaking...i.e. to show that captchas can be easily breakable....
    for that following steps need to be followed:
    1. firstly trace the position of characters in the input image.
    2. then extract each character,,we can also say it as character segmentation..i.e. separating each character individually...
    <<i have completed my project till dis step>>

    now we have :
    1. the segmented images...
    2. a training set of images i.e. a set of images each representing an individual character.

    what i want :
    1. maintain a database in which 2 columns will be there... one representing the individual character i.e. from a to z...and second representing the value obtained after applying some function on the corresponding training image.
    2. now after applying the same function on the segmented image which we have obtained in step 2,,we'll get their values also...now dese values will be compared in the database,,,nd the corresponding character'll be fetched.....
    in this way v can get the text corressponding to that image...
    what say guys.......
    i just wanted to know which function shud i apply on the training set of images..........
    ..plz guys help me in this work... plz....


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: How to read a text from an Image file?

    Please don't hijack old threads, and further do so posting the same thing more than once to multiple threads. I've deleted your other posts and moved this to its own thread.

  3. #3
    Junior Member
    Join Date
    Oct 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: How to read a text from an Image file?

    Hi Aparna,

    I'm also looking for code example to break any simple CAPTCHA. Would you please mind in letting me know where do I can find the same? please send me an email for fast response yeddu.lakshmana@gmail.com.

    Thanks,
    Lakshman

  4. #4
    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 to read a text from an Image file?

    Quote Originally Posted by lakshman_y View Post
    Hi Aparna,

    I'm also looking for code example to break any simple CAPTCHA. Would you please mind in letting me know where do I can find the same? please send me an email for fast response yeddu.lakshmana@gmail.com.

    Thanks,
    Lakshman
    This isn't exactly trivial, which is pretty much the point of captchas. What you're looking for is called OCR, or optical character recognition, and some googling will give you an idea of what you're getting yourself into.

    That being said, please read the link in my signature on asking questions the smart way before you post again. For example, using text-message speak ("dese", "shud", and "plz" are not words) and poorly formatted sentences are great ways to make sure people don't help you. Also, requesting "fast response" via private email pretty much defeats the purposes of a public forum.
    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!

Similar Threads

  1. How to read a text from an Image file?
    By GautamRy in forum File I/O & Other I/O Streams
    Replies: 4
    Last Post: October 5th, 2011, 05:02 AM
  2. how to read a text delimited file using 2 dimentional array in java ??
    By pooja123 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: April 1st, 2011, 09:11 AM
  3. Replies: 8
    Last Post: March 25th, 2011, 02:34 PM
  4. Read a text file and parse the contents of file
    By HelloAll in forum File I/O & Other I/O Streams
    Replies: 1
    Last Post: March 3rd, 2011, 05:47 AM
  5. Read data from text file
    By yroll in forum Algorithms & Recursion
    Replies: 4
    Last Post: December 31st, 2009, 01:40 AM