Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jesolem/PCV
Open source Python module for computer vision
https://github.com/jesolem/PCV
Last synced: 17 days ago
JSON representation
Open source Python module for computer vision
- Host: GitHub
- URL: https://github.com/jesolem/PCV
- Owner: jesolem
- License: bsd-2-clause
- Created: 2012-03-30T05:31:03.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2020-12-28T00:44:46.000Z (almost 4 years ago)
- Last Synced: 2024-10-14T10:21:54.578Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 59.1 MB
- Stars: 1,919
- Watchers: 164
- Forks: 673
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- my-awesome-awesomeness - PCV
README
## 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](http://programmingcomputervision.com/).
### Dependencies
You need to have Python 2.6+ and as a minimum:* [NumPy](http://numpy.scipy.org/)
* [Matplotlib](http://matplotlib.sourceforge.net/)Some parts use:
* [SciPy](http://scipy.org/)
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](http://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