Skip to content

Commit 80cc4d5

Browse files
author
root
committed
docs: add README and CI workflow
1 parent bd6badc commit 80cc4d5

2 files changed

Lines changed: 55 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
15+
with:
16+
python-version: "3.10"
17+
- run: python -m compileall .

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# OMR Grader
2+
3+
Automated answer sheet grading system using computer vision with OpenCV.
4+
5+
[![CI](https://github.com/Tabasiarash/omr-grader/actions/workflows/ci.yml/badge.svg)](https://github.com/Tabasiarash/omr-grader/actions)
6+
7+
## Overview
8+
9+
Python-based OMR (Optical Mark Recognition) system that grades filled answer sheets by detecting and analyzing bubble marks using image processing techniques.
10+
11+
## Features
12+
13+
- Automatic answer sheet alignment and perspective correction
14+
- Bubble detection and mark recognition
15+
- Answer key comparison and scoring
16+
- Android app version included
17+
18+
## Requirements
19+
20+
- OpenCV (cv2)
21+
- NumPy
22+
- Python 3.10+
23+
24+
## Files
25+
26+
- `Azmunyar OMR Grader.py` — Main grading script
27+
- `Grader On Android.zip` — Android application package
28+
- `GraderTest.jpg` / `Tested.jpg` — Sample test images
29+
30+
## Usage
31+
32+
```bash
33+
python Azmunyar\ OMR\ Grader.py
34+
```
35+
36+
## License
37+
38+
MIT

0 commit comments

Comments
 (0)