From 89001d47a0a0d15ea068e1b0fdaffcc329599a61 Mon Sep 17 00:00:00 2001 From: Tom Selier Date: Fri, 29 Sep 2023 14:32:30 +0200 Subject: [PATCH] updated path to be relative --- src/experiments/algorithms/sift_plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/experiments/algorithms/sift_plot.py b/src/experiments/algorithms/sift_plot.py index 6ac684c..f269682 100644 --- a/src/experiments/algorithms/sift_plot.py +++ b/src/experiments/algorithms/sift_plot.py @@ -9,11 +9,11 @@ def isFloat(num): except ValueError: return False -DATA_PATH = "C:\\Users\\Tom\\Desktop\\Files\\Repositories\\EV5_Beeldherk_Bomen\\src\\experiments\\algorithms\\data\\data.csv" +DATA_PATH = "src\\experiments\\algorithms\\data\\data.csv" BARK_TYPES = 8 tot_mag = [["", []] for x in range(BARK_TYPES)] -avg_mag = [["", []] for x in range(BARK_TYPES)] +avg_mag = [["", []] for x in range(BARK_TYPES)] max_mag = [["", []] for x in range(BARK_TYPES)] std_mag = [["", []] for x in range(BARK_TYPES)] avg_rep = [["", []] for x in range(BARK_TYPES)]