vidformer 0.9.0__tar.gz → 0.10.1__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.
- {vidformer-0.9.0 → vidformer-0.10.1}/PKG-INFO +7 -5
- {vidformer-0.9.0 → vidformer-0.10.1}/README.md +5 -3
- vidformer-0.9.0/vidformer/vf.py → vidformer-0.10.1/vidformer/__init__.py +395 -108
- vidformer-0.9.0/vidformer/cv2/vf_cv2.py → vidformer-0.10.1/vidformer/cv2/__init__.py +89 -41
- vidformer-0.10.1/vidformer/supervision/__init__.py +538 -0
- vidformer-0.9.0/vidformer/__init__.py +0 -5
- vidformer-0.9.0/vidformer/cv2/__init__.py +0 -1
- vidformer-0.9.0/vidformer/igni/__init__.py +0 -1
- vidformer-0.9.0/vidformer/igni/vf_igni.py +0 -285
- {vidformer-0.9.0 → vidformer-0.10.1}/cv2-functions.md +0 -0
- {vidformer-0.9.0 → vidformer-0.10.1}/pyproject.toml +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: vidformer
|
3
|
-
Version: 0.
|
4
|
-
Summary:
|
3
|
+
Version: 0.10.1
|
4
|
+
Summary: vidformer-py is a Python 🐍 interface for [vidformer](https://github.com/ixlab/vidformer).
|
5
5
|
Author-email: Dominik Winecki <dominikwinecki@gmail.com>
|
6
6
|
Requires-Python: >=3.8
|
7
7
|
Description-Content-Type: text/markdown
|
@@ -19,13 +19,15 @@ Project-URL: Issues, https://github.com/ixlab/vidformer/issues
|
|
19
19
|
[](https://pypi.org/project/vidformer/)
|
20
20
|
[](https://github.com/ixlab/vidformer/blob/main/LICENSE)
|
21
21
|
|
22
|
-
vidformer-py is a Python 🐍
|
22
|
+
vidformer-py is a Python 🐍 frontend for [vidformer](https://github.com/ixlab/vidformer).
|
23
|
+
It has an API compatability layer with OpenCV cv2, as well as some [supervision](https://github.com/roboflow/supervision) annotators.
|
23
24
|
Our [getting started guide](https://ixlab.github.io/vidformer/getting-started.html) explains how to use it.
|
24
25
|
|
25
26
|
**Quick links:**
|
26
27
|
* [📦 PyPI](https://pypi.org/project/vidformer/)
|
27
|
-
* [📘 Documentation - vidformer-py](https://ixlab.github.io/vidformer/vidformer-py/)
|
28
|
-
* [📘 Documentation - vidformer.cv2](https://ixlab.github.io/vidformer/vidformer-py
|
28
|
+
* [📘 Documentation - vidformer-py](https://ixlab.github.io/vidformer/vidformer-py/pdoc/)
|
29
|
+
* [📘 Documentation - vidformer.cv2](https://ixlab.github.io/vidformer/vidformer-py/pdoc/vidformer/cv2.html)
|
30
|
+
* [📘 Documentation - vidformer.supervision](https://ixlab.github.io/vidformer/vidformer-py/pdoc/vidformer/supervision.html)
|
29
31
|
* [🧑💻 Source Code](https://github.com/ixlab/vidformer/tree/main/vidformer-py/)
|
30
32
|
|
31
33
|
**Publish:**
|
@@ -3,13 +3,15 @@
|
|
3
3
|
[](https://pypi.org/project/vidformer/)
|
4
4
|
[](https://github.com/ixlab/vidformer/blob/main/LICENSE)
|
5
5
|
|
6
|
-
vidformer-py is a Python 🐍
|
6
|
+
vidformer-py is a Python 🐍 frontend for [vidformer](https://github.com/ixlab/vidformer).
|
7
|
+
It has an API compatability layer with OpenCV cv2, as well as some [supervision](https://github.com/roboflow/supervision) annotators.
|
7
8
|
Our [getting started guide](https://ixlab.github.io/vidformer/getting-started.html) explains how to use it.
|
8
9
|
|
9
10
|
**Quick links:**
|
10
11
|
* [📦 PyPI](https://pypi.org/project/vidformer/)
|
11
|
-
* [📘 Documentation - vidformer-py](https://ixlab.github.io/vidformer/vidformer-py/)
|
12
|
-
* [📘 Documentation - vidformer.cv2](https://ixlab.github.io/vidformer/vidformer-py
|
12
|
+
* [📘 Documentation - vidformer-py](https://ixlab.github.io/vidformer/vidformer-py/pdoc/)
|
13
|
+
* [📘 Documentation - vidformer.cv2](https://ixlab.github.io/vidformer/vidformer-py/pdoc/vidformer/cv2.html)
|
14
|
+
* [📘 Documentation - vidformer.supervision](https://ixlab.github.io/vidformer/vidformer-py/pdoc/vidformer/supervision.html)
|
13
15
|
* [🧑💻 Source Code](https://github.com/ixlab/vidformer/tree/main/vidformer-py/)
|
14
16
|
|
15
17
|
**Publish:**
|