CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Apr 2011
    Posts
    0

    Question Character Recognition

    hi all..
    i am 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 these values will be compared in the database,,,nd the corresponding character'll be fetched.....
    in this way v can get the text corresponding to that image...
    what say guys.......
    i just wanted to know which function should i apply on the training set of images..........
    ..plz guys help me in this work... plz....

  2. #2
    dlorde is offline Elite Member Power Poster
    Join Date
    Aug 1999
    Location
    UK
    Posts
    10,163

    Re: Character Recognition

    Quote Originally Posted by aparnaverma View Post
    i just wanted to know which function should i apply on the training set of images..........
    Doesn't sound like a Java question to me; more of a general character recognition algorithm question...

    If you find an appropriate algorithm and have trouble coding it in Java we may be able to help.

    The hardest part of the software task is arriving at a complete and consistent specification, and much of the essence of building a program is in fact the debugging of the specification...
    F. Brooks
    Please use &#91;CODE]...your code here...&#91;/CODE] tags when posting code. If you get an error, please post the full error message and stack trace, if present.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured