-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
2,775 additions
and
1,661 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,11 @@ | ||
- Main developer: | ||
|
||
Jesus Arias Fisteus | ||
|
||
- Manuscript digits classifier: | ||
|
||
Rodrigo Arguello | ||
|
||
- Exam configuration dialogs: | ||
|
||
Jonathan Araneda Labarca |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
2017-07-24 Jesus Arias Fisteus <[email protected]> | ||
* Release 0.7. | ||
|
||
* Add an SVM-based OCR module for student's identity and cell crosses | ||
|
||
* Add support to create Windows installers with pyinstaller and NSIS, | ||
and support for Linux portable executables with pyinstaller. | ||
|
||
* Add support to publish the project in PyPI | ||
|
||
* Transition to the cv2 bindings og OpenCV 2.4 | ||
|
||
* Several minor improvements and bug fixes | ||
|
||
2016-07-04 Jesus Arias Fisteus <[email protected]> | ||
|
||
* Release 0.6.4. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/env python | ||
|
||
from __future__ import print_function | ||
|
||
import sys | ||
|
||
|
||
dependencies = {} | ||
try: | ||
import cv2 | ||
if cv2.__version__.startswith('2.4'): | ||
dependencies['opencv'] = (True, None) | ||
else: | ||
dependencies['opencv'] = (False, 'version') | ||
except ImportError: | ||
dependencies['opencv'] = (False, 'import') | ||
|
||
try: | ||
import PyQt4.QtCore | ||
dependencies['pyqt4'] = (True, None) | ||
except ImportError: | ||
dependencies['pyqt4'] = (False, 'import') | ||
|
||
if all(value[0] for value in dependencies.values()): | ||
import eyegrade.eyegrade | ||
eyegrade.eyegrade.main() | ||
else: | ||
has_opencv, reason = dependencies['opencv'] | ||
if not has_opencv: | ||
if reason == 'version': | ||
print('OpenCV 2.4 is required, but {} found.' | ||
.format(cv2.__version__), | ||
file=sys.stderr) | ||
else: | ||
print('Cannot import cv2. You need to install OpenCV 2.4 ' | ||
'and its Python bindings.', | ||
file=sys.stderr) | ||
has_pyqt4, reason = dependencies['pyqt4'] | ||
if not has_pyqt4: | ||
print('Cannot import PyQt4. You need to install it.', | ||
file=sys.stderr) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env python | ||
|
||
import eyegrade.create_exam | ||
|
||
eyegrade.create_exam.main() |
Binary file not shown.
Oops, something went wrong.