faceswitch 0.2.2__tar.gz → 0.3.2__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.
- {faceswitch-0.2.2/src/faceswitch.egg-info → faceswitch-0.3.2}/PKG-INFO +2 -4
- {faceswitch-0.2.2 → faceswitch-0.3.2}/README.md +1 -3
- {faceswitch-0.2.2 → faceswitch-0.3.2}/pyproject.toml +1 -1
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/__init__.py +1 -1
- {faceswitch-0.2.2 → faceswitch-0.3.2/src/faceswitch.egg-info}/PKG-INFO +2 -4
- {faceswitch-0.2.2 → faceswitch-0.3.2}/LICENSE +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/setup.cfg +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/core/__init__.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/core/interfaces.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/core/types.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/__init__.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/hog/__init__.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/hog/config.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/hog/detector.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/retinaface/__init__.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/retinaface/config.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/retinaface/detector.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/yolo/__init__.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/yolo/config.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/detectors/yolo/detector.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch/py.typed +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/SOURCES.txt +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/dependency_links.txt +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/requires.txt +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/src/faceswitch.egg-info/top_level.txt +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_hog_detector.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_public_api.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_retinaface_detector.py +0 -0
- {faceswitch-0.2.2 → faceswitch-0.3.2}/tests/test_yolo_detector.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: faceswitch
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Simple multi-model face detection library
|
|
5
5
|
Author: FaceSwitch Contributors
|
|
6
6
|
License-Expression: MIT
|
|
@@ -85,8 +85,6 @@ pip install faceswitch
|
|
|
85
85
|
| YOLO | Deep learning detector (more accurate, works best with GPU) | `pip install "faceswitch[yolo]"` |
|
|
86
86
|
| RetinaFace | High-accuracy ResNet detector (best for difficult angles and small faces) | `pip install "faceswitch[retinaface]"` |
|
|
87
87
|
|
|
88
|
-
| RetinaFace | Deep learning face detector using ResNet+FPN with multi-scale anchors for high-accuracy detection. | `pip install "faceswitch[retinaface]"` |
|
|
89
|
-
|
|
90
88
|
**Or install everything at once:**
|
|
91
89
|
|
|
92
90
|
```bash
|
|
@@ -215,4 +213,4 @@ Yes, as long as the image is a NumPy array with shape `(height, width, 3)` and `
|
|
|
215
213
|
|
|
216
214
|
FaceSwitch is actively maintained. New detectors are added regularly — run `pip install --upgrade faceswitch` to get the latest.
|
|
217
215
|
|
|
218
|
-
Current version: **0.
|
|
216
|
+
Current version: **0.3.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
|
|
@@ -44,8 +44,6 @@ pip install faceswitch
|
|
|
44
44
|
| YOLO | Deep learning detector (more accurate, works best with GPU) | `pip install "faceswitch[yolo]"` |
|
|
45
45
|
| RetinaFace | High-accuracy ResNet detector (best for difficult angles and small faces) | `pip install "faceswitch[retinaface]"` |
|
|
46
46
|
|
|
47
|
-
| RetinaFace | Deep learning face detector using ResNet+FPN with multi-scale anchors for high-accuracy detection. | `pip install "faceswitch[retinaface]"` |
|
|
48
|
-
|
|
49
47
|
**Or install everything at once:**
|
|
50
48
|
|
|
51
49
|
```bash
|
|
@@ -174,4 +172,4 @@ Yes, as long as the image is a NumPy array with shape `(height, width, 3)` and `
|
|
|
174
172
|
|
|
175
173
|
FaceSwitch is actively maintained. New detectors are added regularly — run `pip install --upgrade faceswitch` to get the latest.
|
|
176
174
|
|
|
177
|
-
Current version: **0.
|
|
175
|
+
Current version: **0.3.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: faceswitch
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.2
|
|
4
4
|
Summary: Simple multi-model face detection library
|
|
5
5
|
Author: FaceSwitch Contributors
|
|
6
6
|
License-Expression: MIT
|
|
@@ -85,8 +85,6 @@ pip install faceswitch
|
|
|
85
85
|
| YOLO | Deep learning detector (more accurate, works best with GPU) | `pip install "faceswitch[yolo]"` |
|
|
86
86
|
| RetinaFace | High-accuracy ResNet detector (best for difficult angles and small faces) | `pip install "faceswitch[retinaface]"` |
|
|
87
87
|
|
|
88
|
-
| RetinaFace | Deep learning face detector using ResNet+FPN with multi-scale anchors for high-accuracy detection. | `pip install "faceswitch[retinaface]"` |
|
|
89
|
-
|
|
90
88
|
**Or install everything at once:**
|
|
91
89
|
|
|
92
90
|
```bash
|
|
@@ -215,4 +213,4 @@ Yes, as long as the image is a NumPy array with shape `(height, width, 3)` and `
|
|
|
215
213
|
|
|
216
214
|
FaceSwitch is actively maintained. New detectors are added regularly — run `pip install --upgrade faceswitch` to get the latest.
|
|
217
215
|
|
|
218
|
-
Current version: **0.
|
|
216
|
+
Current version: **0.3.2** | [GitHub](https://github.com/game-sys/FaceSwitch) | [PyPI](https://pypi.org/project/faceswitch/)
|
|
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
|