EDIT: Heres some code that should do a simple count (not tested it, its a quick mashup of some code from here and rgb to hsl here)
Bitmap b = new Bitmap(_image);BitmapData bData = b.LockBits(new Rectangle(0, 0, _image.Width, _image.Height), ImageLockMode.ReadWrite, b.PixelFormat);byte bitsPerPixel = GetBitsPerPixel(bData.PixelFormat);byte* scan0 = (byte*)bData.Scan0.ToPointer();int count;for (int i = 0; i < bData.Height; ++i) for (int j = 0; j < bData.Width; ++j) byte* data = scan0 + i * bData.Stride + j * bitsPerPixel / 8; byte r = data[2]; byte g = data[1]; byte b = data[0]; byte max = (byte)Math.Max(r, Math.Max(g, b)); byte min = (byte)Math.Min(r, Math.Min(g, b)); int h; if(max == min) h = 0; else if(r > g && r > b) h = (60 * ((g - b) / (max - min))) % 360; else if (g > r && g > b) h = 60 * ((b - r)/max - min) + 120; else if (b > r && b > g) h = 60 * ((r - g) / max - min) + 240; if(h > _lowerThresh && h < _upperThresh) count++;
