You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ A zoo for models tuned for OpenCV DNN with benchmarks on different platforms.
5
5
Guidelines:
6
6
- To clone this repo, please install [git-lfs](https://git-lfs.github.com/), run `git lfs install` and use `git lfs clone https://github.com/opencv/opencv_zoo`.
7
7
- To run benchmark on your hardware settings, please refer to [benchmark/README](./benchmark/README.md).
8
+
- Understand model filename: `<topic>_<model_name>_<dataset>_<arch>_<upload_time>`
9
+
-`<topic>`: research topics, such as `face detection` etc.
10
+
-`<model_name>`: exact model names.
11
+
-`<dataset>`: (Optional) the dataset that the model is trained with.
12
+
-`<arch>`: (Optional) the backbone architecture of the model.
13
+
-`<upload_time>`: the time when the model is uploaded, meaning the latest version of this model unless specified.
8
14
9
15
## Models & Benchmarks
10
16
@@ -16,19 +22,19 @@ Hardware Setup:
16
22
***Important Notes***:
17
23
- The time data that shown on the following table presents the time elapsed from preprocess (resize is excluded), to a forward pass of a network, and postprocess to get final results.
18
24
- The time data that shown on the following table is the median of 10 runs. Different metrics may be applied to some specific models.
25
+
- Batch size is 1 for all benchmark results.
19
26
- View [benchmark/config](./benchmark/config) for more details on benchmarking different models.
20
27
21
-
| Model | Input Size | CPU x86_64 (ms) | CPU ARM (ms) | GPU CUDA (ms)*|
28
+
| Model | Input Size | CPU x86_64 (ms) | CPU ARM (ms) | GPU CUDA (ms) |
Copy file name to clipboardExpand all lines: models/face_detection_yunet/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
YuNet is a light-weight, fast and accurate face detection model, which achieves 0.834(AP_easy), 0.824(AP_medium), 0.708(AP_hard) on the WIDER Face validation set.
4
4
5
+
Notes:
6
+
- Model source: [here](https://github.com/ShiqiYu/libfacedetection.train/blob/a61a428929148171b488f024b5d6774f93cdbc13/tasks/task1/onnx/yunet.onnx).
7
+
- For details on training this model, please visit https://github.com/ShiqiYu/libfacedetection.train.
Copy file name to clipboardExpand all lines: models/face_recognition_sface/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,15 +2,15 @@
2
2
3
3
SFace: Sigmoid-Constrained Hypersphere Loss for Robust Face Recognition
4
4
5
-
SFace is contributed by [Yaoyao Zhong](https://github.com/zhongyy/SFace). [face_recognition_sface.onnx](./face_recognition_sface.onnx) is converted from the model from https://github.com/zhongyy/SFace thanks to [Chengrui Wang](https://github.com/crywang).
6
-
7
5
Note:
8
-
-There is [a PR for OpenCV adding this model](https://github.com/opencv/opencv/pull/20422) to work with OpenCV DNN in C++ implementation.
9
-
-Support 5-landmark warp for now.
10
-
-`demo.py` requires [../face_detection_yunet](../face_detection_yunet) to run.
6
+
-SFace is contributed by [Yaoyao Zhong](https://github.com/zhongyy/SFace).
7
+
-[face_recognition_sface_2021sep.onnx](./face_recognition_sface_2021sep.onnx) is converted from the model from https://github.com/zhongyy/SFace thanks to [Chengrui Wang](https://github.com/crywang).
8
+
-Support 5-landmark warpping for now (2021sep)
11
9
12
10
## Demo
13
11
12
+
***NOTE***: This demo uses [../face_detection_yunet](../face_detection_yunet) as face detector, which supports 5-landmark detection for now (2021sep).
0 commit comments