An open API service indexing awesome lists of open source software.

https://github.com/sshaplygin/find-contours

Simple scripts to find countours with OpenCV
https://github.com/sshaplygin/find-contours

contours-detection image-analysis mpei opencv python3

Last synced: 9 days ago
JSON representation

Simple scripts to find countours with OpenCV

Awesome Lists containing this project

README

          

Find Contours
=============
Simple python3 script to find contours in selected images file.
Result output 4 files: gray, edged, closed, result

## Usage

```
git clone https://github.com/mrfoe7/find-contours.git
cd find-contours
python3 script.py
follow messages on screen
```

## Notice

If you need \*.exe application use:

* [py2exe](http://www.py2exe.org/) is probably what you want, but it only works on Windows.
* [Pyinstaller](http://www.pyinstaller.org/) works on Windows and Linux.
* [Py2app](https://pypi.python.org/pypi/py2app/) works on the Mac.

To further avoid conflicts and to make development easier, Python’s [virtual environments](https://docs.python.org/3/library/venv.html) are highly recommended for development purposes.

## Dependencies and Resources

* [numpy](http://www.numpy.org/) pip install numpy
* [matplotlib](https://matplotlib.org/) pip install matplotlib
* [cv2](https://opencv.org/) pip install opencv-python

Instrucrion to install OpenCV on defirent OS [link](https://docs.opencv.org/3.1.0/df/d65/tutorial_table_of_content_introduction.html)