登录
首页 » 算法 » 新的人脸检测算法在 IEEE 2013 和 2014 年发表论文

新的人脸检测算法在 IEEE 2013 和 2014 年发表论文

于 2023-04-25 发布 文件大小:2.04 MB
0 156
下载积分: 2 下载次数: 1

代码说明:

对于制作脸检测基准数据库 (2014 年) 的框架不受约束的视频监控的呼吸行为和睡眠呼吸暂停 (2014 年) 诊断中的应用基于人脸检测算法修改皮肤颜色模型 (2013 年)视频流中的人脸定位检测基于 HARR 状特征与量化分类器的民间视频监控 (2013 年)

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

发表评论

0 个回复

  • crc计字符串的代码
    han"scrc计算字符串的代码,里面还包含有日期转换,字符串转换为日期等例子,CRC计算安装16或10进制输入,系统自行判断。
    2022-03-28 21:23:18下载
    积分:1
  • 摄影测量中单独像对立体前交的实现,挺有用的
    摄影测量中单独像对立体前交的算法实现,挺有用的-Photogrammetry separate ago as a three-dimensional reference to the algorithm, quite the
    2022-12-14 19:35:03下载
    积分:1
  • 二重和一次积分程序
    二重和一次积分程序-two and a re-integration process
    2022-02-26 16:54:39下载
    积分:1
  • 维纳仿镇ar模型
    维纳仿镇ar模型-Wiener imitation model town ar
    2022-05-31 07:21:56下载
    积分:1
  • DS18B20在CC2530上的应用程序
    应用背景最近写的一个DS18B20进行温度测试程序,应用在Zigbee模块CC2530上。DS18B20采用单总线传输方式,应用中能够最小化利用片上那个资源。关键技术CC2530 是用于2.4-GHz IEEE 802.15.4、ZigBee 和RF4CE 应用的一个真正的片上系统(SoC)解决方案。它能够以非常低的总的材料成本建立强大的网络节点。DS18B20是常用的温度传感器,具有体积小,硬件开销低,抗干扰能力强,精度高的特点。  
    2022-02-26 09:21:55下载
    积分:1
  • 图像分割
    应用背景在计算机视觉领域,图像分割(Segmentation)指的是将数字图像细分为多个图像子区域(像素的集合)(也被称作超像素)的过程。图像分割的目的是简化或改变图像的表示形式,使得图像更容易理解和分析。图像分割通常用于定位图像中的物体和边界(线,曲线等)。更精确的,图像分割是对图像中的每个像素加标签的一个过程,这一过程使得具有相同标签的像素具有某种共同视觉特性。关键技术 灰度阈值分割法是一种最常用的并行区域技术,它是 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-03-11 02:54:52下载
    积分:1
  • 1, one dollar three regression equations CubicMultinomialRegress.cs equation mod...
    一、 一元三次回归方程 CubicMultinomialRegress.cs 方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是d,c,b,a。 以后所述所有模型的系数存放均与此相同(多元线性回归方程除外)。 public override double forecast(double x) 预测函数,根据模型得到预测结果 public override double computeR2() 计算相关系数(决定系数),系数越接近1,数据越满足该模型。 -1, one dollar three regression equations CubicMultinomialRegress.cs equation model for Y = a* X (3)+ B* X (2)+ C* X (1)+ Dpublic override double [] buildFormula () get coefficient array, store order and model coefficients contrary, that is, the array is followed by the value of coefficient d, c, b, a. After all the model described in the coefficient of storage are the same (except for multiple linear regression equation). public override double forecast (double x) prediction function, according to the results of model prediction public override double computeR2 () calculated the correlation coefficient (determination coefficient), coefficient of the closer one, the dat
    2022-01-26 07:28:21下载
    积分:1
  • 奇尔卡特AES
    这是一个奇尔卡特AES算法的源代码。奇尔卡特加密组件支持128位,192位和256位AES加密两种ECB(电子菜谱)和CBC(密码块链接)模式。
    2023-09-02 11:25:04下载
    积分:1
  • //=== === === === === ==== === === === === === === =// letter Description// func...
    //=== === === === === === ===== //函数说明 //函数名称:Correlation //函数功能:计算最小二乘法拟合的多项式的相关系数 //使用方法:int M------ 拟合多项式的阶数(已知条件) // double *b--- 拟合曲线的系数,排列顺序为由高阶到低阶(已知条件) // double *x--- 结点x轴数据(已知条件) // double *y--- 结点y轴数据(已知条件) // double *Yg-- 结点估计值,个数为m(过程变量) // int m------ 结点个数(已知条件) //注意事项:多项式阶数最高为10,多项式的形式为 y = a0 + a1x +a2x2 -//=== === === === === ==== === === === === === === =// letter Description// function name : Correlation// Function functions : Calculation least squares polynomial fitting of the correlation coefficient// Use : int M------ polynomial fitting stage (known condition)//* b--- double fitting song The coefficient, Higher-order the order on grounds of low order (known condition)//* double-node x x axis data (known to be pieces)// double* y--- node y-axis data (known condition)//* double FSL-- Nodes estimates, Number m (process variables)// int m------ node number (known condition)// Note : polynomial order of a maximum of 10. polynomials in the
    2022-04-29 13:08:12下载
    积分:1
  • 在许多情况下我们需要的如密码字典穷举组合..
    在许多情况下我们需要穷举组合的算法,比如密码词典。这个算法的关键是密码下标进位的问题。另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。如果要提高写文件的效率,可以使用缓冲区,分批写入。-in many cases we need exhaustive combination of algorithms such as password dictionary. The algorithm is the key indices into password-issue. Another example of this document written statement low efficiency, in order to reduce the complexity of the algorithm has not been optimized. If the document was to improve the efficiency, the use of buffer zones, into batches.
    2022-03-20 01:48:47下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载