gpt4 book ai didi

c# - 获取像素 + OrderBy 最常见的颜色

转载 作者:行者123 更新时间:2023-11-30 23:27:53 25 4
gpt4 key购买 nike

我试图通过获取所有像素并保存在颜色列表中来计算给定图像的最佳调色板(对于 gif,最多 256 种颜色)。

var bmp = new WriteableBitmap(bitmapSource);
bmp.Lock();

int stride = bmp.PixelWidth * 4;
int size = bmp.PixelHeight * stride;
var imgData = new byte[size];
//int index = y * stride + 4 * x; //To acess a specific pixel.

Marshal.Copy(bmp.BackBuffer, imgData, 0, imgData.Length);

bmp.Unlock();

var colorList = new List<Color>();

//I'm not sure if this is right.
for (int index = 0; index < imgData.Length - 1; index += 4)
{
colorList.Add(Color.FromArgb(imgData[index], imgData[index + 1],
imgData[index + 2], imgData[index + 3]));
}

//Here is the main problem.
var palette = colorList.Distinct().Take(255);

目前,我能够区分所有颜色,并且只提取前 255 种颜色。但我需要先按用途订购。我该怎么做?

另外,请问大家还有什么其他的方法吗?

最佳答案

如果您需要首先按使用(频率)排序,请考虑使用 LINQ GroupByOrderByDescending 对您的查询进行分组和排序结果,然后使用 FirstOrDefaultFirst 只取组中的第一个元素:

var result = colorList
.GroupBy<int, int>(x => x) //grouping based on its value
.OrderByDescending(g => g.Count()) //order by most frequent values
.Select(g => g.FirstOrDefault()) //take the first among the group
.ToList(); //not necessarily put if you want to return IEnumerable

关于c# - 获取像素 + OrderBy 最常见的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36288498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com