Giter Site home page Giter Site logo

tetsuakibaba / ofxopencvdnnobjectdetection Goto Github PK

View Code? Open in Web Editor NEW
37.0 5.0 10.0 137.24 MB

OpenCV based DNN Object Detection Library for Openframeworks

License: MIT License

Makefile 1.71% C++ 96.33% Shell 1.96%
opencv openframeworks dnn detection yolo addon annotation mobilenet-ssd openframeworks-addon

ofxopencvdnnobjectdetection's Introduction

ofxOpenCvDnnObjectDetection

sample_images/result_sample01.gif

Description

ofxOpenCvDnnObjectDetection is an addon for openframeworks(version.0.11.0).

I created this addon for beginers or learner who are going to try object detection with Yolo, SSD and R-CNN on OF. Latest oF includes opencv(version4) as a default opencv library, so you can run dnn object detection with ofxOpenCv.

Usage

See Examples for more details

Example

single_image

single_image screenshot Detection example for single image.

camera

Realtime Detection example for webcam video.

annotation

annotation screenshot My annotation software to export a yolo format. It enables you to annotate image, video, camera. I'm preparing the manual to use it.... not yet.

Getting Started with Examples/single_image.

1. Clone ofxOpenCvDnnObjectDetection to your of/addon directory

git clone https://github.com/TetsuakiBaba/ofxOpenCvDnnObjectDetection.git

2. Download models

sh getWeights.sh

3. Open a project generator and import Example/single_image. Then click the update button.

4. Open the project with IDE(xcode) and just run.

Compatibility

  • only macOS ( tested on Catalina 10.15, sonoma 14.2.1)
  • oF version: 0.11.0, 0.12.0

If you wanna get faster inference time.

Openframeworks(version.0.11.0) includes opencv-4.0.1 for ofxOpenCv addon. But you can get faster inference time by using local-compiled opencv library. Here is my inference time result on each dnn object detection.

Now, I've done an inference test on M1 mac with arm64 compiled opencv2.framework. If you would like to try oF with M1 native, please check the below link.

CPU Inference Time on MacBook Pro (13-inch Mid 2018) https://browser.geekbench.com/v5/cpu/1184669 opencv.a (opencv-4.0.1, oF bundle) opencv2.framework (opencv-4.2.0, local compiled)
yolov3 (416x416,coco) 760 [ms] 307 [ms]
yolov3-tiny (416x416,coco) 62 [ms] 27 [ms]
yolov2-tiny (416x416,coco) 61 [ms] 28 [ms]
MobileNet-SSD (300x300, voc) 40 [ms] 26 [ms]
SSD (300x300, coco) 768 [ms] 310 [ms]
CPU Inference Time on mac mini (M1 2020) https://browser.geekbench.com/v5/cpu/5044574 opencv.a (opencv-4.0.1, oF bundle) opencv2.framework (opencv-4.5, intel macbook pro(2018) compiled) opencv2.frameworks
(Arm64 M1 compiled)
yolov3 (416x416,coco) 412 [ms] 413 [ms] 320 [ms]
yolov3-tiny (416x416,coco) 39 [ms] 39 [ms] 30 [ms]
yolov2-tiny (416x416,coco) 37 [ms] 38 [ms] 29 [ms]
MobileNet-SSD (300x300, voc) -- [ms] -- [ms] -- [ms]
SSD (300x300, coco) -- [ms] -- [ms] -- [ms]

How to replace opencv.a to opencv2.framework

  1. Copy opencv2.framework to ofxOpenCvDnnObjectDetection/lib directory
  2. Edit addon_config.mk and comment out a line of #ADDON_INCLUDES += libs/opencv2.framework
  3. Import a project, such as single_image, camera, with projectgenerator then remove ofxOpenCv from addon list.
  4. update and run.

Licence

Author

TetsuakiBaba

Reference

  1. Model Zoo on OpenCV DNN Module README page: https://github.com/opencv/opencv/blob/master/samples/dnn/README.md
  2. How to implement OpenCV Yolo on Openframeworks: https://qiita.com/buchayaty/items/4020100f531c07418f38

ofxopencvdnnobjectdetection's People

Contributors

tetsuakibaba avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

ofxopencvdnnobjectdetection's Issues

opencv2/dnn.hpp' file not found

macOS 12.6
oF 0.11 and oF 0.11.2
Xcode 13.3.1 (13E500a)

Greetings,
I would really like to work with your add-on, but I get the 'opencv2/dnn.hpp error' when trying to run the camera example. The error points to line 5 of the ofxOpenCvDnnObjectDetection.h file.

Any assistance would be appreciated.

Thanks

Addon changes in fork

First of all : thank you for the great addon.
I've made a fork with some changes, basically I've set up NMSBoxes to remove duplicates (Yolo only for now)
and added a simplified Object constructor accepting ofRectangle as a parameter

Object::Object(int _class_id, string _name, float _p, ofRectangle rect)

I'll be changing more things in this fork, if you find something useful I can make a PR.
Cheers

yolov3?

Thank you for the great library, it worked great for me after I created a project with the projected generator. Does the library work for yolov3 and if so do you have the .weights files?, I saw on one of the examples that you used it, and I was wondering if you could share them with me or us
Anyways thank you for the great help!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.