Skip to content

jesolem/PCV

Folders and files

NameName
Last commit message
Last commit date

Latest commit

376d597 · Jul 19, 2014

History

40 Commits
Jul 12, 2013
Jul 19, 2014
Jul 19, 2014
Jul 7, 2013
Jul 19, 2014
Mar 30, 2012
Dec 7, 2012
Apr 3, 2012
Jan 28, 2013
Sep 13, 2012

Repository files navigation

About PCV

PCV is a pure Python library for computer vision based on the book "Programming Computer Vision with Python" by Jan Erik Solem.

More details on the book (and a pdf version of the latest draft) can be found at programmingcomputervision.com.

Dependencies

You need to have Python 2.6+ and as a minimum:

Some parts use:

Many sections show applications that require smaller specialized Python modules. See the book or the individual examples for full list of these dependencies.

Structure

PCV/ the code.

pcv_book/ contains a clean folder with the code exactly as used in the book at time of publication.

examples/ contains sample code. Some examples use data available at programmingcomputervision.com.

Installation

Open a terminal in the PCV directory and run (with sudo if needed on your system):

python setup.py install

Now you should be able to do

import PCV

in your Python session or script. Try one of the sample code examples to check that the installation works.

License

All code in this project is provided as open source under the BSD license (2-clause "Simplified BSD License"). See LICENSE.txt.


-Jan Erik Solem