What you took were JPG, PNG, and IMG pictures. OpenCV is generally used for image processing. There is a corresponding python interface cv2, which is mainly used for image and video processing.
Python 2.7.5 (default, Mar 9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> print len(dir(cv2))
1018
In fact, I think OpenCV is basically the standard for python image and video processing. I haven’t found a particularly good example, but for image processing, openCV is basically indispensable
What you took were JPG, PNG, and IMG pictures. OpenCV is generally used for image processing. There is a corresponding python interface cv2, which is mainly used for image and video processing.
In fact, I think OpenCV is basically the standard for python image and video processing. I haven’t found a particularly good example, but for image processing, openCV is basically indispensable