From 1163011683a890035f5d40233232a63f2e66fd66 Mon Sep 17 00:00:00 2001 From: Paolo Veglio <paolo.veglio@ssec.wisc.edu> Date: Wed, 1 Feb 2023 22:18:47 +0000 Subject: [PATCH] starting to clean up --- temp.py | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 temp.py diff --git a/temp.py b/temp.py deleted file mode 100644 index 0784bac..0000000 --- a/temp.py +++ /dev/null @@ -1,41 +0,0 @@ -class Tests: - - def __init__(self, scene_type): - self.scene = scene_type - - def select_thresholds(self, thresholds): - return thresholds[self.scene] - - def select_pixels(self): - idx = [0, 1, 2, 3] - return idx - - def run_tests(self): - pass - - -def all_tests(): - T1() - T2() - T3() - T4() - - -def T1(scene): - if scene not in ['1', '2', '3']: - return 0 - else: - confidence = 0 - return confidence - -# Ocean Day -# T1, T2, T4 - -# Ocean Night -# T1, T3, T4 - -# Example usage: -# -# ocean_day = Tests('Ocean_Day') -# thresh = ocean_day.select_thresholds(thresholds) -# -- GitLab