필터 지우기
필터 지우기

detect location answer in survey form

조회 수: 2 (최근 30일)
Abdul
Abdul 2012년 3월 4일
how to differentiate between location of answer.it means the location of answer is detected according to the number of questions.there is the sample.http://i1108.photobucket.com/albums/h404/abdulhadi3/ConferenceSurveyForm.png
somebody help, i am new in this field

채택된 답변

Image Analyst
Image Analyst 2012년 3월 4일
Just set up a template - a list of rectangular regions where you will look. Each region will have a top row, bottom row, left column and right column. Then get the mean of the image there:
subImage = grayImage(topRow:bottomRow, leftCol:rightCol);
meanValue = mean(subImage(:));
If the mean is lower than some value, it's dark, if not, it's bright. That should be plenty of information to complete the project.
  댓글 수: 1
Abdul
Abdul 2012년 3월 8일
sorry, i have try but cannot run.can u give an example.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by