Sync motion-tracking from metro-analytics-catalog
Browse files
LICENSE
CHANGED
|
@@ -1,57 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 24 |
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 25 |
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 26 |
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 27 |
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 28 |
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 29 |
-
THE SOFTWARE.
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
YOLO26 Model
|
| 33 |
-
------------
|
| 34 |
-
|
| 35 |
-
The YOLO26 model weights and the Ultralytics framework are developed by
|
| 36 |
-
Ultralytics and licensed under the GNU Affero General Public License v3.0
|
| 37 |
-
(AGPL-3.0).
|
| 38 |
-
|
| 39 |
-
Source: https://github.com/ultralytics/ultralytics
|
| 40 |
-
License: https://github.com/ultralytics/ultralytics/blob/main/LICENSE
|
| 41 |
-
Docs: https://docs.ultralytics.com/models/yolo26/
|
| 42 |
-
|
| 43 |
-
Users must comply with the AGPL-3.0 license terms when using, modifying,
|
| 44 |
-
or distributing the YOLO26 model weights or Ultralytics software.
|
| 45 |
-
For commercial licensing options, see https://www.ultralytics.com/license.
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
BoT-SORT / ByteTrack Trackers
|
| 49 |
-
------------------------------
|
| 50 |
-
|
| 51 |
-
The BoT-SORT and ByteTrack tracking algorithms are integrated into the
|
| 52 |
-
Ultralytics framework. Original implementations:
|
| 53 |
-
|
| 54 |
-
BoT-SORT: https://github.com/NirAharon/BoT-SORT
|
| 55 |
-
ByteTrack: https://github.com/FoundationVision/ByteTrack
|
| 56 |
-
|
| 57 |
-
Users should consult the respective repositories for license terms.
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) Intel Corporation.
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
| 3 |
license_link: LICENSE
|
| 4 |
library_name: openvino
|
| 5 |
pipeline_tag: object-detection
|
|
@@ -153,7 +153,6 @@ polylines are drawn with OpenCV, and the result is muxed to `output_dlstreamer.m
|
|
| 153 |
import subprocess
|
| 154 |
from collections import defaultdict
|
| 155 |
|
| 156 |
-
import cv2
|
| 157 |
import numpy as np
|
| 158 |
import gi
|
| 159 |
|
|
@@ -161,7 +160,10 @@ gi.require_version("Gst", "1.0")
|
|
| 161 |
gi.require_version("GstAnalytics", "1.0")
|
| 162 |
from gi.repository import Gst, GLib, GstAnalytics
|
| 163 |
|
| 164 |
-
Gst.init(
|
|
|
|
|
|
|
|
|
|
| 165 |
|
| 166 |
# For CPU: change device=GPU to device=CPU.
|
| 167 |
# For NPU: change device=GPU to device=NPU (batch-size=1, nireq=4 recommended).
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
license_link: LICENSE
|
| 4 |
library_name: openvino
|
| 5 |
pipeline_tag: object-detection
|
|
|
|
| 153 |
import subprocess
|
| 154 |
from collections import defaultdict
|
| 155 |
|
|
|
|
| 156 |
import numpy as np
|
| 157 |
import gi
|
| 158 |
|
|
|
|
| 160 |
gi.require_version("GstAnalytics", "1.0")
|
| 161 |
from gi.repository import Gst, GLib, GstAnalytics
|
| 162 |
|
| 163 |
+
Gst.init([])
|
| 164 |
+
|
| 165 |
+
# Import cv2 after Gst.init to avoid GStreamer re-initialization conflicts.
|
| 166 |
+
import cv2
|
| 167 |
|
| 168 |
# For CPU: change device=GPU to device=CPU.
|
| 169 |
# For NPU: change device=GPU to device=NPU (batch-size=1, nireq=4 recommended).
|