https://github.com/otl/arucopy
aruco library for boost.python
https://github.com/otl/arucopy
Last synced: 3 months ago
JSON representation
aruco library for boost.python
- Host: GitHub
- URL: https://github.com/otl/arucopy
- Owner: OTL
- License: bsd-3-clause
- Created: 2014-12-27T05:38:18.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-28T04:42:44.000Z (over 11 years ago)
- Last Synced: 2026-01-01T02:36:17.194Z (7 months ago)
- Language: C++
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
arucopy
=======
Python Marker recognition using aruco library.
This uses cv::VideoCapture to get image in c++ code.
This is not compatible with python-opencv yet.
precondition
-------------
- [aruco](http://sourceforge.net/projects/aruco/)
- boost.python
build and install
-------------
```bash
$ cd arucopy
$ python setup.py build
$ sudo python setup.py install
```
sample
-------------
```python
import arucopy
md = arucopy.MarkerDetector()
markers = md.detect() # for one shot
while True:
md.detect()
md.draw()
```