Metadata-Version: 2.1
Name: easycv
Version: 0.3.0
Summary: Computer Vision made easy
Home-page: https://github.com/easycv/easycv
Author: EasyCV Developers
Author-email: easycv.developers@gmail.com
License: MIT
Download-URL: https://github.com/easycv/easycv/archive/v0.3.0.tar.gz
Keywords: easycv,computer vision,python,ai
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pillow
Requires-Dist: requests
Requires-Dist: matplotlib
Requires-Dist: opencv-python
Requires-Dist: scikit-image
Requires-Dist: ray
Requires-Dist: pyzbar
Requires-Dist: tqdm
Requires-Dist: pyyaml
Requires-Dist: color-transfer
Requires-Dist: pyqt5 (==5.14.2)
Requires-Dist: sklearn

<p align="center">
<img src="https://raw.githubusercontent.com/easycv/easycv/master/images/logo.png?token=AJ3ZJ2WQM7JF5F5KDZNN5HC7JJG52">
</p>

Computer Vision made easy.

[![Build Status](https://api.travis-ci.org/easycv/easycv.svg?branch=master)](https://travis-ci.org/easycv/easycv)
[![Documentation Status](https://readthedocs.org/projects/easycv/badge/?version=latest)](https://easycv.readthedocs.io/en/latest/?badge=latest)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/easycv/easycv/master)

## Documentation
We provide detailed documentation of all **EasyCV** modules on [read the docs.](https://easycv.readthedocs.io/en/latest/)
You can view and run interactive examples [here](https://mybinder.org/v2/gh/easycv/easycv/master).

## Installation

You can install **EasyCV** using [pip](https://pip.pypa.io/en/stable/) or from source.

### Using Pip

First ensure that you have the latest pip version to avoid dependency errors
```
pip install --upgrade pip
```
Then install **EasyCV** and all its dependencies using [pip](https://pip.pypa.io/en/stable/)
```
pip install easycv
```
### From Source

Clone the repository from [github](https://github.com/easycv/easycv)
```
git clone https://github.com/Resi-Coders/easycv.git
cd easycv
pip install .
```
You can view the list of all dependencies within the ``install_requires`` field
of ``setup.py``.

## Running the tests

If you don't have ``pytest`` installed run
```
pip install pytest
```
To run all tests just run
```
cd easycv
pytest .
```
## Versioning

[SemVer](http://semver.org/) is used for versioning. For available versions see the [tags on this repository](https://github.com/easycv/easycv/tags). 

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE.txt) file for details


