Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.rst

VisionCpp

PyPi Status Build Status Coverage Status Documentation Status

GPU-accelerated vision processing using VisionCpp.

Requirements

Installation

$ pip install visioncpp

To build from source:

$ virtualenv env
$ source env/bin/activate
(env) $ python ./setup.py install

Get Started

$ python
>>> import visioncpp as vp
>>> vp.init("~/ComputeCpp-CE-0.1-Linux")  # path to your ComputeCpp package
>>> a = vp.Image("examples/lena.jpg")
>>> b = vp.show(a)
>>> vp.run(b)

See the tutorial for more information.