def restoreImage(self):
        '''Passes the current image through the restoration model, displaying the resulting restored image.'''

        if self.image_filename is None:
            QtHelper.dialog(
                'Before restoring an image, please open it using File->Open (Ctrl+O)'
            )
            return

        #QtHelper.dialog( 'image restoration is not yet implemented' )

        input_filename = self.image_filename
        output_filename = 'temp_restored_image.png'

        Clean.Clean(input_filename[0], output_filename)

        read_image = FileIO.readImage(output_filename)

        if read_image is None:
            pass  # Error (very weird)
        else:
            self.image = read_image
            self.image_filename = output_filename
            self.image_label.setPixmap(QPixmap(self.image))
Example #2
0
import Clean
import unittest
import HTMLTestRunner
# from Common.Report import HTML_FILE_PATH, HTML_FILE_NAME

# 一键清理日志,测试数据,测试报告,测试截图
Clean.Clean()
# from Common.RunTime_Log import Log

Case_Dir = r'E:\ZenTao_Test_Project\TestCases'
# file = open(HTML_FILE_PATH + HTML_FILE_NAME, 'wb')
suite = unittest.defaultTestLoader.discover(
    Case_Dir, pattern='Test_Case_ZenTao_Login.py')
# runner = HTMLTestRunner.HTMLTestRunner(stream=file, title='禅道登录测试报告', description='用例执行情况')
# runner.run(suite)
# Log().W_log_warning("写入测试报告")
print('测试结束')
# file.close()
Example #3
0
def normpath(path):
  result = Clean(path)
  if isinstance(path, unicode):
    return unicode(result, 'utf-8')
  return result