OTVision 0.6.3__py3-none-any.whl → 0.6.5__py3-none-any.whl
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.
- OTVision/abstraction/defaults.py +15 -0
- OTVision/application/buffer.py +2 -1
- OTVision/application/config.py +475 -0
- OTVision/application/config_parser.py +280 -0
- OTVision/application/configure_logger.py +1 -1
- OTVision/application/detect/factory.py +1 -1
- OTVision/application/detect/update_detect_config_with_cli_args.py +2 -1
- OTVision/application/get_config.py +2 -1
- OTVision/application/get_current_config.py +1 -1
- OTVision/application/track/__init__.py +0 -0
- OTVision/application/track/get_track_cli_args.py +20 -0
- OTVision/application/track/update_current_track_config.py +42 -0
- OTVision/application/track/update_track_config_with_cli_args.py +52 -0
- OTVision/application/update_current_config.py +1 -1
- OTVision/config.py +61 -668
- OTVision/convert/convert.py +3 -3
- OTVision/detect/builder.py +27 -20
- OTVision/detect/cli.py +3 -3
- OTVision/detect/detected_frame_buffer.py +6 -0
- OTVision/detect/file_based_detect_builder.py +19 -0
- OTVision/detect/otdet.py +54 -1
- OTVision/detect/otdet_file_writer.py +3 -2
- OTVision/detect/rtsp_based_detect_builder.py +37 -0
- OTVision/detect/rtsp_input_source.py +199 -0
- OTVision/detect/timestamper.py +1 -1
- OTVision/detect/video_input_source.py +3 -3
- OTVision/detect/yolo.py +17 -1
- OTVision/domain/cli.py +31 -1
- OTVision/domain/current_config.py +1 -1
- OTVision/domain/frame.py +9 -0
- OTVision/domain/object_detection.py +6 -1
- OTVision/domain/serialization.py +12 -0
- OTVision/domain/time.py +13 -0
- OTVision/helpers/files.py +14 -15
- OTVision/plugin/__init__.py +0 -0
- OTVision/plugin/yaml_serialization.py +20 -0
- OTVision/track/builder.py +132 -0
- OTVision/track/cli.py +128 -0
- OTVision/track/exporter/filebased_exporter.py +2 -1
- OTVision/track/id_generator.py +15 -0
- OTVision/track/model/track_exporter.py +2 -1
- OTVision/track/model/tracking_interfaces.py +6 -6
- OTVision/track/parser/frame_group_parser_plugins.py +35 -5
- OTVision/track/track.py +54 -133
- OTVision/track/tracker/filebased_tracking.py +8 -7
- OTVision/track/tracker/tracker_plugin_iou.py +14 -9
- OTVision/transform/transform.py +2 -2
- OTVision/version.py +1 -1
- otvision-0.6.5.dist-info/METADATA +182 -0
- {otvision-0.6.3.dist-info → otvision-0.6.5.dist-info}/RECORD +52 -35
- otvision-0.6.3.dist-info/METADATA +0 -49
- {otvision-0.6.3.dist-info → otvision-0.6.5.dist-info}/WHEEL +0 -0
- {otvision-0.6.3.dist-info → otvision-0.6.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: OTVision
|
|
3
|
-
Version: 0.6.3
|
|
4
|
-
Summary: OTVision is a core module of the OpenTrafficCam framework to perform object detection and tracking.
|
|
5
|
-
Project-URL: Homepage, https://opentrafficcam.org/
|
|
6
|
-
Project-URL: Documentation, https://opentrafficcam.org/overview/
|
|
7
|
-
Project-URL: Repository, https://github.com/OpenTrafficCam/OTVision
|
|
8
|
-
Project-URL: Issues, https://github.com/OpenTrafficCam/OTVision/issues
|
|
9
|
-
Project-URL: Changelog, https://github.com/OpenTrafficCam/OTVision/releases
|
|
10
|
-
Author-email: OpenTrafficCam contributors <team@opentrafficcam.org>, platomo GmbH <info@platomo.de>
|
|
11
|
-
License-Expression: GPL-3.0-only
|
|
12
|
-
License-File: LICENSE
|
|
13
|
-
Keywords: OpenTrafficCam,Traffic Analysis,Traffic Counting,Trajectories
|
|
14
|
-
Classifier: Development Status :: 4 - Beta
|
|
15
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
16
|
-
Classifier: Operating System :: OS Independent
|
|
17
|
-
Classifier: Programming Language :: Python :: 3
|
|
18
|
-
Requires-Python: >=3.11
|
|
19
|
-
Requires-Dist: av==13.0.0
|
|
20
|
-
Requires-Dist: fire==0.7.0
|
|
21
|
-
Requires-Dist: geopandas==1.0.1
|
|
22
|
-
Requires-Dist: ijson==3.3.0
|
|
23
|
-
Requires-Dist: more-itertools==10.5.0
|
|
24
|
-
Requires-Dist: moviepy==1.0.3
|
|
25
|
-
Requires-Dist: numpy==1.26.4; sys_platform == 'win32'
|
|
26
|
-
Requires-Dist: numpy==2.1.1; sys_platform != 'win32'
|
|
27
|
-
Requires-Dist: opencv-python==4.11.0.86
|
|
28
|
-
Requires-Dist: pandas==2.2.3
|
|
29
|
-
Requires-Dist: pyyaml==6.0.2
|
|
30
|
-
Requires-Dist: setuptools==74.0.0
|
|
31
|
-
Requires-Dist: torch==2.3.1
|
|
32
|
-
Requires-Dist: torchvision==0.18.1
|
|
33
|
-
Requires-Dist: tqdm==4.67.1
|
|
34
|
-
Requires-Dist: ujson==5.10.0
|
|
35
|
-
Requires-Dist: ultralytics==8.3.94
|
|
36
|
-
Description-Content-Type: text/markdown
|
|
37
|
-
|
|
38
|
-
# OTVision
|
|
39
|
-
|
|
40
|
-
OTVision is a core module of the [OpenTrafficCam framework](https://github.com/OpenTrafficCam) to detect and track objects (road users) in videos recorded by [OTCamera](https://github.com/OpenTrafficCam/OTCamera) or other camera systems. On the resulting trajectories, one can perform traffic analysis using [OTAnalytics](https://github.com/OpenTrafficCam/OTAnalytics).
|
|
41
|
-
|
|
42
|
-
Check out the [documentation](https://opentrafficcam.org/OTVision/) for detailed instructions on how to install and use OTVision.
|
|
43
|
-
|
|
44
|
-
We appreciate your support in the form of both code and comments. First, please have a look at the [contribute](https://opentrafficcam.org/contribute) section of the OpenTrafficCam documentation.
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## License
|
|
48
|
-
|
|
49
|
-
This software is licensed under the [GPL-3.0 License](LICENSE)
|
|
File without changes
|
|
File without changes
|