从 bmp 中获取平均颜色

发布于 2024-10-20 08:15:04 字数 841 浏览 5 评论 0原文

我正在为第二个屏幕开发一个任务栏(类似于displayfusion)。

但是,我很难从图标中获得正确的平均颜色。例如 Google Chrome/当我将其悬停在主任务栏上时,它的背景会变成黄色。使用我的代码它会变成橙色/红色。

这就是它现在的样子:

在此处输入图像描述

如何获得正确的主色/平均颜色?

我使用此代码来计算平均颜色:

public static Color getDominantColor(Bitmap bmp)
{
     //Used for tally
     int r = 0;
     int g = 0;
     int b = 0;

     int total = 0;

     for (int x = 0; x < bmp.Width; x++)
     {
          for (int y = 0; y < bmp.Height; y++)
          {
               Color clr = bmp.GetPixel(x, y);    
               r += clr.R;
               g += clr.G;
               b += clr.B;    
               total++;
          }
     }

     //Calculate average
     r /= total;
     g /= total;
     b /= total;

     return Color.FromArgb(r, g, b);
}

I am developing a taskbar for the 2nd screen(something like displayfusion).

However, I'm having difficulty at getting the right average color from the icon. For example Google Chrome/ When I hover it on the main taskbar it backgrounds turns yellow. With my code it turns orange/red.

This is what it looks now:

enter image description here

How can I get the right dominant/average color?

I use this code to calculate the average color:

public static Color getDominantColor(Bitmap bmp)
{
     //Used for tally
     int r = 0;
     int g = 0;
     int b = 0;

     int total = 0;

     for (int x = 0; x < bmp.Width; x++)
     {
          for (int y = 0; y < bmp.Height; y++)
          {
               Color clr = bmp.GetPixel(x, y);    
               r += clr.R;
               g += clr.G;
               b += clr.B;    
               total++;
          }
     }

     //Calculate average
     r /= total;
     g /= total;
     b /= total;

     return Color.FromArgb(r, g, b);
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风起 2024-10-27 08:15:04

平均颜色不一定是最常用的颜色。我建议计算饱和度超过特定阈值的像素的色调,并使用数组创建图像的直方图。 (某个色调值被使用了多少次)。

然后平滑直方图(计算两个邻居的局部平均值),然后得到平滑后的直方图取最大值的位置。

您可以通过以下方式获取 HSL 值:

Color.GetHue
Color.GetSaturation
Color.GetBrightness

The average color is not neccessarily the color most used. I recommend calculating the HUE of pixels which have saturation over a certain threshold, and use an array to create a histogram of the image. (How many times a certain hue value was used).

Then smooth the histogram (calculate local average values with both neighbours), then get the place where this smoothed histogram takes the maximal value.

You can get HSL values with:

Color.GetHue
Color.GetSaturation
Color.GetBrightness
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文