Simple-Track 2.0.1__tar.gz → 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {simple_track-2.0.1 → simple_track-2.0.2}/PKG-INFO +2 -2
- {simple_track-2.0.1 → simple_track-2.0.2}/pyproject.toml +1 -1
- {simple_track-2.0.1 → simple_track-2.0.2}/src/Simple_Track.egg-info/PKG-INFO +2 -2
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/track.py +7 -2
- {simple_track-2.0.1 → simple_track-2.0.2}/LICENSE +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/README.md +1 -1
- {simple_track-2.0.1 → simple_track-2.0.2}/setup.cfg +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/Simple_Track.egg-info/SOURCES.txt +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/Simple_Track.egg-info/dependency_links.txt +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/Simple_Track.egg-info/entry_points.txt +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/Simple_Track.egg-info/requires.txt +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/Simple_Track.egg-info/top_level.txt +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/run_simple_track.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/__init__.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/exceptions.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/feature.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/flow_solver.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/frame.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/frame_output.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/frame_tracker.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/load.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/src/simpletrack/utils.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_feature.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_flow_solver.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_frame.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_frame_tracker.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_mwe_output.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_simple_track_and_load.py +0 -0
- {simple_track-2.0.1 → simple_track-2.0.2}/tests/test_utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Simple-Track
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Threshold-based object tracking algorithm for 2D data
|
|
5
5
|
Author-email: Adam Gainford <adam.gainford@reading.ac.uk>, Thorwald Stein <t.h.m.stein@reading.ac.uk>
|
|
6
6
|
License-Expression: MPL-2.0
|
|
@@ -203,6 +203,7 @@ OUTPUT:
|
|
|
203
203
|
path: ./output
|
|
204
204
|
experiment_name: Simple-Track Experiment # Name of experiment to add to output files
|
|
205
205
|
save_data: true # Whether to save data to output
|
|
206
|
+
skip_tracking: false # Whether to skip tracking and just output feature properties
|
|
206
207
|
|
|
207
208
|
FEATURE:
|
|
208
209
|
threshold: 1 # Threshold used for defining a feature
|
|
@@ -217,7 +218,6 @@ FLOW_SOLVER:
|
|
|
217
218
|
apply_tukey_filtering: True # Apply a 2D Tukey window to each subdomain before phase cross-correlation
|
|
218
219
|
|
|
219
220
|
TRACKING:
|
|
220
|
-
skip_tracking: false # Whether to skip tracking and just output feature properties
|
|
221
221
|
overlap_nbhood: 5 # Radius of halo in pixels for orphan storms - big halo assumes storms may spawn "children" at a distance multiple pixels away
|
|
222
222
|
overlap_threshold: 0.6 # Minimum fraction of overlap
|
|
223
223
|
retain_lifetime_on_split: True # If a child Feature splits from its parent feature, this determines whether the child Feature should carry over the lifetime from the parent or whether its lifetime should be set to 1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Simple-Track
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Threshold-based object tracking algorithm for 2D data
|
|
5
5
|
Author-email: Adam Gainford <adam.gainford@reading.ac.uk>, Thorwald Stein <t.h.m.stein@reading.ac.uk>
|
|
6
6
|
License-Expression: MPL-2.0
|
|
@@ -203,6 +203,7 @@ OUTPUT:
|
|
|
203
203
|
path: ./output
|
|
204
204
|
experiment_name: Simple-Track Experiment # Name of experiment to add to output files
|
|
205
205
|
save_data: true # Whether to save data to output
|
|
206
|
+
skip_tracking: false # Whether to skip tracking and just output feature properties
|
|
206
207
|
|
|
207
208
|
FEATURE:
|
|
208
209
|
threshold: 1 # Threshold used for defining a feature
|
|
@@ -217,7 +218,6 @@ FLOW_SOLVER:
|
|
|
217
218
|
apply_tukey_filtering: True # Apply a 2D Tukey window to each subdomain before phase cross-correlation
|
|
218
219
|
|
|
219
220
|
TRACKING:
|
|
220
|
-
skip_tracking: false # Whether to skip tracking and just output feature properties
|
|
221
221
|
overlap_nbhood: 5 # Radius of halo in pixels for orphan storms - big halo assumes storms may spawn "children" at a distance multiple pixels away
|
|
222
222
|
overlap_threshold: 0.6 # Minimum fraction of overlap
|
|
223
223
|
retain_lifetime_on_split: True # If a child Feature splits from its parent feature, this determines whether the child Feature should carry over the lifetime from the parent or whether its lifetime should be set to 1
|
|
@@ -45,6 +45,8 @@ class Tracker:
|
|
|
45
45
|
|
|
46
46
|
if "INPUT" in self.config:
|
|
47
47
|
self.file_type = self.config["INPUT"].get("file_type", None)
|
|
48
|
+
else:
|
|
49
|
+
self.file_type = None
|
|
48
50
|
|
|
49
51
|
if "FLOW_SOLVER" in self.config:
|
|
50
52
|
self.flow_solver = FlowSolver(**self.config["FLOW_SOLVER"])
|
|
@@ -53,16 +55,19 @@ class Tracker:
|
|
|
53
55
|
|
|
54
56
|
if "TRACKING" in self.config:
|
|
55
57
|
self.frame_tracker = FrameTracker(**self.config["TRACKING"])
|
|
56
|
-
self.skip_tracking = self.config["TRACKING"].get("skip_tracking", False)
|
|
57
58
|
else:
|
|
58
59
|
self.frame_tracker = FrameTracker()
|
|
59
|
-
self.skip_tracking = False
|
|
60
60
|
|
|
61
61
|
if "OUTPUT" in self.config:
|
|
62
|
+
self.skip_tracking = self.config["TRACKING"].get("skip_tracking", False)
|
|
62
63
|
output_path = self.config["OUTPUT"].get("path", "./output")
|
|
63
64
|
expt_name = self.config["OUTPUT"].get(
|
|
64
65
|
"experiment_name", "Simple-Track Experiment"
|
|
65
66
|
)
|
|
67
|
+
else:
|
|
68
|
+
self.skip_tracking = False
|
|
69
|
+
output_path = "./output"
|
|
70
|
+
expt_name = "Simple-Track Experiment"
|
|
66
71
|
|
|
67
72
|
# Output only if flagged in config
|
|
68
73
|
self.frame_output = None
|
|
File without changes
|
|
@@ -181,6 +181,7 @@ OUTPUT:
|
|
|
181
181
|
path: ./output
|
|
182
182
|
experiment_name: Simple-Track Experiment # Name of experiment to add to output files
|
|
183
183
|
save_data: true # Whether to save data to output
|
|
184
|
+
skip_tracking: false # Whether to skip tracking and just output feature properties
|
|
184
185
|
|
|
185
186
|
FEATURE:
|
|
186
187
|
threshold: 1 # Threshold used for defining a feature
|
|
@@ -195,7 +196,6 @@ FLOW_SOLVER:
|
|
|
195
196
|
apply_tukey_filtering: True # Apply a 2D Tukey window to each subdomain before phase cross-correlation
|
|
196
197
|
|
|
197
198
|
TRACKING:
|
|
198
|
-
skip_tracking: false # Whether to skip tracking and just output feature properties
|
|
199
199
|
overlap_nbhood: 5 # Radius of halo in pixels for orphan storms - big halo assumes storms may spawn "children" at a distance multiple pixels away
|
|
200
200
|
overlap_threshold: 0.6 # Minimum fraction of overlap
|
|
201
201
|
retain_lifetime_on_split: True # If a child Feature splits from its parent feature, this determines whether the child Feature should carry over the lifetime from the parent or whether its lifetime should be set to 1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|