Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yolo_cpp

C++ed version of Darknet

This repo works with Orbbec astra RGBD camera

This is a repository for the developers who need to integrate yolo into their c++ projects. Only contribution to the original darknet code is a simple wrapper class around object detection functionality. You can immediately start building up a cpp project based on YOLO object detection.

What is Yolo and Darknet

Darknet is an open source neural network framework written in C and CUDA. It is fast, easy to install, and supports CPU and GPU computation.

For more information see the Darknet project website.

For questions or issues please use the Google Group.

Requirements

  • OpenCV
  • CUDA
  • pthreads

As opposed to the original darknet, it is not possible to compile without CUDA and OpenCV.

Installation

first follow the install guide in OpenNi folder

then

mkdir build
cd build
cmake ..
make 

To run

wget https://pjreddie.com/media/files/yolo.weights
./darknet_cpp

What you get is the following executables in the source folder.

  • darknet -> This does the same job as the original darknet, but compiled with g++
  • darknet_cpp -> This is a sample application demonstrates the usage of my yolo wrapper

You can copy all auxilary files from original darknet project and run example commands on the darknet website without any adjustment.

If you want to develop a cpp application just add a new folder in /app folder, configure your cmake environment and there you go.

About

run darknet yolo on orbbec astra RGBD camera

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages