How to read text present on a image
-
Hi every body. Can any body help me plz I have a task that requires to read the text on a image My requirement is I take a image of a vehicle number plate through a web cam or a usb camera. Now when i get the image when i click a button i should get the numberplate number into a text box I need this functionality using c# or vb.net plz help me i am doing my B.tech final year project, I would be very much thank full if any one will help me thanks in advance with regards
harivinod
-
Hi every body. Can any body help me plz I have a task that requires to read the text on a image My requirement is I take a image of a vehicle number plate through a web cam or a usb camera. Now when i get the image when i click a button i should get the numberplate number into a text box I need this functionality using c# or vb.net plz help me i am doing my B.tech final year project, I would be very much thank full if any one will help me thanks in advance with regards
harivinod
I suggest you get some advice from your professor, that's his job. If this is your final project and you have a choice to switch, I suggest you do that. This is going to be a pretty tough project to undertake. If you choose to continue, good luck. Remember, google is your friend. If you have specific questions or problem areas, ask here.
I'm going to become rich when I create a device that allows me to punch people in the face over the internet. "If an Indian asked a programming question in the forest, would it still be urgent?" - John Simmons / outlaw programmer
-
Hi every body. Can any body help me plz I have a task that requires to read the text on a image My requirement is I take a image of a vehicle number plate through a web cam or a usb camera. Now when i get the image when i click a button i should get the numberplate number into a text box I need this functionality using c# or vb.net plz help me i am doing my B.tech final year project, I would be very much thank full if any one will help me thanks in advance with regards
harivinod
Don't expect people to do your assignment for you. ASk your teacher for help, that is what he's there for.
"I guess it's what separates the professionals from the drag and drop, girly wirly, namby pamby, wishy washy, can't code for crap types." - Pete O'Hanlon
-
Hi every body. Can any body help me plz I have a task that requires to read the text on a image My requirement is I take a image of a vehicle number plate through a web cam or a usb camera. Now when i get the image when i click a button i should get the numberplate number into a text box I need this functionality using c# or vb.net plz help me i am doing my B.tech final year project, I would be very much thank full if any one will help me thanks in advance with regards
harivinod
You will need to look into Optical Character Recognition (OCR).
Steve Jowett ------------------------- Sometimes a man who deserves to be looked down upon because he is a fool, is only despised only because he is an 'I.T. Consultant'
-
Hi every body. Can any body help me plz I have a task that requires to read the text on a image My requirement is I take a image of a vehicle number plate through a web cam or a usb camera. Now when i get the image when i click a button i should get the numberplate number into a text box I need this functionality using c# or vb.net plz help me i am doing my B.tech final year project, I would be very much thank full if any one will help me thanks in advance with regards
harivinod
first of all have u tried google for this question. if not that's bad. u must understand the way of searching. ok now your answer. now its up to u how will u take this... best of luck.
Dim Doc1 As New MODI.Document Dim inputFile As String = "C:\test\multipage.tif" Doc1.Create(inputFile) Doc1.OCR() ' this will ocr all pages of a multi-page tiff file Doc1.Save() ' this will save the deskewed reoriented images, and the OCR text, back to the inputFile Dim strRecText As String = "" For imageCounter As Integer = 0 To (Doc1.Images.Count - 1) ' work your way through each page of results strRecText &= Doc1.Images(imageCounter).Layout.Text ' this puts the ocr results into a string Next File.AppendAllText("C:\test\testmodi.txt", strRecText) ' write the OCR file out to disk Doc1.Close() ' clean up Doc1 = Nothing
help everyone Falling down is not defeat...defeat is when u refuse to get up...