Skip to content

A Where's Waldo puzzle solver made using OpenCV and Python.

License

Notifications You must be signed in to change notification settings

subhadeep-sg/wheres-waldo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wheres-waldo

A Where's Waldo puzzle solver made using OpenCV and Python.

First Approach:

Using feature matching on a query image while using a reference image of Waldo Result of First Approach

Second Approach:

Using template matching and performing a similar task but requires an near exact match with Waldo in reference Result of Second Approach

To do this the image of Waldo was manually extracted from the query image itself and then compared.

This seems to defeat the purpose of solving the puzzle. So for the next approach a pre-existing bigger training set of images will be used to train the model to the different kinds of appearances Waldo can have.

Third Approach:

A neural network method that is currently in progress