|
|
2010-05-04
, 16:12
|
|
Posts: 726 |
Thanked: 345 times |
Joined on Apr 2010
@ Sweden
|
#11
|
|
|
2010-05-04
, 16:18
|
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#12
|
|
|
2010-05-04
, 16:29
|
|
Posts: 58 |
Thanked: 10 times |
Joined on Dec 2009
|
#13
|
|
|
2010-05-04
, 16:43
|
|
Posts: 58 |
Thanked: 10 times |
Joined on Dec 2009
|
#14
|
|
|
2010-05-04
, 16:49
|
|
Posts: 726 |
Thanked: 345 times |
Joined on Apr 2010
@ Sweden
|
#15
|
|
|
2010-05-04
, 17:14
|
|
Posts: 58 |
Thanked: 10 times |
Joined on Dec 2009
|
#16
|
|
|
2010-05-04
, 17:16
|
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#17
|
|
|
2010-05-04
, 17:33
|
|
Posts: 58 |
Thanked: 10 times |
Joined on Dec 2009
|
#18
|
progress = QtGui.QProgressDialog("Please Wait", "Cancel", 0, 100, self.mainForm)
progress.setWindowModality(QtCore.Qt.WindowModal)
progress.setAutoReset(True)
progress.setAutoClose(True)
progress.setMinimum(0)
progress.setMaximum(100)
progress.resize(800,220)
progress.setWindowTitle("Running OCR engine")
progress.show()
progress.setValue(0)
os.system('convert '+ lastPic+ ' test.tif')
progress.setValue(30)
os.system('tesseract test.tif test')
progress.setValue(100)
progress.hide()
|
|
2010-05-04
, 17:45
|
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#19
|
|
|
2010-05-04
, 17:49
|
|
Posts: 58 |
Thanked: 10 times |
Joined on Dec 2009
|
#20
|