Skip to content

Commit

Permalink
add QTYPE_INT4
Browse files Browse the repository at this point in the history
  • Loading branch information
Udayraj123 committed May 15, 2020
1 parent e0f1e81 commit 603d8d4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
**/__pycache__
**/CheckedOMRs
**/ignore
**/.DS_Store
**/.vscode

**/ignore
OMRChecker.wiki/
# Everything in inputs/ and outputs/
inputs/*
outputs/*
# Except *.json and OMR_Files/
# !inputs/OMR_Files/
# !inputs/*.json
# !inputs/omr_marker.jpg
# !inputs/omr_marker.jpg
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""
Constants
"""
display_height = int(480)
display_height = int(640)
display_width = int(640)
windowWidth = 1280
windowHeight = 720
Expand Down
4 changes: 4 additions & 0 deletions template.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ def __init__(self, dims, key, orig, traverse_pts):
'vals': range(10),
'orient': 'V'
},
'QTYPE_INT4': {
'vals': [1,2,3,0],
'orient': 'V'
},
'QTYPE_MCQ4': {
'vals': ['A', 'B', 'C', 'D'],
'orient': 'H'
Expand Down

0 comments on commit 603d8d4

Please sign in to comment.