+ 4
How to implement image processing?
4 odpowiedzi
+ 5
If you could be more specific it would help, because "use imagemagick" is also acceptable (it's like, kindof built for massive automation)...but a lot more context may be required to use it effectively.
Related: MagickWand
http://www.imagemagick.org/script/magick-wand.php
Wand-py
https://pypi.org/project/Wand/
+ 4
Check this playlist.
OpenCV 3 with Python 3 Tutorial: https://www.youtube.com/playlist?list=PLiHa1s-EL3vjr0Z02ihr6Lcu4Q0rnRvjm
+ 3
1. Define what info should be relevant in the image (counting objects, borders, shape estimation, etc)
2. Do some Google about libs that perform that task/s.
3. Read the documentation, find your favorite functions
4. Import the library in your project
5. Test... Mistake, read again, adjust parameters, test... Done!!
0
Hy