diff --git a/PPOCRLabel/libs/autoDialog.py b/PPOCRLabel/libs/autoDialog.py index 87df91171cc4b4f52769caf2decad15cafad60c4..09fbeb56b31b82bff8152f5e0b9a779f06b18985 100644 --- a/PPOCRLabel/libs/autoDialog.py +++ b/PPOCRLabel/libs/autoDialog.py @@ -46,7 +46,8 @@ class Worker(QThread): chars = res[1][0] cond = res[1][1] posi = res[0] - strs += "Transcription: " + chars + " Probability: " + str(cond) + " Location: " + json.dumps(posi) + strs += "Transcription: " + chars + " Probability: " + str(cond) + \ + " Location: " + json.dumps(posi) +'\n' # Sending large amounts of data repeatedly through pyqtSignal may affect the program efficiency self.listValue.emit(strs) self.mainThread.result_dic = self.result_dic