Compare commits

...

2 Commits

1 changed files with 11 additions and 0 deletions

View File

@ -66,12 +66,17 @@ class MainApp:
# Load values from config after UI has been initialised
self.img_path.set(config_json["path"])
self.img_size.set(config_json["size"])
now = datetime.datetime.now()
self.log = open(pathlib.Path(config_json["out"], F"result-{now.strftime('%Y-%m-%dT%H.%M.%S')}.csv"), "x")
self.log.write("test")
def on_quit(self, event=None):
'''
Close PLT windows on main app quit
'''
plt.close()
self.log.close()
self.mainwindow.quit();
def run(self):
@ -361,6 +366,12 @@ class MainApp:
if not part_update:
self.drawCannyHM(img, 1, 1)
# Write results to CSV file
if not part_update:
# if self.log.
# Only do this if the image has changed
self.log.write(F"{self.img_name[1]}, test\n")
# Show all data
plt.show(block=False) ## Graphs
self.draw_output(size) ## Images