The cypher uses pictures (of a dancing man) in place of characters.
For example, here is a secret message: http://i.imgur.com/fiZPoRn.jpg
This picture is an "s" http://www.dcode.fr/tools/dancing-men/images/S.png
This picture is an "t" http://www.dcode.fr/tools/dancing-men/images/T.png
etc.
Ultimately, I want to search for all of the different dancing men (characters) in the secret message and use the coordinates of where the characters are found to piece together the translation. I'm stumped on finding more than one subimage match.
I can find on occurrence of the S with this command and output:
Code: Select all
C:\WIP>compare -metric mae -subimage-search fiZPoRn.jpg s.png null: 2>&1
768.716 (0.0117298) @ 95,579
All suggestions are welcome!