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
- Host: GitHub
- URL: https://github.com/sshaplygin/find-contours
- Owner: sshaplygin
- License: mit
- Created: 2018-02-16T18:59:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-18T18:06:11.000Z (over 8 years ago)
- Last Synced: 2025-09-04T15:50:38.866Z (10 months ago)
- Topics: contours-detection, image-analysis, mpei, opencv, python3
- Language: Python
- Homepage:
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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)