Simple-Track 2.0.6__tar.gz → 2.0.7__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.6 → simple_track-2.0.7}/PKG-INFO +1 -1
- {simple_track-2.0.6 → simple_track-2.0.7}/pyproject.toml +1 -1
- {simple_track-2.0.6 → simple_track-2.0.7}/src/Simple_Track.egg-info/PKG-INFO +1 -1
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/track.py +3 -2
- {simple_track-2.0.6 → simple_track-2.0.7}/LICENSE +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/README.md +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/setup.cfg +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/Simple_Track.egg-info/SOURCES.txt +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/Simple_Track.egg-info/dependency_links.txt +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/Simple_Track.egg-info/entry_points.txt +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/Simple_Track.egg-info/requires.txt +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/Simple_Track.egg-info/top_level.txt +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/run_simple_track.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/__init__.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/exceptions.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/feature.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/flow_solver.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/frame.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/frame_output.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/frame_tracker.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/load.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/src/simpletrack/utils.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/tests/test_feature.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/tests/test_flow_solver.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/tests/test_frame.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/tests/test_frame_tracker.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/tests/test_mwe_output.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/tests/test_simple_track_and_load.py +0 -0
- {simple_track-2.0.6 → simple_track-2.0.7}/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.7
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Simple-Track
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.7
|
|
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
|
|
@@ -4,8 +4,6 @@ Run the SimpleTrack algorithm to track objects through a sequence of images
|
|
|
4
4
|
|
|
5
5
|
from pathlib import Path
|
|
6
6
|
|
|
7
|
-
from yaml import safe_load
|
|
8
|
-
|
|
9
7
|
from simpletrack.flow_solver import FlowSolver
|
|
10
8
|
from simpletrack.frame import Frame, Timeline
|
|
11
9
|
from simpletrack.frame_output import FrameOutputManager
|
|
@@ -258,6 +256,9 @@ class Tracker:
|
|
|
258
256
|
dict:
|
|
259
257
|
Simple-Track parameters
|
|
260
258
|
"""
|
|
259
|
+
|
|
260
|
+
from yaml import safe_load
|
|
261
|
+
|
|
261
262
|
with open(config_path) as input:
|
|
262
263
|
config = safe_load(input)
|
|
263
264
|
self._check_config(config)
|
|
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
|
|
File without changes
|
|
File without changes
|