Python Computer Vision Tutorials — cv2 and mss basics / part 3

wsh
1 min readFeb 20, 2019

CONTENTS LIST

CONTENTS LIST

MSS Screen Capture

If you want to apply object detection on the screen, python-mss is the most recommended tool to capture the screen. As you know, there are a large number of screen capture API, but most of them are too slow to apply object detection in real-time speed.

Python-mss module is the fastest one at leas on my experience. So in this post, I’m going to show you how to use it .

--

--