资源简介
一个简单的表情识别软件。利用贝塞尔曲线匹配嘴唇,眼睛识别表情。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
namespace sobel_filtering
{
class All_filters
{
public All_filters()
{
}
public Bitmap gray(Bitmap Im)
{
Bitmap b = (Bitmap)Im;
for (int i = 1; i < b.Height; i++) // loop for the image pixels height
{
for (int j = 1; j < b.Width; j++) // loop for the image pixels width
{
Color col;
col = b.GetPixel(j i);
b.SetPixel(j i Color.FromArgb((col.R + col.G + col.B) / 3 (col.R + col.G + col.B) / 3 (col.R + col.G + col.B) / 3));
}
}
return (Bitmap)b;
}
public Bitmap mean_filter(Bitmap bp)
{
Bitmap bp1;
bp1 = bp;
int red blue green count;
for (int i = 0; i < bp.Width; i++)
{
for (int j = 0; j < bp.Height; j++)
{
red=0;
blue = 0;
green=0 ;
count = 0;
if (i + 1 < bp.Width && j + 1 < bp.Height)
{
red += bp.GetPixel(i + 1 j + 1).R;
blue += bp.GetPixel(i + 1 j + 1).B;
green += bp.GetPixel(i + 1 j + 1).G;
count++;
}
if (i + 1 < bp.Width && j - 1 >=0)
{
red += bp.GetPixel(i + 1 j - 1).R;
blue += bp.GetPixel(i + 1 j - 1).B;
green += bp.GetPixel(i + 1 j - 1).G;
count++;
}
if (i - 1 >=0 && j + 1 < bp.Height)
{
red += bp.GetPixel(i - 1 j + 1).R;
blue += bp.GetPixel(i - 1 j + 1).B;
green += bp.GetPixel(i - 1 j + 1).G;
count++;
}
if (i - 1 >=0 && j - 1 >=0)
{
red += bp.GetPixel(i - 1 j - 1).R;
blue += bp.GetPixel(i - 1 j - 1).B;
green += bp.GetPixel(i - 1 j - 1).G;
count++;
}
if (j + 1 < bp.Height)
{
red += bp.GetPixel(i j + 1).R;
blue += bp.GetPixel(i j + 1).B;
green += bp.GetPixel(i j + 1).G;
count++;
}
if (i + 1 < bp.Width)
{
red += bp.GetPixel(i + 1 j ).R;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2010-09-18 15:43 Emotion Detaction\
目录 0 2010-09-18 15:52 Emotion Detaction\sobel filtering\
文件 21566 2008-07-17 23:37 Emotion Detaction\sobel filtering\All_filters.cs
目录 0 2010-09-18 15:49 Emotion Detaction\sobel filtering\bin\
目录 0 2010-09-18 15:56 Emotion Detaction\sobel filtering\bin\Debug\
文件 708608 2002-01-01 11:52 Emotion Detaction\sobel filtering\bin\Debug\db1.mdb
文件 183296 2010-09-18 15:52 Emotion Detaction\sobel filtering\bin\Debug\sobel filtering.exe
文件 14328 2010-09-18 15:53 Emotion Detaction\sobel filtering\bin\Debug\sobel filtering.vshost.exe
文件 7412 2008-07-31 11:28 Emotion Detaction\sobel filtering\Convolution.cs
文件 5321 2008-07-31 11:28 Emotion Detaction\sobel filtering\Convolution.resx
文件 11044 2008-07-31 11:28 Emotion Detaction\sobel filtering\Filters.cs
文件 228634 2010-09-18 15:51 Emotion Detaction\sobel filtering\Form1.cs
文件 17017 2008-06-04 23:55 Emotion Detaction\sobel filtering\Form1.Designer.cs
文件 6427 2008-06-04 23:55 Emotion Detaction\sobel filtering\Form1.resx
文件 98001 2010-09-18 15:52 Emotion Detaction\sobel filtering\Form2.cs
文件 14823 2008-06-04 23:53 Emotion Detaction\sobel filtering\Form2.Designer.cs
文件 5814 2008-06-04 23:53 Emotion Detaction\sobel filtering\Form2.resx
文件 5264 2008-07-28 05:39 Emotion Detaction\sobel filtering\Form_preview.cs
文件 3829 2008-07-28 05:39 Emotion Detaction\sobel filtering\Form_preview.Designer.cs
文件 5814 2008-07-28 05:39 Emotion Detaction\sobel filtering\Form_preview.resx
文件 5947 2008-07-08 04:54 Emotion Detaction\sobel filtering\LogicalOperator.cs
文件 3181 2008-07-31 12:00 Emotion Detaction\sobel filtering\Parameter.cs
文件 5319 2008-07-31 12:00 Emotion Detaction\sobel filtering\Parameter.resx
文件 482 2008-02-11 17:58 Emotion Detaction\sobel filtering\Program.cs
目录 0 2010-09-18 15:42 Emotion Detaction\sobel filtering\Properties\
文件 1286 2008-02-11 17:58 Emotion Detaction\sobel filtering\Properties\AssemblyInfo.cs
文件 4369 2010-09-18 15:42 Emotion Detaction\sobel filtering\Properties\Resources.Designer.cs
文件 7415 2008-01-16 12:31 Emotion Detaction\sobel filtering\Properties\Resources.resx
文件 1096 2010-09-18 15:43 Emotion Detaction\sobel filtering\Properties\Settings.Designer.cs
文件 249 2008-02-11 17:58 Emotion Detaction\sobel filtering\Properties\Settings.settings
目录 0 2010-09-18 15:42 Emotion Detaction\sobel filtering\Resources\
............此处省略56个文件信息
相关资源
- C#生成条形码
- C# 利用ListView空间导航数据库信息
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
评论
共有 条评论