文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

C#如何实现简易灰度图和酷炫HeatMap热力图winform

2023-06-25 21:44

关注

C#如何实现简易灰度图和酷炫HeatMap热力图winform,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。

一、效果展示

C#如何实现简易灰度图和酷炫HeatMap热力图winform

C#如何实现简易灰度图和酷炫HeatMap热力图winform

二、随机生成热力点

热力点类

class HeatPoint    {        public int X;        public int Y;        public byte Intensity;        public HeatPoint(int iX, int iY, byte bIntensity)        {            X = iX;            Y = iY;            Intensity = bIntensity;        }    }

随机生成热力点

privatevoid generateBtn_Click(object sender, EventArgs e){    Random rRand = new Random();    for (int i = 0; i < 500; i++)    {        int iX = rRand.Next(0, 800);        int iY = rRand.Next(0, 800);        byte iIntense = (byte)rRand.Next(0, 180);        heatPoints.Add(new HeatPoint(iX, iY, iIntense));    }    UpdateView();}

三、灰度图生成解析

private Bitmap CreateIntensityMask(Bitmap bitmap, List<HeatPoint> aHeatPoints){    Graphics graphics = Graphics.FromImage(bitmap);    graphics.Clear(System.Drawing.Color.White);    foreach (HeatPoint point in aHeatPoints)    {        if (point.Intensity * 30 / 180 == 0)            continue;        DrawHeatPoint(graphics, point, point.Intensity * 30 / 180);        //DrawHeatPoint(graphics, point, 15);    }    return bitmap;}//此方法用于在绘图表面上绘制实际的径向渐变“点”。这可能是整个项目中最重要的方法,因为它可以处理不同大小和密度的绘图点。private void DrawHeatPoint(Graphics graphics, HeatPoint HeatPoint, int radius){    List<System.Drawing.Point> pointsList = new List<System.Drawing.Point>();      for (double degrees = 0; degrees <= 360; degrees += 10)    {        // 在定义半径的圆的圆周上绘制新点        // 使用点坐标、半径和角度        // 计算这个迭代点在圆上的位置        System.Drawing.Point point = new System.Drawing.Point();        point.X = Convert.ToInt32(HeatPoint.X + radius * Math.Cos((Math.PI / 180) * degrees));        point.Y = Convert.ToInt32(HeatPoint.Y + radius * Math.Sin((Math.PI / 180) * degrees));        pointsList.Add(point);    }    // 创建新的颜色混合来告诉 PathGradientBrush 使用什么颜色以及放置它们的位置    ColorBlend colorBlend = new ColorBlend(3);    // 计算比例以将字节强度范围从 0-255 缩放到 0-1    float fRatio = 1F / Byte.MaxValue;    // 预计算字节最大值的一半    byte bHalf = Byte.MaxValue / 2;    // 将其中心值的强度从低高翻转到高低    int iIntensity = (byte)(HeatPoint.Intensity - ((HeatPoint.Intensity - bHalf) * 2));    // 存储缩放和翻转的强度值以用于梯度中心位置    float fIntensity = iIntensity * fRatio;    // 定义渐变颜色的位置,使用intesity将中间颜色调整为    colorBlend.Positions = new float[3] { 0, fIntensity, 1 };    colorBlend.Colors = new System.Drawing.Color[3]    {        System.Drawing.Color.FromArgb(0, System.Drawing.Color.White),        System.Drawing.Color.FromArgb(HeatPoint.Intensity, System.Drawing.Color.Black),        System.Drawing.Color.FromArgb(HeatPoint.Intensity, System.Drawing.Color.Black)    };    // 创建新的 PathGradientBrush 以使用圆周点创建径向渐变    PathGradientBrush brush = new PathGradientBrush(pointsList.ToArray());    // 将颜色混合传递给 PathGradientBrush 以指示它如何生成渐变    brush.InterpolationColors = colorBlend;    graphics.FillPolygon(brush, pointsList.ToArray());}

四、热力图生成解析

public static Bitmap Colorize(Bitmap Mask, byte Alpha){    Bitmap Output = new Bitmap(Mask.Width, Mask.Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);    Graphics Surface = Graphics.FromImage(Output);    Surface.Clear(System.Drawing.Color.Transparent);    // 构建一组颜色映射以将我们的灰度蒙版重新映射为全色    // 接受一个 alpha 字节来指定输出图像的透明度    ColorMap[] Colors = CreatePaletteIndex(Alpha);    // 创建新的图像属性类来处理颜色重新映射    // 注入我们的颜色映射数组来指示图像属性类如何进行着色    ImageAttributes Remapper = new ImageAttributes();    Remapper.SetRemapTable(Colors);    // 使用新的颜色映射方案将我们的蒙版绘制到我们的内存位图工作表面上    Surface.DrawImage(Mask, new System.Drawing.Rectangle(0, 0, Mask.Width, Mask.Height), 0, 0, Mask.Width, Mask.Height, GraphicsUnit.Pixel, Remapper);    return Output;}private static ColorMap[] CreatePaletteIndex(byte Alpha){    ColorMap[] OutputMap = new ColorMap[256];    Assembly myAssembly = Assembly.GetExecutingAssembly();    Stream myStream = myAssembly.GetManifestResourceStream("热力图Demo.Image.gradient-palette.jpg");    Bitmap Palette = new Bitmap(myStream);    for (int X = 0; X <= 255; X++)    {        OutputMap[X] = new ColorMap();        OutputMap[X].OldColor = System.Drawing.Color.FromArgb(X, X, X);        OutputMap[X].NewColor = System.Drawing.Color.FromArgb(Alpha, Palette.GetPixel(X, 0));    }    return OutputMap;}

看完上述内容,你们掌握C#如何实现简易灰度图和酷炫HeatMap热力图winform的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网行业资讯频道,感谢各位的阅读!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯