基于C#的眼部瞳孔追踪 与 双图片融合成像

2023-11-04 08:20

本文主要是介绍基于C#的眼部瞳孔追踪 与 双图片融合成像,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前期我们先用画饼充饥的方法来做研发与测试

手动画人眼

测试算法

蓝线中心点为瞳孔中心,可以看到比较准。

具体代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;namespace WindowsFormsApplication8
{public partial class Form1 : Form{Point p = new Point();static Bitmap b;int h;int w;Bitmap b1;BitmapData bd;BitmapData bd1;public Form1(){InitializeComponent();this.Show();String s = "";b = null;OpenFileDialog ofd = new OpenFileDialog();if (ofd.ShowDialog() == DialogResult.OK){s = ofd.FileName;b = (Bitmap)Bitmap.FromFile(s, false);int[] point = getdivimg(b);try{//Bitmap bmp = new Bitmap(b.Width, b.Height, PixelFormat.Format32bppArgb);MessageBox.Show(point[0] + "---" + point[1]);p.X = point[1];p.Y = point[0];this.pictureBox1.Load(s);//g = Graphics.FromImage(bmp);//g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;//g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;//Image img = Image.FromFile(s);//g.DrawImage(img, 0, 0);pictureBox1.Refresh();//g.FillEllipse(Brushes.Red, 0, 0, 100, 100);this.pictureBox1.Image = img;//g.Dispose();}catch (Exception e1){MessageBox.Show(e1.Message);}}}private void Form1_Load(object sender, EventArgs e){this.Show();}public void setgray(Bitmap b){ColorPalette cp = b.Palette;for (int i = 0; i < 256; i++){cp.Entries[i] = Color.FromArgb(i, i, i);}b.Palette = cp;}public int[] getdivimg(Bitmap b){h = b.Height;w = b.Width;Rectangle rect = new Rectangle(0, 0, w, h);bd = b.LockBits(rect, ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);b1 = new Bitmap(b.Width, b.Height, PixelFormat.Format8bppIndexed);bd1 = b1.LockBits(rect, ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);int len = bd.Stride * h;byte[] imgbyte = new byte[len];Marshal.Copy(bd.Scan0, imgbyte, 0, len);int i = 0;int j = 0;int[] hist = new int[256];int maxgray = 0;int maxpos = 0;int bogugray = 0;int bogupos = 0;try{for (i = 0; i < h; i++){for (j = 0; j < w; j++){int t = imgbyte[i * bd.Stride + j];hist[t]++;if (hist[t] > maxgray){maxgray = hist[t];maxpos = t;}}}bogugray = maxgray;for (int k = 9; k < maxpos; k++){if (hist[k] < bogugray){bogugray = hist[k];bogupos = k;}}int[] apoint = getcenterpoint(imgbyte, 0, h, 0, w, bogupos);MessageBox.Show(apoint[0] + "---" + apoint[1]);int[] point = getcenterpoint(imgbyte, apoint[0] - 100, apoint[0] + 100, apoint[1] - 100, apoint[1] + 100, bogupos);MessageBox.Show(point[0] + "---" + point[1]);return point;}catch (Exception e1){MessageBox.Show(e1.Message);return null;}}double r;public int[] getcenterpoint(byte[] imgbyte, int xstart = 0, int xend = 378, int ystart = 0, int yend = 681, int thresh=0){if(xstart < 0)xstart=0;if (xend > h)xend = h;if (ystart < 0)ystart = 0;if (yend > w)yend = w;bool firstpoint = false;int firstx = 0;int firsty = 0;int xpossum = 0, ypossum = 0, count = 0;for (int i = xstart; i < xend; i++){for (int j = ystart; j < yend; j++){//Console.WriteLine(i * bd.Stride + j);int t = imgbyte[i * bd.Stride + j];if (t <= thresh){if (!firstpoint) {firstx = i;firsty = j;firstpoint = true;}imgbyte[i * bd.Stride + j] = (byte)0;xpossum += i;ypossum += j;count++;}else{imgbyte[i * bd.Stride + j] = (byte)255;}}}//b.UnlockBits(bd);int[] point = new int[2];point[0] = xpossum / count;point[1] = ypossum / count;r = Math.Sqrt(Math.Abs(firstx - point[0]) * Math.Abs(firstx - point[0]) + Math.Abs(firsty - point[1]) * Math.Abs(firsty - point[1]));Console.WriteLine(r);return point;}private void pictureBox1_Paint(object sender, PaintEventArgs e){}private void pictureBox1_Paint_1(object sender, PaintEventArgs e){Pen pen=new Pen (Color .Blue,50);Point q = new Point(p.X + 1, p.Y + 1);e.Graphics.DrawLine(pen, p, q);}private void pictureBox1_Click(object sender, EventArgs e){}}
}

那么对真实人眼准不准呢

 


接下来是读入两副眼睛图片并做拼接融合

上面是先用picturebox做的伪融合,真正的融合需要在内存地址中融合,用到Marshal

伪融合代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;namespace WindowsFormsApplication8
{public partial class Form1 : Form{Point p = new Point();Point p2 = new Point();static Bitmap b;static Bitmap b2;int h;int w;Bitmap b1;BitmapData bd;BitmapData bd1;public Form1(){InitializeComponent();this.Show();String s = "";b = null;OpenFileDialog ofd = new OpenFileDialog();if (ofd.ShowDialog() == DialogResult.OK){s = ofd.FileName;b = (Bitmap)Bitmap.FromFile(s, false);int[] point = getdivimg(b);try{//Bitmap bmp = new Bitmap(b.Width, b.Height, PixelFormat.Format32bppArgb);MessageBox.Show(point[0] + "---" + point[1]);p.X = point[1];p.Y = point[0];this.pictureBox1.Load(s);//g = Graphics.FromImage(bmp);//g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;//g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;//Image img = Image.FromFile(s);//g.DrawImage(img, 0, 0);pictureBox1.Refresh();//g.FillEllipse(Brushes.Red, 0, 0, 100, 100);this.pictureBox1.Image = img;//g.Dispose();}catch (Exception e1){MessageBox.Show(e1.Message);}}if (ofd.ShowDialog() == DialogResult.OK){s = ofd.FileName;b2 = (Bitmap)Bitmap.FromFile(s, false);int[] point = getdivimg(b2);try{//Bitmap bmp = new Bitmap(b.Width, b.Height, PixelFormat.Format32bppArgb);MessageBox.Show(point[0] + "---" + point[1]);p2.X = point[1];p2.Y = point[0];this.pictureBox2.Load(s);//g = Graphics.FromImage(bmp);//g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;//g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;//g.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;//Image img = Image.FromFile(s);//g.DrawImage(img, 0, 0);pictureBox2.Refresh();//g.FillEllipse(Brushes.Red, 0, 0, 100, 100);this.pictureBox1.Image = img;//g.Dispose();}catch (Exception e1){MessageBox.Show(e1.Message);}}}private void Form1_Load(object sender, EventArgs e){this.Show();}public void setgray(Bitmap b){ColorPalette cp = b.Palette;for (int i = 0; i < 256; i++){cp.Entries[i] = Color.FromArgb(i, i, i);}b.Palette = cp;}public int[] getdivimg(Bitmap b){h = b.Height;w = b.Width;Rectangle rect = new Rectangle(0, 0, w, h);bd = b.LockBits(rect, ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);b1 = new Bitmap(b.Width, b.Height, PixelFormat.Format8bppIndexed);bd1 = b1.LockBits(rect, ImageLockMode.ReadWrite, PixelFormat.Format8bppIndexed);int len = bd.Stride * h;byte[] imgbyte = new byte[len];Marshal.Copy(bd.Scan0, imgbyte, 0, len);int i = 0;int j = 0;int[] hist = new int[256];int maxgray = 0;int maxpos = 0;int bogugray = 0;int bogupos = 0;try{for (i = 0; i < h; i++){for (j = 0; j < w; j++){int t = imgbyte[i * bd.Stride + j];hist[t]++;if (hist[t] > maxgray){maxgray = hist[t];maxpos = t;}}}bogugray = maxgray;for (int k = 9; k < maxpos; k++){if (hist[k] < bogugray){bogugray = hist[k];bogupos = k;}}int[] apoint = getcenterpoint(imgbyte, 0, h, 0, w, bogupos);MessageBox.Show(apoint[0] + "---" + apoint[1]);int[] point = getcenterpoint(imgbyte, apoint[0] - 100, apoint[0] + 100, apoint[1] - 100, apoint[1] + 100, bogupos);MessageBox.Show(point[0] + "---" + point[1]);return point;}catch (Exception e1){MessageBox.Show(e1.Message);return null;}}double r;public int[] getcenterpoint(byte[] imgbyte, int xstart = 0, int xend = 378, int ystart = 0, int yend = 681, int thresh=0){if(xstart < 0)xstart=0;if (xend > h)xend = h;if (ystart < 0)ystart = 0;if (yend > w)yend = w;bool firstpoint = false;int firstx = 0;int firsty = 0;int xpossum = 0, ypossum = 0, count = 0;for (int i = xstart; i < xend; i++){for (int j = ystart; j < yend; j++){//Console.WriteLine(i * bd.Stride + j);int t = imgbyte[i * bd.Stride + j];if (t <= thresh){if (!firstpoint) {firstx = i;firsty = j;firstpoint = true;}imgbyte[i * bd.Stride + j] = (byte)0;xpossum += i;ypossum += j;count++;}else{imgbyte[i * bd.Stride + j] = (byte)255;}}}//b.UnlockBits(bd);int[] point = new int[2];point[0] = xpossum / count;point[1] = ypossum / count;r = Math.Sqrt(Math.Abs(firstx - point[0]) * Math.Abs(firstx - point[0]) + Math.Abs(firsty - point[1]) * Math.Abs(firsty - point[1]));Console.WriteLine(r);return point;}private void pictureBox1_Paint(object sender, PaintEventArgs e){}private void pictureBox1_Paint_1(object sender, PaintEventArgs e){Pen pen = new Pen(Color.Blue, 50);Point q = new Point(p.X, p.Y + 1);e.Graphics.DrawLine(pen, p, q);Point q2 = new Point(p.X, p.Y - 1);e.Graphics.DrawLine(pen, p, q2);Point q3 = new Point(p.X+1, p.Y );e.Graphics.DrawLine(pen, p, q3);Point q4 = new Point(p.X-1, p.Y);e.Graphics.DrawLine(pen, p, q4);}private void pictureBox1_Click(object sender, EventArgs e){}private void pictureBox2_Paint(object sender, PaintEventArgs e){Pen pen = new Pen(Color.Blue, 50);Point q = new Point(p2.X, p2.Y + 1);e.Graphics.DrawLine(pen, p2, q);Point q2 = new Point(p2.X, p2.Y - 1);e.Graphics.DrawLine(pen, p2, q2);Point q3 = new Point(p2.X + 1, p2.Y);e.Graphics.DrawLine(pen, p2, q3);Point q4 = new Point(p2.X - 1, p2.Y);e.Graphics.DrawLine(pen, p2, q4);}}
}

真正融合代码:

在自己开发的程序中,初次尝试byte上的融合

出现了这种情况

右边为融合之后的,出现了间隔栅格+噪声


做了一些调试以后,感觉问题应该是在于 变量没上锁,变量还没进入 就被读出,所以会产生噪声和黑色蒙版

尝试在变量上加锁

这篇关于基于C#的眼部瞳孔追踪 与 双图片融合成像的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/344444

相关文章

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

C#如何动态创建Label,及动态label事件

《C#如何动态创建Label,及动态label事件》:本文主要介绍C#如何动态创建Label,及动态label事件,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#如何动态创建Label,及动态label事件第一点:switch中的生成我们的label事件接着,

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

C#基础之委托详解(Delegate)

《C#基础之委托详解(Delegate)》:本文主要介绍C#基础之委托(Delegate),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1. 委托定义2. 委托实例化3. 多播委托(Multicast Delegates)4. 委托的用途事件处理回调函数LINQ

在C#中调用Python代码的两种实现方式

《在C#中调用Python代码的两种实现方式》:本文主要介绍在C#中调用Python代码的两种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#调用python代码的方式1. 使用 Python.NET2. 使用外部进程调用 Python 脚本总结C#调