Got an image? Want to know how many unique colors are contained in it?
public static int CountImageColors(string fileName)
{
int count = 0;
HashSet<Color> colors = new HashSet<Color>();
Bitmap bmp = null;
if (File.Exists(fileName))
{
try
{
bmp = new Bitmap(fileName);
if (bmp != null)
{
for (int y = 0; y < bmp.Size.Height; y++)
{
for (int x = 0; x < bmp.Size.Width; x++)
{
colors.Add(bmp.GetPixel(x, y));
}
}
count = colors.Count;
}
}
catch
{
throw;
}
finally
{
colors.Clear();
bmp.Dispose();
}
}
return count;
}
Since a
HashSet
doesn't allow duplicate keys, we use the color as the key, and any duplicates will not be added. This will result in a collection of unique colors, and we use the
Count
property to get that value.
Keep in mind the example provided above is merely illustrating the technique of using a
HashSet
to keep track of unique colors, and is not necessarily a reasonable implementation of the method itself in your case.
It may not be the fastest way to do it, but it works great, and the general technique illustrated above can be used in pretty much any language that supports a
HashSet
-style collection.
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.
My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.