필터 지우기
필터 지우기

Recognizing text from image of a calculator

조회 수: 1 (최근 30일)
Soumyadip
Soumyadip 2013년 3월 24일
편집: sandeep bayi 2017년 3월 21일
Hi,
I have trying to extract the numbers from a calculator screen image. I am using my laptop webcam to detect the image and simultaneously display the result after image processing. Can anybody please help how to proceed??
  댓글 수: 1
sandeep bayi
sandeep bayi 2017년 3월 21일
편집: sandeep bayi 2017년 3월 21일
iam too working on the like wise project and need help for extracting the numbers from led display of seven segment data. Can anyone please help me?

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2013년 3월 24일
Very very easy. You don't even need to do sophisticated OCR. You merely need to sample the image at known locations for known numbers. Trivial for a 7 segment display. Just read the image at 7 locations. Let's say the locations are
1
2 3
4
5 6
7
Now a "1" would have 2 and 5 lit, and all the others unlit.
A "2" would have 1, 3, 4, 5, & 7 lit and the others unlit.
You can make up a 128 element look up table and use that to read off the number, given an input pattern. it's the same concept but a little more complicated if you have something with more resolution than a 7 segment display.
  댓글 수: 23
Image Analyst
Image Analyst 2013년 3월 31일
Sorry but I think I've provided you enough to go on. If I do this, then there will be another problem with another weird image, and I can't go on to do the whole project with you. And I don't have time to delve deeply into any one particular project. I think you have the general concepts enough for you to continue on your own and take pride in ownership of your code. If lab thresholding won't work, try thresholding on RGB and look for large black squares. Of course this won't work the minute you start to look at black calculators instead of white calculators - see what I mean?
Soumyadip
Soumyadip 2013년 3월 31일
okay...guess i am on my own..thanks

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by