ytfeng commited on
Commit
237ca2e
·
1 Parent(s): c1793e8

Add example outputs and display in README (#59)

Browse files
README.md CHANGED
@@ -48,6 +48,21 @@ Hardware Setup:
48
  - `---` represents the model is not availble to run on the device.
49
  - View [benchmark/config](./benchmark/config) for more details on benchmarking different models.
50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  ## License
52
 
53
  OpenCV Zoo is licensed under the [Apache 2.0 license](./LICENSE). Please refer to licenses of different models.
 
48
  - `---` represents the model is not availble to run on the device.
49
  - View [benchmark/config](./benchmark/config) for more details on benchmarking different models.
50
 
51
+ ## Some Examples
52
+
53
+ Some examples are listed below. You can find more in the directory of each model!
54
+ ### Face Detection with [YuNet](./models/face_detection_yunet/)
55
+
56
+ ![largest selfie](./models/face_detection_yunet/examples/largest_selfie.jpg)
57
+
58
+ ### Human Segmentation with [PP-HumanSeg](./models/human_segmentation_pphumanseg/)
59
+
60
+ ![messi](./models/human_segmentation_pphumanseg/examples/messi.jpg)
61
+
62
+ ### Object Tracking with [DaSiamRPN](./models/object_tracking_dasiamrpn/)
63
+
64
+ ![webcam demo](./models/object_tracking_dasiamrpn/examples/dasiamrpn_demo.gif)
65
+
66
  ## License
67
 
68
  OpenCV Zoo is licensed under the [Apache 2.0 license](./LICENSE). Please refer to licenses of different models.
models/face_detection_yunet/README.md CHANGED
@@ -17,6 +17,12 @@ python demo.py
17
  python demo.py --input /path/to/image
18
  ```
19
 
 
 
 
 
 
 
20
  ## License
21
 
22
  All files in this directory are licensed under [MIT License](./LICENSE).
 
17
  python demo.py --input /path/to/image
18
  ```
19
 
20
+ ### Example outputs
21
+
22
+ ![webcam demo](./examples/yunet_demo.gif)
23
+
24
+ ![largest selfie](./examples/largest_selfie.jpg)
25
+
26
  ## License
27
 
28
  All files in this directory are licensed under [MIT License](./LICENSE).
models/human_segmentation_pphumanseg/README.md CHANGED
@@ -12,6 +12,12 @@ python demo.py
12
  python demo.py --input /path/to/image
13
  ```
14
 
 
 
 
 
 
 
15
  ## License
16
 
17
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
 
12
  python demo.py --input /path/to/image
13
  ```
14
 
15
+ ## Example outputs
16
+
17
+ ![webcam demo](./examples/pphumanseg_demo.gif)
18
+
19
+ ![messi](./examples/messi.jpg)
20
+
21
  ## License
22
 
23
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
models/license_plate_detection_yunet/README.md CHANGED
@@ -14,6 +14,10 @@ python demo.py
14
  python demo.py --input /path/to/image
15
  ```
16
 
 
 
 
 
17
  ## License
18
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE)
19
 
 
14
  python demo.py --input /path/to/image
15
  ```
16
 
17
+ ### Example outputs
18
+
19
+ ![lpd image1](./examples/result-4.jpg)
20
+
21
  ## License
22
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE)
23
 
models/object_tracking_dasiamrpn/README.md CHANGED
@@ -16,6 +16,10 @@ python demo.py
16
  python demo.py --input /path/to/video
17
  ```
18
 
 
 
 
 
19
  ## License
20
 
21
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
 
16
  python demo.py --input /path/to/video
17
  ```
18
 
19
+ ### Example outputs
20
+
21
+ ![webcam demo](./examples/dasiamrpn_demo.gif)
22
+
23
  ## License
24
 
25
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
models/palm_detection_mediapipe/README.md CHANGED
@@ -19,6 +19,10 @@ python demo.py -i /path/to/image
19
 
20
  NOTE: For the quantized model, you will need to install OpenCV 4.6.0 to have asymmetric paddings support for quantized convolution layer in OpenCV. Score threshold needs to be adjusted as well for the quantized model, which is empirically 0.49.
21
 
 
 
 
 
22
  ## License
23
 
24
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
 
19
 
20
  NOTE: For the quantized model, you will need to install OpenCV 4.6.0 to have asymmetric paddings support for quantized convolution layer in OpenCV. Score threshold needs to be adjusted as well for the quantized model, which is empirically 0.49.
21
 
22
+ ### Example outputs
23
+
24
+ ![webcam demo](./examples/mppalmdet_demo.gif)
25
+
26
  ## License
27
 
28
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
models/qrcode_wechatqrcode/README.md CHANGED
@@ -16,6 +16,10 @@ python demo.py
16
  python demo.py --input /path/to/image
17
  ```
18
 
 
 
 
 
19
  ## License
20
 
21
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
 
16
  python demo.py --input /path/to/image
17
  ```
18
 
19
+ ### Example outputs
20
+
21
+ ![webcam demo](./examples/wechat_qrcode_demo.gif)
22
+
23
  ## License
24
 
25
  All files in this directory are licensed under [Apache 2.0 License](./LICENSE).