- Extract the red channel from the RGB image.
- Align image so that upper left circle is at some known location, and lower right circle is at some known location.
- Define a template that is a little square or circle.
- Get a sub image from every one of the 5 columns in a row of circles.
- Find out which one has the lowest mean - use mean2().
- From the mean, assign an answer of A-E based on which column had the lowest mean.
how to detect answers which student chose it in answer sheet
조회 수: 1 (최근 30일)
이전 댓글 표시
hi , i want steps to create program to detect answers from answer sheet ex : (detect that student chose 'A' in question '1' in attached image ) thanks in advance
댓글 수: 0
답변 (1개)
Image Analyst
2015년 1월 24일
The steps are
[selection, theAnswer] = min(theMeansForThisRow);
Not too hard (actually, easy ) except step 2 might be a little hard if the images are not aligned already.
댓글 수: 4
AminaOsmanova
2017년 2월 11일
Please could you help me too.I can`t compare detected answers with the actual answer key stored in an excel sheet. Please help me
Image Analyst
2017년 2월 11일
OK, how can I do that?
Read this link and then post your question along with your image and your code that you adapted from this question.
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!