登录
首页 » c++ » 用VS+OPENCV实现表情识别

用VS+OPENCV实现表情识别

于 2022-03-17 发布 文件大小:28.50 MB
0 180
下载积分: 2 下载次数: 1

代码说明:

用C++编写,MFC形式,用安装了OPENCV的VS上运行可直接打开 算法大概描述:首先针对静态表情图像进行表情图像的灰度、尺寸归一化,然后利用Gabor小波变换提取人脸表情特征以构造表情弹性图,最后提出基于弹性模板匹配及K-近邻的分类算法实现人脸表情的识别。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 四轴飞行器代码
    采用STM32F103开发的一款简易四旋翼无人机飞控及遥控代码,适合想做无人机的同学研究借鉴。(A simple four rotor UAV flight control and remote control code developed by STM32F103 is suitable for students who want to do UAV research and use for reference.)
    2018-06-27 11:06:34下载
    积分:1
  • C# 制作以动画的方式显示图像.
    C# 制作以动画的方式显示图像. -C# production to be shown images of the animation. C# produced to be shown images of the animation.
    2022-05-18 09:41:33下载
    积分:1
  • battle_events
    三大无施工条件连续关键对话第一个开发汇总(jhsbf vavhlv ahvs dvbaks dizeavi baviar vjhbdv)
    2020-06-21 21:40:01下载
    积分:1
  • cobprsition_consist_Illinois
    说明:  该体系结构设计使之能够更加适应于市场上对各种服务器及工作站的日益增长的性能需求(The architecture is designed to be more responsive to the growing performance needs of various servers and workstations on the market)
    2018-12-24 13:17:54下载
    积分:1
  • ltm_start_pl(fd=0.7)
    是一个c形成的卫星天线曲面在CAD上的曲线,可以用做模型产生曲面做锅,也可形成3d打印机的计算基础,打印3d卫星天线,可以做正馈,也可做偏馈.做机载天线等.要在桌面建立ltm_start2目录.dev_c++ 通过.(C satellite antenna surface is formed on a CAD curve, the model can be used to generate surfaces do pot, can also form the basis of calculation 3d printer, print 3d satellite dish, you can do positive feedback, also do partial feed. Doing machine antenna etc. To establish ltm_start2 directory on your desktop. dev_c++ through.)
    2014-04-15 11:43:31下载
    积分:1
  • AD9912
    说明:  stm32的ad9912的寄存器配置例程,频率,相位,功率的配置。(Stm32 ad9912 register configuration routine, frequency, phase, power configuration.)
    2020-06-20 17:20:02下载
    积分:1
  • ClassicGameProgramming
    几个经典小游戏程序设计,有扫雷、贪吃蛇、推箱子,比较基础的(Several classic game programming, there is mine, Snake, Sokoban, comparison-based)
    2010-09-29 13:44:14下载
    积分:1
  • New
    BPSK code on Code Composer Studio v3.1
    2015-02-23 04:33:39下载
    积分:1
  • Webserver
    Webserver的移植与网络通讯实验.rar(Webserver)
    2009-03-30 15:45:42下载
    积分:1
  • C#以二进制格式打开和保存文件
    C#使用BinaryWriter、BinaryReader对象分别保存和读取二进制文件,程序分两部分,先来看第一部分:   C#以二进制格式保存文件:设置保存文件的格式:   saveFileDialog1.Filter = "二进制文件(*.dat)|*.dat";   if (saveFileDialog1.ShowDialog() == DialogResult.OK)   {    //使用“另存为”对话框中输入的文件名实例化FileStream对象    FileStream myStream = new FileStream(saveFileDialog1.FileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);    //使用FileStream对象实例化BinaryWriter二进制写入流对象    BinaryWriter myWriter = new BinaryWriter(myStream);    //以二进制方式向创建的文件中写入内容    myWriter.Write(textBox1.Text);    //关闭当前二进制写入流    myWriter.Close();    //关闭当前文件流    myStream.Close();    textBox1.Text = string.Empty;   }   打开文件时同样也是以二进制来打开读取文件内容:   //设置打开文件的格式   openFileDialog1.Filter = "二进制文件(*.dat)|*.dat";   if (openFileDialog1.ShowDialog() == DialogResult.OK)   {    textBox1.Text = string.Empty;    //使用“打开”对话框中选择的文件名实例化FileStream对象    FileStream myStream = new FileStream(openFileDialog1.FileName, FileMode.Open, FileAccess.Read);    //使用FileStream对象实例化BinaryRea
    2022-02-14 18:03:07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载