Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Computer Vision Tools
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
OpenCV | OpenCV for Python
Pillow
moviepy
moviepy is a Python library for video editing: cutting, concatenations, title insertions, video compositing (a.k.a. non-linear editing), video processing, and creation of custom …
Take Screenshots in Python
Comments¶
- PIL.ImageGrab works on macOS and Windows only.
PIL.ImageGrab
is relatively slow.python-mss
andPyQt5
are better alternatives if performance of screenshot is critical. Notice that saving an (e.g., PNG) image can take significant time (might take up to 0.5 seconds) too, this is often due to image compression is slow. Lower the compression level can significant reduce the time needed to save an image. Please refer to Saving a PNG file is slow