Click here to Skip to main content
15,878,871 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Any one plz tell me how to do image processing for 7 segment display, using vb.net MODI method i can read normal image, want a solution for 7 segment display.

plz let me know any solutions.

Thanks.



sample of 7 segment display
Posted

1 solution

MODI does OCR on images.

A 7 segment display does not create images, it is in fact an electronic component controlled by a number of AND, OR and NOR gates which will decide, depending on their ON / OFF state, which one of 7 segments will be lit or not.

Now, where exactly does the 7 segment display fit into your program ?
 
Share this answer
 
Comments
Ashish Bachhav 25-Sep-14 8:34am    
i get the image from my webcam, then i get that image in picturebox and then i do image processing. in that image 7 segment display digits are there.
if i use simple text image, then it read correctly. but for 7 segment display it's not work.


thanks for reply.
Tino Fourie 25-Sep-14 8:49am    
Well firstly, your approach to use MODI on an image of a 7 segment display will never work since the 7 segment display will never produce a character than can be identified during OCR.

Secondly, MODI is a discontinued product from Microsoft with its last release with MS Office 2010.

You will need to look into Emgu, an OpenCV wrapper. More information at this http://www.emgu.com/wiki/index.php/Tutorial:

If you do it right, you should be able to read what is displayed on the 7-segment display during live video feed. No need to capture a frame of the video feed and then create an image from that.
Just make sure that your frame rate is fast enough to produce "full motion" video feed - minimum of around 12 - 14 frames per second should do.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900