A Python module for detecting occurrences of a specific image template on your screen using OpenCV and MSS.
Designed for easy integration into other projects, allowing you to scan your screen programmatically with simple function calls.
- Press
sto scan the primary monitor for the template image. - Detects and prints coordinates of all matches found.
- Press
qto quit the program gracefully. - Uses normalized cross-correlation for template matching.
- Python 3.x
- mss
- opencv-python
- numpy
- keyboard
Install dependencies with pip:
pip install mss opencv-python numpy keyboard