From 0271a85fd1ad6eefb37a142f0c0e53fe995e52ec Mon Sep 17 00:00:00 2001 From: Schneider Leo <leo.schneider@etu.ec-lyon.fr> Date: Wed, 11 Jun 2025 17:15:35 +0200 Subject: [PATCH] fix : absolute path for image dataset and DLLs --- image_processing/build_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_processing/build_dataset.py b/image_processing/build_dataset.py index c618576..19288df 100644 --- a/image_processing/build_dataset.py +++ b/image_processing/build_dataset.py @@ -169,7 +169,7 @@ def create_dataset(bin_mz=1,tolerance=0.005,noise=1000,apex='apex',suffix='-d200 """ label = create_antibio_dataset(suffix=suffix,base_path=base_path) tolerance_str=str(tolerance)[2::] - for path in glob.glob(os.path.join(base_path,"/data/raw_data/**.wiff")): + for path in glob.glob(os.path.join(base_path,"data/raw_data/**.wiff")): print(path) species = None #check if file exists in the label table -- GitLab