登录
首页 » 算法 » fisher 算法对图片人脸肤色和纯色的分类

fisher 算法对图片人脸肤色和纯色的分类

于 2023-07-15 发布 文件大小:1.19 kB
0 163
下载积分: 2 下载次数: 1

代码说明:

针对人脸的肤色和唇色颜色,进行统计得出变换矩阵和阈值,再对图片进行fisher分类器分类,准确打印出每个像素分类情况,最终得到二值图,得到嘴唇区域

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

发表评论

0 个回复

  • 麻省理工学院光子晶体的计程序,很强大,很有价值…
    麻省理工的计算光子晶体的程序,功能非常强大,很有研究价值的软件-MIT photonic crystal calculation procedures, which is very strong, very valuable software
    2022-04-17 05:02:37下载
    积分:1
  • 2维数组 截断 追加 测试
    应用背景 二维数组的截断和追加并不像TStringList那么简单。在研究二维数组的截断和追加时,写了本例子来研究。提供给有相同问题的后来人参考,代码有点青涩,毕竟是研究算法的的demo,不喜勿喷! 关键技术 二维数组的截断和追加是一个抽象的概念,本demo把它实例化,可以给爱偷懒的程序学习者参考,不足之处欢迎拍砖。{删除动态数组指定元素的过程: 参数 arr 是数组名, 参数 Index 是要删除的索引} procedure TForm1.DeleteArrItem(Index:Integer); var    j:integer; begin   if   Length(MyProArr)>1 then   begin    for j := Index to Length(MyProArr)-2 do        begin         MyProArr[j,0]:=MyProArr[j+1,0];         MyProArr[j,1]:=MyProArr[j+1,1];      end;     setlength(MyProArr,Length(MyProArr)-1,2);    end else    begin      setlength(MyProArr,0,2);    end;
    2022-11-15 14:10:02下载
    积分:1
  • java程序实现的通俗易懂的二分查找的源代码
    java程序实现的通俗易懂的二分查找的算法源代码-java program to achieve the user-friendly dichotomous search algorithm source code
    2022-08-18 10:42:39下载
    积分:1
  • 永磁同步电机matlab仿真
    应用背景一个完整的永磁同步电机矢量控制仿真,包含速度环,电流环,仿真结果满意无误关键技术实现park变换,ipark变换,空间矢量svpwm,采用simulink中的simpower库元件搭建完成
    2022-07-21 18:28:48下载
    积分:1
  • Computing one
    计算一维光子晶体,利用是与有限差分法。 内容比较典型。-Computing one-dimensional photonic crystals using finite difference method with. The study were typical.
    2022-09-21 19:25:03下载
    积分:1
  • NSGA-Ⅱ多目标优化
    nsga2算法优化ZDT2测试函数。收敛到Pareto最优前沿,对于从事这方面算法工作的初学者们有很大的帮助。可以借鉴学习下
    2022-03-05 21:57:29下载
    积分:1
  • This algorithm was developed by Professor Ronald L. Rivest of MIT and can be fou
    This algorithm was developed by Professor Ronald L. Rivest of MIT and can be found presented in several languages. What I provide to you here is a C++ derivative of the original C implementation of Professor Rivets. The library code itself is platform-independant and has been tested in Redhat Linux. I ve included the sample code and makefile that I used for the Linux test. The demo, however, was written with Visual C++ 6 on a Windows 2000 platform.-This algorithm was developed by Professor Ronald L. Rivest of MIT and can be found presented in several languages. What I provide to you here is a C derivative of the original C implementation of Professor Rivets. The library code itself is platform-independant and has been tested in Redhat Linux. I ve included the sample code and makefile that I used for the Linux test. The demo, however, was written with Visual C 6 on a Windows 2,000 platform.
    2022-01-27 12:21:27下载
    积分:1
  • 分层AP聚类
    近邻传播(Affinity Propagation,AP)聚类具有不需要设定聚类个数、快速准确的优点,但无法适应于大规模数据的应用需求.针对此问题,提出了分层近邻传播聚类算 法.首先,将待聚类数据集划分为若干适合AP算法高效执行的子集,分别推举出各个子集的聚类中心;然后对所有子集聚类中心再次执行AP聚类,推举出整个数 据集的全局聚类中心;最后根据与这些全局聚类中心的相似度对聚类样本进行划分,从而实现对大规模数据的高效聚类.在真实和模拟数据集上的实验结果均表明, 与AP聚类和自适应AP聚类相比,该方法在保证较好聚类效果的同时,极大地降低了聚类的时间消耗.
    2022-07-14 10:15:00下载
    积分:1
  • 仿生模式识别 目标跟踪
    用仿生模式识别来训练目标,在视频序列中跟踪目标 function [sausage, num] = hypersausage_construct(P) %按照样本给定的顺序去求解超香肠神经元 [~, W] = size(P);%W是训练样例的个数 sausage = []; for i = 2:W     temp = power_two(P(:, i - 1), P(:, i));%构建第i-1个神经元  //temp是一个行向量     %temp = power_three(P(:, i - 2), P(:, i-1),P(:,i));     sausage = [sausage temp]; end sausage = [sausage P(:, end)]; num = (size(sausage, 2) - 1) / (W - 1);
    2023-08-13 14:40:03下载
    积分:1
  • some example which explain kalman clearly,if you know little about kalman,it wil...
    some example which explain kalman clearly,if you know little about kalman,it will be good choice.
    2023-05-25 16:25:03下载
    积分:1
  • 696518资源总数
  • 105964会员总数
  • 17今日下载