Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 1.09 KB

File metadata and controls

30 lines (18 loc) · 1.09 KB

Find That Pokemon using OpenCV's Template Matching

Find That Pokemon

Template matching in OpenCV is a technique for finding areas of an image that are similar to a template image. To identify the matching area, the program compares the template image against the source image by sliding it (scanning pixel by pixel across the image left to right and top to bottom searching for a high score match).

Prerequisites

You will need the following Python packages installed:

numpy
cv2

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments