0

Lets say Im having a screenshot of a chessgame. I am looking for a method to scan the screenshot for known components. Ie. how to find the pieces on the board and their position.

Preferable I would like to do this in .NET - anyone can direct me in the right direction.

Jørgen R
  • 10,568
  • 7
  • 42
  • 59
Muleskinner
  • 14,150
  • 19
  • 58
  • 79

1 Answers1

0

If you have a database with how the pieces look like you can use Cross Correlation to find them in the picture.

In one of my projects I am using Cross Correlation to find a known piece of sound in an audio file, you might want to check out my question on this topic. In the question I provided my solution. Read the accepted answer for some background.

Community
  • 1
  • 1
Daniel Hilgarth
  • 171,043
  • 40
  • 335
  • 443