Python Wrapper For Yolo

Python bindings for YOLO v2 (https://pjreddie.com/darknet/yolo/) with ctypes.
Alternatives To Python Wrapper For Yolo
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Triangle177
2 months ago13lgpl-3.0Python
Python bindings to the triangle library
Caio38125 days ago27February 07, 20221apache-2.0C
Linux AIO c python bindings
Pysophus36
4 years ago6Python
Python bindings for Sophus Lie Algebra C++ Library
Python Wrapper For Yolo32
6 years ago1Python
Python bindings for YOLO v2 (https://pjreddie.com/darknet/yolo/) with ctypes.
Pycvodes27
4 months ago68December 30, 20207bsd-2-clauseC++
Python wrapper around cvodes (from the sundials library)
Libplump23
4 years ago1otherC++
Library for the Sequence Memoizer and related models
Python313
3 years agoNim
Python 3 wrapper for Nim
Pyopencc13
10 years agoapache-2.0C
OpenCC Python binding
Ipsetpy12
6 years ago1mitPython
Interface to allow Python programs to manipulate ipsets.
Pyeddl10
10 months ago4mitC++
Python wrapper for the EDDL library.
Alternatives To Python Wrapper For Yolo
Select To Compare


Alternative Project Comparisons
Readme

Python-wrapper-for-YOLO

Python bindings for YOLO v2 (https://pjreddie.com/darknet/yolo/) detector function with ctypes.

Install perequisites.

  • Command line tools (gcc)
  • PIL
pip install pillow

Download YOLOv2 source code

git clone https://github.com/pjreddie/darknet
cd darknet

Replace makefile with the one from this repository and run make

make
wget http://pjreddie.com/media/files/yolo.weights

Create shared library object and copy it to your darknet directory

cd src
gcc -c -fPIC *.c
gcc -shared -fPIC  -o libdarknet.so  *.o -lc
cp ./libdarknet.so ../
cd ..

Copy python_wrapper.py from this repository to your darknet directory

Put all your test files to darknet/data directory and run the script.

python python_wrapper.py
Popular Bindings Projects
Popular Python Wrapper Projects
Popular Libraries Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Bindings
Python Wrapper
Python Bindings
Darknet
Ctypes