vote up 3 vote down star
1

I am writing a simple game which stores datasets in a 2D grid (like a chess board). Each cell in the grid may contain a single integer (0 means the cell is empty). If the cell contains a number > 0, it is said to be "filled". The set of "filled" cells on the grid is known as a "configuration".

My problems is being able to "recognize" a particular configuration, regardless of where the configuration of cells are in the MxN grid.

The problem (in my mind), breaks down into the following 2 sub problems:

  1. Somehow "normalising" the position of a configuration (for e.g. "rebasing" its position to (0,0), such that the smallest rectangle containing all cells in the configuration has its left vertice at (0,0) in the MxN grid

  2. Computing some kind of similarity metric (or maybe simply set difference?), to determine if the current "normalised" configuration is one of the known configurations (i.e. "recognized")

I suspect that I will need to use std::set (one of the few STL containers I haven't used so far, in all my years as a C++ coder!). I would appreciate any ideas/tips from anyone who has solved such a problem before. Any code snippets, pseudocode and/or links would be very useful indeed.

flag

33% accept rate
What you're trying to achieve makes me think of HashLife, a memoized algorithm for computing cellular automata. It represents the grid using a quadtree and stores computed configurations into a hashmap to avoid performing the same computation several times. – Luc Touraille Oct 7 at 9:41
1  
Your problem is not fully specified - when there is a blob you wish to identify, may there be other filed cells on the board separate from the blob? Also you talk about "similarity" - but are you after a precise pattern match or an approximate one? – Mick Oct 7 at 9:46
Mick: its not blobs I want to identify, its the whole set of blobs on the grid (i.e. the "configuration") Regarding the similarity metric - a similarity metric will work for both precise matches as well as those that are merely "similar" - to the known configurations by returning appropriate info (e.g. how it differs from the recognized configurations) – scoobydoo Oct 7 at 9:55
The title of this question has almost no information in it. If you used the second paragraph of your description as the title, it would be much more of an incentive for people to read and answer the question. Like: "How do I 'recognize' a configuration of cells in an MxN grid?" That is a much better title for this question. – A. Levy Nov 13 at 18:31

6 Answers

vote up 3 vote down

Similarity metrics are a massive area of academic research. You need to decide what level of sophistication is required for your task. It may be that you can simply drag a "template pattern" across your board, raster style, and for each location score +1 for a hit and -1 for a miss and sum the score. Then find the location where the template got the highest score. This score_max is then your similarity metric for that template. If this method is inadequate then you may need to go in to more detail about the precise nature of the game.

link|flag
This (scoring "hits") seems a tractable solution. Actually, it gave me another idea for doing this - computing a hash from the configuration. Ignoring the "normalising" problem (i.e. placing the leftmost vertex of a configuration at (0,0) - can you suggest a way of encoding the configurations so that they can be uniquely be identified? (I guess this now becomes an encoding problem) – scoobydoo Oct 7 at 11:54
Use a hash system. Assign a 32bit random number to each coordinate in the pattern template. Start with fixed random number called seed. raster scan your pattern and for each "on" pixel "XOR" the corresponding random number with the seed. The resulting number will be unique to that pattern with very high probability. – Mick Oct 7 at 13:13
Mick: I'm not sure I understand what you're saying (it sounds unnecessarily complicated). Would it not be simpler and just as effective to calculate some kind of CRC on a confiuration? – scoobydoo Oct 7 at 15:49
At a glance a CRC works on the same principle as what I proposed (a sequence of XORs with numbers from the pattern) - it may work perfectly well. – Mick Oct 7 at 16:02
vote up 0 vote down

This may be overkill for a small application, but OpenCV has some excellent image recognition and blob finding routines. If you treat the 2D board as an image, and the integer as brightness, it should be possible to use functions from that library.

And the link: http://opencv.willowgarage.com/documentation/index.html

link|flag
This looks interesting - but yes, it may be overkill ... – scoobydoo Oct 7 at 9:59
vote up 0 vote down

you can use a neural network for that job.

if you lookfor neural network shape recognition i think that you can find something usefull. you can find tons of library that may help you but if you have no experiece with NN this could be a little hard, but i think that is the easiest way

link|flag
vote up 0 vote down

Maybe you could use some hash function to identify configurations. Since you need to recognize patterns even if they are not at the same position on the board, this hash should not depend on the position of the cells but on the way they are organized.

If you store your 2D grid in a 1D array, you would need to find the first filled cell and start calculating the hash from here, until the last filled cell.

Ex:

-----------------
|   |   |   |   |
-----------------
|   | X | X |   |
-----------------
|   |   | X |   |
-----------------
|   |   |   |   |
-----------------

----------------+---------------+---------------+----------------
|   |   |   |   |   | X | X |   |   |   | X |   |   |   |   |   |
----------------+---------------+---------------+----------------
                    |_______________________|
                                |
               Compute hash based on this part of the array

However, there are cases where this won't work, e.g. when the pattern is shifted across lines:

-----------------
|   |   |   | X |
-----------------
| X |   |   |   |
-----------------              Different configuration in 2D.
| X |   |   |   |
-----------------
|   |   |   |   |
-----------------

----------------+---------------+---------------+----------------
|   |   |   | X | X |   |   |   | X |   |   |   |   |   |   |   |
----------------+---------------+---------------+----------------
            |_______________________|
               Seems similar in 1D

So you'll need some way of dealing with these cases. I don't have any solution yet, but I'll try to find something if my schedule allows it!

After thinking a bit about it, maybe you could use two different representations for the grid: one where the lines are appended in a 1D array, and another one where the columns are appended in a 1D array. The hash would be calculated with these two representations, and that would (I think) resolve the problem evoked above.

link|flag
vote up 0 vote down

Sounds like you want to feed your chessboard to a neural network trained to recognize the configuration.

This is very similar to the classic examples of image classification, with the only complication being that you don't know exactly where your configuration thingy will appear in the grid, unless you're always considering the whole grid - in that case a classic 2 layers network should work.

HTM neural networks implementations solve the offset problem out-of-the-box. You can find plenty of ready-to-use implementations starting from here. Obviously you'll have to tweak the heck out of the implementations you'll find but you should be able to achieve exactly what you're asking for to my understanding.

If you want to further investigate this route the Numenta forum will be a good starting point.

link|flag
HTM networks are great, but they are almost certainly way too complex for scoobydoo's problem. I have a personal interest in the work of numenta as you can see here: www.reiss.demon.co.uk/neural/neural.htm – Mick Oct 7 at 13:18
I agree, it's probably overkill. If the grid was to be considered always as a whole then it should be easy to come up with a NN to classify configurations on that grid. In case the offset is a problem HTM nets would do but the template pattern solution you propose is without doubt a more workable solution. Thanks for the link BTW – JohnIdol Oct 7 at 14:16
vote up 0 vote down

This reminds me of HashLife which uses QuadTrees. Check out the wikipedia pages on HashLife and Quadtrees.

There's also a link at the bottom of the Wikipedia page to a DrDobbs article about actually implementing such an algorithm: http://www.ddj.com/hpc-high-performance-computing/184406478

I hope those links help. They're interesting reads if nothing else.

link|flag
Also note this link: tomas.rokicki.com/hlife He provides his source code for hash life. Maybe yo can draw some inspiration from that. – just_wes Nov 13 at 18:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.