Change default img and export directories, closes #55

This commit is contained in:
Romain Bazile 2020-10-04 23:22:52 +02:00
parent a35b70e0fb
commit 1488459954
2 changed files with 3 additions and 3 deletions

View file

@ -154,7 +154,7 @@ class ImagerProcess(multiprocessing.Process):
self.__iso = iso
self.__shutter_speed = shutter_speed
self.__exposure_mode = "fixedfps"
self.__base_path = "/home/pi/PlanktonScope/img"
self.__base_path = "/home/pi/data/img"
self.__export_path = ""
self.__global_metadata = None

View file

@ -63,8 +63,8 @@ class SegmenterProcess(multiprocessing.Process):
self.stop_event = event
self.__pipe = None
self.segmenter_client = None
self.__img_path = "/home/pi/PlanktonScope/img"
self.__export_path = "/home/pi/PlanktonScope/export"
self.__img_path = "/home/pi/data/img"
self.__export_path = "/home/pi/data/export"
self.__ecotaxa_path = os.path.join(self.__export_path, "ecotaxa")
self.__global_metadata = None
self.__working_path = ""