SavyaSanchi-Sharma commited on
Commit ·
917c056
1
Parent(s): 7c098ec
edited readme
Browse files- efficientdet-d0/README.md +1 -2
- faster_rcnn_inception_v2_coco_2018_01_28/README.md +3 -5
- faster_rcnn_resnet50_coco_2018_01_28/README.md +3 -5
- mask_rcnn_inception_v2_coco_2018_01_28/README.md +3 -5
- opencv_face_detector_uint8/README.md +1 -2
- ssd_inception_v2_coco_2017_11_17/README.md +2 -4
- ssd_mobilenet_v1_coco_2017_11_17/README.md +2 -4
- ssd_mobilenet_v1_ppn_coco/README.md +2 -4
- ssd_mobilenet_v2_coco_2018_03_29/README.md +2 -4
- tensorflow_inception_graph/README.md +1 -2
efficientdet-d0/README.md
CHANGED
|
@@ -33,8 +33,7 @@ net = cv2.dnn.readNet("efficientdet-d0_2026jul.onnx")
|
|
| 33 |
```
|
| 34 |
|
| 35 |
### C++
|
| 36 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 37 |
-
needed). Adjust the OpenCV paths to your setup:
|
| 38 |
```bash
|
| 39 |
OCV=/path/to/opencv # OpenCV source tree
|
| 40 |
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
|
|
|
| 33 |
```
|
| 34 |
|
| 35 |
### C++
|
| 36 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
| 37 |
```bash
|
| 38 |
OCV=/path/to/opencv # OpenCV source tree
|
| 39 |
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
faster_rcnn_inception_v2_coco_2018_01_28/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Object detection with the Faster-RCNN meta-architecture and an Inception v2 backbone,
|
| 4 |
trained on the COCO dataset. The model was originally distributed as a frozen TensorFlow
|
| 5 |
graph (`faster_rcnn_inception_v2_coco_2018_01_28.pb`) from the TensorFlow Object Detection
|
| 6 |
-
API and converted to ONNX for inference with OpenCV's DNN module
|
| 7 |
|
| 8 |
## Model Details
|
| 9 |
- **Architecture**: Faster-RCNN with an Inception v2 backbone
|
|
@@ -20,12 +20,10 @@ python demo.py --model faster_rcnn_inception_v2_coco_2018_01_28_2026jul.onnx --i
|
|
| 20 |
```
|
| 21 |
|
| 22 |
### C++
|
| 23 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 24 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 25 |
-
paths to your setup:
|
| 26 |
```bash
|
| 27 |
OCV=/path/to/opencv # OpenCV source tree
|
| 28 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 29 |
g++ -std=c++17 demo.cpp -o demo \
|
| 30 |
-I$OCV/include \
|
| 31 |
-I$OCV/modules/core/include \
|
|
|
|
| 3 |
Object detection with the Faster-RCNN meta-architecture and an Inception v2 backbone,
|
| 4 |
trained on the COCO dataset. The model was originally distributed as a frozen TensorFlow
|
| 5 |
graph (`faster_rcnn_inception_v2_coco_2018_01_28.pb`) from the TensorFlow Object Detection
|
| 6 |
+
API and converted to ONNX for inference with OpenCV's DNN module.
|
| 7 |
|
| 8 |
## Model Details
|
| 9 |
- **Architecture**: Faster-RCNN with an Inception v2 backbone
|
|
|
|
| 20 |
```
|
| 21 |
|
| 22 |
### C++
|
| 23 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 24 |
```bash
|
| 25 |
OCV=/path/to/opencv # OpenCV source tree
|
| 26 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 27 |
g++ -std=c++17 demo.cpp -o demo \
|
| 28 |
-I$OCV/include \
|
| 29 |
-I$OCV/modules/core/include \
|
faster_rcnn_resnet50_coco_2018_01_28/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Object detection with the Faster-RCNN meta-architecture and a ResNet-50 backbone,
|
| 4 |
trained on the COCO dataset. The model was originally distributed as a frozen TensorFlow
|
| 5 |
graph (`faster_rcnn_resnet50_coco_2018_01_28.pb`) from the TensorFlow Object Detection
|
| 6 |
-
API and converted to ONNX for inference with OpenCV's DNN module
|
| 7 |
|
| 8 |
## Model Details
|
| 9 |
- **Architecture**: Faster-RCNN with a ResNet-50 backbone
|
|
@@ -20,12 +20,10 @@ python demo.py --model faster_rcnn_resnet50_coco_2018_01_28_2026jul.onnx --image
|
|
| 20 |
```
|
| 21 |
|
| 22 |
### C++
|
| 23 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 24 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 25 |
-
paths to your setup:
|
| 26 |
```bash
|
| 27 |
OCV=/path/to/opencv # OpenCV source tree
|
| 28 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 29 |
g++ -std=c++17 demo.cpp -o demo \
|
| 30 |
-I$OCV/include \
|
| 31 |
-I$OCV/modules/core/include \
|
|
|
|
| 3 |
Object detection with the Faster-RCNN meta-architecture and a ResNet-50 backbone,
|
| 4 |
trained on the COCO dataset. The model was originally distributed as a frozen TensorFlow
|
| 5 |
graph (`faster_rcnn_resnet50_coco_2018_01_28.pb`) from the TensorFlow Object Detection
|
| 6 |
+
API and converted to ONNX for inference with OpenCV's DNN module.
|
| 7 |
|
| 8 |
## Model Details
|
| 9 |
- **Architecture**: Faster-RCNN with a ResNet-50 backbone
|
|
|
|
| 20 |
```
|
| 21 |
|
| 22 |
### C++
|
| 23 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 24 |
```bash
|
| 25 |
OCV=/path/to/opencv # OpenCV source tree
|
| 26 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 27 |
g++ -std=c++17 demo.cpp -o demo \
|
| 28 |
-I$OCV/include \
|
| 29 |
-I$OCV/modules/core/include \
|
mask_rcnn_inception_v2_coco_2018_01_28/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Instance segmentation with the Mask-RCNN Inception v2 network trained on the COCO dataset.
|
| 4 |
The model was originally distributed as a frozen TensorFlow graph
|
| 5 |
(`mask_rcnn_inception_v2_coco_2018_01_28.pb`) from the TensorFlow Object Detection API
|
| 6 |
-
and converted to ONNX for use with OpenCV's DNN module
|
| 7 |
|
| 8 |
## Model Details
|
| 9 |
- **Architecture**: Mask-RCNN with an Inception v2 backbone
|
|
@@ -22,12 +22,10 @@ python demo.py --model mask_rcnn_inception_v2_coco_2018_01_28_2026jul.onnx --ima
|
|
| 22 |
```
|
| 23 |
|
| 24 |
### C++
|
| 25 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 26 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 27 |
-
paths to your setup:
|
| 28 |
```bash
|
| 29 |
OCV=/path/to/opencv # OpenCV source tree
|
| 30 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 31 |
g++ -std=c++17 demo.cpp -o demo \
|
| 32 |
-I$OCV/include \
|
| 33 |
-I$OCV/modules/core/include \
|
|
|
|
| 3 |
Instance segmentation with the Mask-RCNN Inception v2 network trained on the COCO dataset.
|
| 4 |
The model was originally distributed as a frozen TensorFlow graph
|
| 5 |
(`mask_rcnn_inception_v2_coco_2018_01_28.pb`) from the TensorFlow Object Detection API
|
| 6 |
+
and converted to ONNX for use with OpenCV's DNN module.
|
| 7 |
|
| 8 |
## Model Details
|
| 9 |
- **Architecture**: Mask-RCNN with an Inception v2 backbone
|
|
|
|
| 22 |
```
|
| 23 |
|
| 24 |
### C++
|
| 25 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 26 |
```bash
|
| 27 |
OCV=/path/to/opencv # OpenCV source tree
|
| 28 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 29 |
g++ -std=c++17 demo.cpp -o demo \
|
| 30 |
-I$OCV/include \
|
| 31 |
-I$OCV/modules/core/include \
|
opencv_face_detector_uint8/README.md
CHANGED
|
@@ -36,8 +36,7 @@ net = cv2.dnn.readNet("opencv_face_detector_uint8_2026jul.onnx")
|
|
| 36 |
```
|
| 37 |
|
| 38 |
### C++
|
| 39 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 40 |
-
needed). Adjust the OpenCV paths to your setup:
|
| 41 |
```bash
|
| 42 |
OCV=/path/to/opencv # OpenCV source tree
|
| 43 |
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
|
|
|
| 36 |
```
|
| 37 |
|
| 38 |
### C++
|
| 39 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
| 40 |
```bash
|
| 41 |
OCV=/path/to/opencv # OpenCV source tree
|
| 42 |
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
ssd_inception_v2_coco_2017_11_17/README.md
CHANGED
|
@@ -19,12 +19,10 @@ python demo.py --model ssd_inception_v2_coco_2017_11_17_2026jul.onnx --image exa
|
|
| 19 |
```
|
| 20 |
|
| 21 |
### C++
|
| 22 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 23 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 24 |
-
paths to your setup:
|
| 25 |
```bash
|
| 26 |
OCV=/path/to/opencv # OpenCV source tree
|
| 27 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 28 |
g++ -std=c++17 demo.cpp -o demo \
|
| 29 |
-I$OCV/include \
|
| 30 |
-I$OCV/modules/core/include \
|
|
|
|
| 19 |
```
|
| 20 |
|
| 21 |
### C++
|
| 22 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 23 |
```bash
|
| 24 |
OCV=/path/to/opencv # OpenCV source tree
|
| 25 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 26 |
g++ -std=c++17 demo.cpp -o demo \
|
| 27 |
-I$OCV/include \
|
| 28 |
-I$OCV/modules/core/include \
|
ssd_mobilenet_v1_coco_2017_11_17/README.md
CHANGED
|
@@ -19,12 +19,10 @@ python demo.py --model ssd_mobilenet_v1_coco_2017_11_17_2026jul.onnx --image exa
|
|
| 19 |
```
|
| 20 |
|
| 21 |
### C++
|
| 22 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 23 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 24 |
-
paths to your setup:
|
| 25 |
```bash
|
| 26 |
OCV=/path/to/opencv # OpenCV source tree
|
| 27 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 28 |
g++ -std=c++17 demo.cpp -o demo \
|
| 29 |
-I$OCV/include \
|
| 30 |
-I$OCV/modules/core/include \
|
|
|
|
| 19 |
```
|
| 20 |
|
| 21 |
### C++
|
| 22 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 23 |
```bash
|
| 24 |
OCV=/path/to/opencv # OpenCV source tree
|
| 25 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 26 |
g++ -std=c++17 demo.cpp -o demo \
|
| 27 |
-I$OCV/include \
|
| 28 |
-I$OCV/modules/core/include \
|
ssd_mobilenet_v1_ppn_coco/README.md
CHANGED
|
@@ -20,12 +20,10 @@ python demo.py --model ssd_mobilenet_v1_ppn_coco_2026jul.onnx --image example_ou
|
|
| 20 |
```
|
| 21 |
|
| 22 |
### C++
|
| 23 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 24 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 25 |
-
paths to your setup:
|
| 26 |
```bash
|
| 27 |
OCV=/path/to/opencv # OpenCV source tree
|
| 28 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 29 |
g++ -std=c++17 demo.cpp -o demo \
|
| 30 |
-I$OCV/include \
|
| 31 |
-I$OCV/modules/core/include \
|
|
|
|
| 20 |
```
|
| 21 |
|
| 22 |
### C++
|
| 23 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 24 |
```bash
|
| 25 |
OCV=/path/to/opencv # OpenCV source tree
|
| 26 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 27 |
g++ -std=c++17 demo.cpp -o demo \
|
| 28 |
-I$OCV/include \
|
| 29 |
-I$OCV/modules/core/include \
|
ssd_mobilenet_v2_coco_2018_03_29/README.md
CHANGED
|
@@ -19,12 +19,10 @@ python demo.py --model ssd_mobilenet_v2_coco_2018_03_29_2026jul.onnx --image exa
|
|
| 19 |
```
|
| 20 |
|
| 21 |
### C++
|
| 22 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 23 |
-
(`ENGINE_ORT`), so OpenCV must be built with `-DWITH_ONNXRUNTIME=ON`. Adjust the OpenCV
|
| 24 |
-
paths to your setup:
|
| 25 |
```bash
|
| 26 |
OCV=/path/to/opencv # OpenCV source tree
|
| 27 |
-
OCVBUILD=/path/to/opencv/build # OpenCV build directory (
|
| 28 |
g++ -std=c++17 demo.cpp -o demo \
|
| 29 |
-I$OCV/include \
|
| 30 |
-I$OCV/modules/core/include \
|
|
|
|
| 19 |
```
|
| 20 |
|
| 21 |
### C++
|
| 22 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
|
|
|
| 23 |
```bash
|
| 24 |
OCV=/path/to/opencv # OpenCV source tree
|
| 25 |
+
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
| 26 |
g++ -std=c++17 demo.cpp -o demo \
|
| 27 |
-I$OCV/include \
|
| 28 |
-I$OCV/modules/core/include \
|
tensorflow_inception_graph/README.md
CHANGED
|
@@ -27,8 +27,7 @@ net = cv2.dnn.readNet("tensorflow_inception_graph_2026jul.onnx")
|
|
| 27 |
```
|
| 28 |
|
| 29 |
### C++
|
| 30 |
-
The C++ demo runs inference with OpenCV's DNN module
|
| 31 |
-
needed). Adjust the OpenCV paths to your setup:
|
| 32 |
```bash
|
| 33 |
OCV=/path/to/opencv # OpenCV source tree
|
| 34 |
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|
|
|
|
| 27 |
```
|
| 28 |
|
| 29 |
### C++
|
| 30 |
+
The C++ demo runs inference with OpenCV's DNN module. Adjust the OpenCV paths to your setup:
|
|
|
|
| 31 |
```bash
|
| 32 |
OCV=/path/to/opencv # OpenCV source tree
|
| 33 |
OCVBUILD=/path/to/opencv/build # OpenCV build directory (generated headers + libs)
|