OTVision 0.6.4__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.
Files changed (51) hide show
  1. OTVision/abstraction/defaults.py +15 -0
  2. OTVision/application/config.py +475 -0
  3. OTVision/application/config_parser.py +280 -0
  4. OTVision/application/configure_logger.py +1 -1
  5. OTVision/application/detect/factory.py +1 -1
  6. OTVision/application/detect/update_detect_config_with_cli_args.py +2 -1
  7. OTVision/application/get_config.py +2 -1
  8. OTVision/application/get_current_config.py +1 -1
  9. OTVision/application/track/__init__.py +0 -0
  10. OTVision/application/track/get_track_cli_args.py +20 -0
  11. OTVision/application/track/update_current_track_config.py +42 -0
  12. OTVision/application/track/update_track_config_with_cli_args.py +52 -0
  13. OTVision/application/update_current_config.py +1 -1
  14. OTVision/config.py +61 -668
  15. OTVision/convert/convert.py +3 -3
  16. OTVision/detect/builder.py +27 -20
  17. OTVision/detect/cli.py +3 -3
  18. OTVision/detect/detected_frame_buffer.py +3 -0
  19. OTVision/detect/file_based_detect_builder.py +19 -0
  20. OTVision/detect/otdet.py +54 -1
  21. OTVision/detect/otdet_file_writer.py +3 -2
  22. OTVision/detect/rtsp_based_detect_builder.py +37 -0
  23. OTVision/detect/rtsp_input_source.py +199 -0
  24. OTVision/detect/timestamper.py +1 -1
  25. OTVision/detect/video_input_source.py +2 -1
  26. OTVision/detect/yolo.py +17 -1
  27. OTVision/domain/cli.py +31 -1
  28. OTVision/domain/current_config.py +1 -1
  29. OTVision/domain/object_detection.py +6 -1
  30. OTVision/domain/serialization.py +12 -0
  31. OTVision/domain/time.py +13 -0
  32. OTVision/helpers/files.py +14 -15
  33. OTVision/plugin/__init__.py +0 -0
  34. OTVision/plugin/yaml_serialization.py +20 -0
  35. OTVision/track/builder.py +132 -0
  36. OTVision/track/cli.py +128 -0
  37. OTVision/track/exporter/filebased_exporter.py +2 -1
  38. OTVision/track/id_generator.py +15 -0
  39. OTVision/track/model/track_exporter.py +2 -1
  40. OTVision/track/model/tracking_interfaces.py +6 -6
  41. OTVision/track/parser/frame_group_parser_plugins.py +35 -5
  42. OTVision/track/track.py +54 -133
  43. OTVision/track/tracker/filebased_tracking.py +8 -7
  44. OTVision/track/tracker/tracker_plugin_iou.py +14 -9
  45. OTVision/transform/transform.py +2 -2
  46. OTVision/version.py +1 -1
  47. otvision-0.6.5.dist-info/METADATA +182 -0
  48. {otvision-0.6.4.dist-info → otvision-0.6.5.dist-info}/RECORD +50 -33
  49. otvision-0.6.4.dist-info/METADATA +0 -49
  50. {otvision-0.6.4.dist-info → otvision-0.6.5.dist-info}/WHEEL +0 -0
  51. {otvision-0.6.4.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.4
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)