------------------------------------------------
10:09 AM 3/27/02 I'm excited now. There are so many ways to approach this problem. I'll just start taking random whacks at it and see what happens!
Techniques I want to try are:
Color Blobing-> Finds shapes that have a same general color.
Color Blending-> Reduce noise in picture
Edging via mask->Using a mask to find edges.
Edging via larger mask->using a big mask to find edges.
Blending via mask.

Ok, so I found blending via mask fun.

If I see a sequence:

GGG
GRG
GGG

I can assume the middle red is a fluke and should be green.

so I decided to use a bigger mask

.....OOO
...OOOOO
OOOOOOO
OOOOOOO
OOOOOOO
...OOOOO
.....OOO
Sorry, Microsoft again strikes, and won't let you use indents because of IExplore. Periods signify spaces

37 different pixels

This has the advantage of being able to do 5x5 areas very well in case processing power becomes an issue. :) So many ways to approach the problem!

1