Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iitzco/opencv-dnn-samples
How to run inference on different models using OpenCV's dnn package
https://github.com/iitzco/opencv-dnn-samples
deep-learning dnn opencv
Last synced: 21 days ago
JSON representation
How to run inference on different models using OpenCV's dnn package
- Host: GitHub
- URL: https://github.com/iitzco/opencv-dnn-samples
- Owner: iitzco
- Created: 2018-06-15T19:14:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-15T21:44:52.000Z (over 6 years ago)
- Last Synced: 2024-10-04T13:31:20.281Z (about 1 month ago)
- Topics: deep-learning, dnn, opencv
- Language: Python
- Size: 71.2 MB
- Stars: 19
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenCV dnn samples
Here you can find 3 different examples (Tensorflow, Caffe and Torch) on how to use the `dnn` package from OpenCV. The idea is to understand how the package can be used to make inferences on any trained model.
For each model used, you need to understand the meaning of their output values.
> **Attention**: this code runs under Python3
## Why is this cool?
There is no need to install any Deep Learning framework! With just OpenCV you can make inferences on trained graphs from these common frameworks: Tensorflow, Caffe and Torch.
## How to use?
1. Clone the repo.
2. *Optional* Create a virtual environment (for example, using `virtualenv`) to keep dependencies isolated.
3. Run `pip install -r requirements.txt`
4. Run any of the following samples:#### Tensorflow
You can run an Object Detection model based on SSD+MobileNet trained on COCO dataset.
```bash
$ python main_tensorflow.py ./images/people.jpg
```The used model was extracted from the official Tensorflow Object Detection API Zoo [here](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md)
#### Caffe
You can run an Image Classification Detection model trained on ImageNet dataset.
```bash
$ python main_caffe.py ./images/eagle.png
```This model was extracted from the code that [this](https://www.pyimagesearch.com/2017/08/21/deep-learning-with-opencv/) excellent post provides.
#### Torch
You can run an Image Classification Detection model trained on ImageNet dataset.
```bash
$ python main_torch.py ./images/eagle.png
```The model needs to be downloaded because it's not included in this repo. Go to `./torch/` to get the link to the official download URL. The model was extracted from [here](https://github.com/facebook/fb.resnet.torch/tree/master/pretrained).
## Acknowledge
* Refer to [this blogpost](https://habr.com/company/intel/blog/333612/) written by the author of the `dnn` package.
* More information here: https://github.com/opencv/opencv/wiki/Deep-Learning-in-OpenCV