自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

AI吃大瓜的博客

专研图像处理、深度学习

  • 博客(8)
  • 资源 (32)
  • 问答 (4)
  • 收藏
  • 关注

转载 机器学习中的范数规则化之(一)L0、L1与L2范数

机器学习中的范数规则化之(一)L0、L1与L2范数zouxy09@qq.comhttp://blog.csdn.net/zouxy09 参考资料:《机器学习中常常提到的正则化到底是什么意思?》https://www.zhihu.com/question/20924039       今天我们聊聊机器学习中出现的非常频繁的问题:过拟合与规则化。我们先简单的来理解下常用的L0、L1、L2和核范数规则化

2017-12-28 11:11:45 827

原创 将数据归一化到任意区间范围的方法

将数据归一化到任意区间范围的方法 一般常见的数据归一化,是归一化到0~1,或者-1~1的区间,但在一些特殊场合下,我们需要根据实际情况归一化到其他任意区间,方法是: 将数据归一化到[a,b]区间范围的方法:(1)首先找到样本数据Y的最小值Min及最大值Max(2)计算系数为:k=(b-a)/(Max-Min)(3)得到归一化到[a,b]区间的数据:norY=a+k(Y-Min)Matla

2017-12-19 17:24:47 65238 3

原创 C++读取txt数据为二维数组 将数据保存到txt文本中

    C++读取txt数据为二维数组 保存txt文本数据    C++文件读写操作有:ofstream,ifstream,fstream:#include <fstream> ofstream //文件写操作 内存写入存储设备 ifstream //文件读操作,存储设备读区到内存中 fstream //读写操作,对打开的...

2017-12-14 16:25:38 13935 2

转载 OpenCV FileStorage类的数据读写操作

OpenCV FileStorage类的数据读写操作OpenCV的许多应用都需要使用数据的存储于读取,例如经过3D校准后的相机,需要存储校准结果矩阵,以方便下次调用该数据;基于机器学习的应用,同样需要将学习得到的参数保存等。OpenCV通过XML/YAML格式实现数据持久化。本文简要梳理了使用FileStorage类进行基本数据持久化操作,给出了示例代码。主要内容包括:FileStorage类构造

2017-12-14 11:20:09 5939

原创 Python3实现批量下载百度搜索图片

 Python3实现批量下载百度搜索图片目录 Python3实现批量下载百度搜索图片1.通过关键字下载百度搜索的图片2.根据链接URL下载图片1.通过关键字下载百度搜索的图片     在别人的代码基础做了修改,增加了关键字word定义,下载图片数量的imageNum设置,以及图像保存路径和名字的设置,需要requests模块的支持,直接使用pip安装即可,命令:pip in...

2017-12-06 16:50:39 5312 2

转载 OpenCV HOGDescriptor 参数图解

HOG的基本理论请参考:http://blog.csdn.net/guyuealian/article/details/71702995最近要做图像特征提取,可能要用下HOG特征,所以研究了下OpenCV的HOG描述子。OpenCV中的HOG特征提取功能使用了HOGDescriptor这个类来进行封装,其中也有现成的行人检测的接口。然而,无论是OpenCV官方说明文档还是各个中英文网站目前都没有这

2017-12-06 15:27:39 1152

转载 Python 3 多线程下载百度图片搜索结果

Python 3 实现下载百度图片搜索结果转载来至:http://lovenight.github.io/2015/11/15/Python-3-%E5%A4%9A%E7%BA%BF%E7%A8%8B%E4%B8%8B%E8%BD%BD%E7%99%BE%E5%BA%A6%E5%9B%BE%E7%89%87%E6%90%9C%E7%B4%A2%E7%BB%93%E6%9E%9C/下载简单页面查看网

2017-12-06 14:17:52 5197

转载 OpenCV3.0或OpenCV3.1的SVM操作

OpenCV2.0 SVM代码及其分析OpenCV 在很久以前就集成了SVM的功能,现在OpenCV升级到了3.0和3.1了,很多人都不习惯了怎么调用OpenCV中的SVM功能了。在之前OpenCV的SVM调用一直有个案例:首先,给定几组训练数据,并且给了label所对应的值。然后经过训练之后,对图像的各个位置进行预测是1还是-1。如果是1的话,用绿色来表示,如果是-1呢,用蓝色表示。并且还画出几

2017-12-01 11:05:07 1932

人脸识别1:人脸识别数据集.txt

人脸识别1:人脸识别数据集:https://blog.csdn.net/guyuealian/article/details/130600545 人脸识别2:InsightFace实现人脸识别Face Recognition(含源码下载):https://blog.csdn.net/guyuealian/article/details/130600472 人脸识别3:C/C++ InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600571 人脸识别4:Android InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600600

2023-06-15

人脸识别3:C++ InsightFace实现人脸识别Face Recognition(含源码).txt

人脸识别1:人脸识别数据集:https://blog.csdn.net/guyuealian/article/details/130600545 人脸识别2:InsightFace实现人脸识别Face Recognition(含源码下载):https://blog.csdn.net/guyuealian/article/details/130600472 人脸识别3:C/C++ InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600571 人脸识别4:Android InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600600

2023-06-15

人脸检测和行人检测1:人脸检测和行人检测数据集(含下载链接).txt

人脸检测和行人检测1:人脸检测和人体检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/128821763 人脸检测和行人检测2:YOLOv5实现人脸检测和行人检测(含数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130179987 人脸检测和行人检测3:Android实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180240 人脸检测和行人检测4:C++实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180269

2023-04-28

人脸检测和行人检测2:YOLOv5实现人脸检测和行人检测(含数据集和训练代码)(复件).txt

人脸检测和行人检测1:人脸检测和人体检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/128821763 人脸检测和行人检测2:YOLOv5实现人脸检测和行人检测(含数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130179987 人脸检测和行人检测3:Android实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180240 人脸检测和行人检测4:C++实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180269

2023-04-28

人脸检测和行人检测3:Android实现人脸检测和行人检测(含源码,可实时检测).txt

人脸检测和行人检测1:人脸检测和人体检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/128821763 人脸检测和行人检测2:YOLOv5实现人脸检测和行人检测(含数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130179987 人脸检测和行人检测3:Android实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180240 人脸检测和行人检测4:C++实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180269

2023-04-28

人脸检测和行人检测4:C++实现人脸检测和行人检测(含源码,可实时检测).txt

人脸检测和行人检测1:人脸检测和人体检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/128821763 人脸检测和行人检测2:YOLOv5实现人脸检测和行人检测(含数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130179987 人脸检测和行人检测3:Android实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180240 人脸检测和行人检测4:C++实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180269

2023-04-28

人脸检测和行人检测Android APP Demo.zip

人脸检测和行人检测1:人脸检测和人体检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/128821763 人脸检测和行人检测2:YOLOv5实现人脸检测和行人检测(含数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130179987 人脸检测和行人检测3:Android实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180240 人脸检测和行人检测4:C++实现人脸检测和行人检测(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/130180269

2023-04-26

跌倒检测和识别3:Android实现跌倒检测(含源码,可实时跌倒检测).txt

跌倒检测和识别1:跌倒检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/130184256 跌倒检测和识别2:YOLOv5实现跌倒检测(含跌倒检测数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130250738 跌倒检测和识别3:Android实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250824 跌倒检测和识别4:C++实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250838

2023-04-20

跌倒检测和识别4:C++实现跌倒检测(含源码,可实时跌倒检测).txt

跌倒检测和识别1:跌倒检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/130184256 跌倒检测和识别2:YOLOv5实现跌倒检测(含跌倒检测数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130250738 跌倒检测和识别3:Android实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250824 跌倒检测和识别4:C++实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250838

2023-04-20

跌倒检测和识别1:跌倒检测数据集(含下载链接,包含(站立),bending(弯腰,蹲下)和down(躺下,摔倒)三种状).txt

收集了约4000的跌倒检测数据集和26000+跌倒分类数据集,包含(站立),bending(弯腰,蹲下)和down(躺下,摔倒)三种状 跌倒检测和识别1:跌倒检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/130184256 跌倒检测和识别2:YOLOv5实现跌倒检测(含跌倒检测数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130250738 跌倒检测和识别3:Android实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250824 跌倒检测和识别4:C++实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250838

2023-04-20

跌倒检测和识别2:YOLOv5实现跌倒检测(含跌倒检测数据集和训练代码).txt

跌倒检测和识别1:跌倒检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/130184256 跌倒检测和识别2:YOLOv5实现跌倒检测(含跌倒检测数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130250738 跌倒检测和识别3:Android实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250824 跌倒检测和识别4:C++实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250838

2023-04-20

跌倒检测识别Android Demo.zip

跌倒检测识别Android Demo, 跌倒检测和识别1:跌倒检测数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/130184256 跌倒检测和识别2:YOLOv5实现跌倒检测(含跌倒检测数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/130250738 跌倒检测和识别3:Android实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250824 跌倒检测和识别4:C++实现跌倒检测(含源码,可实时跌倒检测):https://blog.csdn.net/guyuealian/article/details/130250838

2023-04-20

Pytorch实现中药材(中草药)分类识别(含训练代码和数据集).txt

1.深度学习实现中草药(中药材)识别《Pytorch实现中药材(中草药)分类识别(含训练代码和数据集)》 https://blog.csdn.net/guyuealian/article/details/129880963 2.中草药(中药材)图片数据集(Chinese-Medicine-163): https://blog.csdn.net/guyuealian/article/details/129883396

2023-04-07

Android实现双目测距APP Demo.zip

(1)Android Demo图片测试:项目资源(src/main/assets)自带一对左右视图的测试图片,你需要将测试图片拷贝到你的手机,然后在Demo APP点击【图片】打开图片即可;如果你想测试自己的图片,请将左视图文件命名为left***.png,右视图文件命名为right***.png,否则不能正常加载左右视图。图片格式支持jpg,png等多种格式 (2)Android Demo视频测试:项目资源(src/main/assets)自带一对左右视图的视频文件,你需要将测试视频拷贝到你的手机 OpenCV实现双目测距(Python版本):https://blog.csdn.net/guyuealian/article/details/121301896 OpenCV实现双目测距(C/C++版本):https://blog.csdn.net/guyuealian/article/details/127446435 OpenCV实现双目测距(Android版本)https://blog.csdn.net/guyuealian/article/details/127446435 ​

2023-03-25

基于YOLOv5的手势识别系统(含手势识别数据集 训练代码).txt

《基于YOLOv5的手势识别系统(含手势识别数据集+训练代码)》:https://blog.csdn.net/guyuealian/article/details/126750433 手势识别(HGR)作为人机交互的一部分,在汽车领域、家庭自动化系统、各种视频/流媒体平台等领域具有广泛的实际应用。本篇博客,将基于YOLOv5搭建一个手势识别目标检测系统,支持one,two,ok等18种常见的通用手势动作识别,目前基于多目标检测的手势识别方法YOLOv5s的平均精度平均值mAP_0.5=0.99569,mAP_0.5:0.95=0.87605,基本满足业务的性能需求。

2023-03-20

Android实现表情识别Demo(可实时检测).zip

APP在普通Android手机上可以达到实时的检测识别效果,CPU(4线程)约30ms左右,GPU约25ms左右 更多项目《面部表情识别》系列文章请参考: 1.面部表情识别1:表情识别数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/129428657 2.面部表情识别2:Pytorch实现表情识别(含表情识别数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/129505205 3.面部表情识别3:Android实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467015 4.面部表情识别4:C++实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467023

2023-03-14

面部表情识别4:C++实现表情识别(含源码,可实时检测).txt

更多项目《面部表情识别》系列文章请参考: 1.面部表情识别1:表情识别数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/129428657 2.面部表情识别2:Pytorch实现表情识别(含表情识别数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/129505205 3.面部表情识别3:Android实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467015 4.面部表情识别4:C++实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467023

2023-03-14

面部表情识别3:Android实现表情识别(含源码,可实时检测).txt

更多项目《面部表情识别》系列文章请参考: 1.面部表情识别1:表情识别数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/129428657 2.面部表情识别2:Pytorch实现表情识别(含表情识别数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/129505205 3.面部表情识别3:Android实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467015 4.面部表情识别4:C++实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467023

2023-03-14

面部表情识别2:Pytorch实现表情识别(含表情识别数据集和训练代码).txt

更多项目《面部表情识别》系列文章请参考: 1.面部表情识别1:表情识别数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/129428657 2.面部表情识别2:Pytorch实现表情识别(含表情识别数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/129505205 3.面部表情识别3:Android实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467015 4.面部表情识别4:C++实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467023

2023-03-14

面部表情识别1:表情识别数据集(含下载链接).txt

更多项目《面部表情识别》系列文章请参考: 1.面部表情识别1:表情识别数据集(含下载链接):https://blog.csdn.net/guyuealian/article/details/129428657 2.面部表情识别2:Pytorch实现表情识别(含表情识别数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/129505205 3.面部表情识别3:Android实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467015 4.面部表情识别4:C++实现表情识别(含源码,可实时检测):https://blog.csdn.net/guyuealian/article/details/129467023

2023-03-14

水表数字识别Android Demo APP安装包.zip

这是水表数字识别Android Demo APP安装包,其中水表数字分割模型采用Fast-SCNN,识别模型采用PlateNet,模型推理实现Android源码核心算法部分均采用C++实现,上层Java通过JNI接口调用C++算法,博客原文:https://blog.csdn.net/guyuealian/article/details/139998836

2024-07-13

年龄性别预算识别Android APP Demo.zip

这是年龄性别预算识别Android APP Demo,只安装在安卓手机,实时检测和识别 年龄性别预测1:年龄性别数据集说明(含下载地址)https://blog.csdn.net/guyuealian/article/details/135127124 年龄性别预测2:Pytorch实现年龄性别预测和识别(含训练代码和数据)https://blog.csdn.net/guyuealian/article/details/135556789 年龄性别预测3:Android实现年龄性别预测和识别(含源码,可实时预测)https://blog.csdn.net/guyuealian/article/details/135556824 年龄性别预测4:C/C++实现年龄性别预测和识别(含源码,可实时预测)https://blog.csdn.net/guyuealian/article/details/135556843

2024-01-15

人体关键点检测(人体姿态估计)Android Demo App.zip

这是人体关键点检测(人体姿态估计)Android Demo App,更多项目请参考: 人体关键点检测1:人体姿势估计数据集(含下载链接) https://blog.csdn.net/guyuealian/article/details/134703548 人体关键点检测2:Pytorch实现人体关键点检测(人体姿势估计)含训练代码和数据集 https://blog.csdn.net/guyuealian/article/details/134837816 人体关键点检测3:Android实现人体关键点检测(人体姿势估计)含源码 可实时检测 https://blog.csdn.net/guyuealian/article/details/134881797 人体关键点检测4:C/C++实现人体关键点检测(人体姿势估计)含源码 可实时检测 https://blog.csdn.net/guyuealian/article/details/134881797

2023-12-08

指尖笔尖检测Android App Demo.zip

这是指尖笔尖检测Android Demo,可实时检测指尖笔尖,支持跟踪检测,检测效果相当好

2023-11-21

笔尖笔帽关键点检测Android App Demo.zip

这是笔尖笔帽关键点检测Android App Demo,更多资源请参考: 笔尖笔帽检测1:笔尖笔帽检测数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/134070255 笔尖笔帽检测2:Pytorch实现笔尖笔帽检测算法(含训练代码和数据集)https://blog.csdn.net/guyuealian/article/details/134070483 笔尖笔帽检测3:Android实现笔尖笔帽检测算法(含源码 可是实时检测)https://blog.csdn.net/guyuealian/article/details/134070497 笔尖笔帽检测4:C++实现笔尖笔帽检测算法(含源码 可是实时检测)https://blog.csdn.net/guyuealian/article/details/134070516

2023-11-14

C++实现手部关键点检测(手部姿势估计)含源码 可实时检测.txt

C++实现手部关键点检测(手部姿势估计)含源码 可实时检测

2023-10-17

手部关键点(手部姿势估计)数据集(含下载链接).txt

手部关键点数据集,手部姿势估计数据集,手部检测数据集; 手部关键点检测1:手部关键点(手部姿势估计)数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/133277630 手部关键点检测2:YOLOv5实现手部检测(含训练代码和数据集)https://blog.csdn.net/guyuealian/article/details/133279222 手部关键点检测3:Pytorch实现手部关键点检测(手部姿势估计)含训练代码和数据集https://blog.csdn.net/guyuealian/article/details/133277726 手部关键点检测4:Android实现手部关键点检测(手部姿势估计)含源码 可实时检测https://blog.csdn.net/guyuealian/article/details/133277732

2023-10-17

Android实现手部关键点检测(手部姿势估计)含源码 可实时检测.txt

Android实现手部关键点检测(手部姿势估计)含源码 可实时检测 手部关键点检测1:手部关键点(手部姿势估计)数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/133277630 手部关键点检测2:YOLOv5实现手部检测(含训练代码和数据集)https://blog.csdn.net/guyuealian/article/details/133279222 手部关键点检测3:Pytorch实现手部关键点检测(手部姿势估计)含训练代码和数据集https://blog.csdn.net/guyuealian/article/details/133277726 手部关键点检测4:Android实现手部关键点检测(手部姿势估计)含源码 可实时检测https://blog.csdn.net/guyuealian/article/details/133277732

2023-10-17

YOLOv5实现手部检测(含训练代码和数据集).txt

YOLOv5实现手部检测(含训练代码和数据集) 手部关键点检测1:手部关键点(手部姿势估计)数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/133277630 手部关键点检测2:YOLOv5实现手部检测(含训练代码和数据集)https://blog.csdn.net/guyuealian/article/details/133279222 手部关键点检测3:Pytorch实现手部关键点检测(手部姿势估计)含训练代码和数据集https://blog.csdn.net/guyuealian/article/details/133277726 手部关键点检测4:Android实现手部关键点检测(手部姿势估计)含源码 可实时检测https://blog.csdn.net/guyuealian/article/details/133277732

2023-10-17

手部关键点检测Android Demo

这是手部关键点检测Android Demo APP安装包,可在Android手机安装,体检手部关键点检测的效果;更多博文推荐: 手部关键点检测3:Pytorch实现手部关键点检测(手部姿势估计)含训练代码和数据集https://blog.csdn.net/guyuealian/article/details/133277726 手部关键点检测4:Android实现手部关键点检测(手部姿势估计)含源码 可实时检测https://blog.csdn.net/guyuealian/article/details/133277732 手部关键点检测5:C++实现手部关键点检测(手部姿势估计)含源码 可实时检测https://blog.csdn.net/guyuealian/article/details/133277748

2023-10-12

疲劳驾驶检测和识别Android Demo App.zip

疲劳驾驶检测和识别1: 疲劳驾驶检测和识别数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/131718648 疲劳驾驶检测和识别2:Pytorch实现疲劳驾驶检测和识别(含疲劳驾驶数据集和训练代码)https://blog.csdn.net/guyuealian/article/details/131834946 疲劳驾驶检测和识别3:Android实现疲劳驾驶检测和识别(含源码,可实时检测)https://blog.csdn.net/guyuealian/article/details/131834970 疲劳驾驶检测和识别4:C++实现疲劳驾驶检测和识别(含源码,可实时检测)https://panjinquan.blog.csdn.net/article/details/131834980

2023-07-24

疲劳驾驶检测和识别4:C++实现疲劳驾驶检测和识别(含源码,可实时检测).txt

疲劳驾驶检测和识别1: 疲劳驾驶检测和识别数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/131718648 疲劳驾驶检测和识别2:Pytorch实现疲劳驾驶检测和识别(含疲劳驾驶数据集和训练代码)https://blog.csdn.net/guyuealian/article/details/131834946 疲劳驾驶检测和识别3:Android实现疲劳驾驶检测和识别(含源码,可实时检测)https://blog.csdn.net/guyuealian/article/details/131834970 疲劳驾驶检测和识别4:C++实现疲劳驾驶检测和识别(含源码,可实时检测)https://panjinquan.blog.csdn.net/article/details/131834980

2023-07-24

疲劳驾驶检测和识别2:Pytorch实现疲劳驾驶检测和识别(含疲劳驾驶数据集和训练代码).txt

疲劳驾驶检测和识别1: 疲劳驾驶检测和识别数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/131718648 疲劳驾驶检测和识别2:Pytorch实现疲劳驾驶检测和识别(含疲劳驾驶数据集和训练代码)https://blog.csdn.net/guyuealian/article/details/131834946 疲劳驾驶检测和识别3:Android实现疲劳驾驶检测和识别(含源码,可实时检测)https://blog.csdn.net/guyuealian/article/details/131834970 疲劳驾驶检测和识别4:C++实现疲劳驾驶检测和识别(含源码,可实时检测)https://panjinquan.blog.csdn.net/article/details/131834980

2023-07-24

疲劳驾驶检测和识别3:Android实现疲劳驾驶检测和识别(含源码,可实时检测).txt

疲劳驾驶检测和识别1: 疲劳驾驶检测和识别数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/131718648 疲劳驾驶检测和识别2:Pytorch实现疲劳驾驶检测和识别(含疲劳驾驶数据集和训练代码)https://blog.csdn.net/guyuealian/article/details/131834946 疲劳驾驶检测和识别3:Android实现疲劳驾驶检测和识别(含源码,可实时检测)https://blog.csdn.net/guyuealian/article/details/131834970 疲劳驾驶检测和识别4:C++实现疲劳驾驶检测和识别(含源码,可实时检测)https://panjinquan.blog.csdn.net/article/details/131834980

2023-07-24

疲劳驾驶检测和识别1: 疲劳驾驶检测和识别数据集(含下载链接).txt

疲劳驾驶检测和识别1: 疲劳驾驶检测和识别数据集(含下载链接)https://blog.csdn.net/guyuealian/article/details/131718648 疲劳驾驶检测和识别2:Pytorch实现疲劳驾驶检测和识别(含疲劳驾驶数据集和训练代码)https://blog.csdn.net/guyuealian/article/details/131834946 疲劳驾驶检测和识别3:Android实现疲劳驾驶检测和识别(含源码,可实时检测)https://blog.csdn.net/guyuealian/article/details/131834970 疲劳驾驶检测和识别4:C++实现疲劳驾驶检测和识别(含源码,可实时检测)https://panjinquan.blog.csdn.net/article/details/131834980

2023-07-24

吸烟(抽烟)检测和识别1:吸烟(抽烟)数据集说明(含下载链接).txt

吸烟(抽烟)检测和识别1:吸烟(抽烟)数据集说明(含下载链接):https://blog.csdn.net/guyuealian/article/details/130337263 吸烟(抽烟)检测和识别2:Pytorch实现吸烟(抽烟)检测和识别(含吸烟(抽烟)数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/131521338

2023-07-10

吸烟(抽烟)检测和识别2:Pytorch实现吸烟(抽烟)检测和识别(含吸烟(抽烟)数据集和训练代码).txt

吸烟(抽烟)检测和识别1:吸烟(抽烟)数据集说明(含下载链接):https://blog.csdn.net/guyuealian/article/details/130337263 吸烟(抽烟)检测和识别2:Pytorch实现吸烟(抽烟)检测和识别(含吸烟(抽烟)数据集和训练代码):https://blog.csdn.net/guyuealian/article/details/131521338

2023-07-10

人脸识别Android Demo App.txt

人脸识别Android Demo App下载链接: https://pan.baidu.com/s/1cAqXUA1_qzbA7VujDY2JIA 提取码: 6e6g 博文参考:人脸识别4:Android InsightFace实现人脸识别Face Recognition(含源码)https://blog.csdn.net/guyuealian/article/details/130600600

2023-06-15

人脸识别2:InsightFace实现人脸识别Face Recognition(含源码下载).txt

人脸识别1:人脸识别数据集:https://blog.csdn.net/guyuealian/article/details/130600545 人脸识别2:InsightFace实现人脸识别Face Recognition(含源码下载):https://blog.csdn.net/guyuealian/article/details/130600472 人脸识别3:C/C++ InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600571 人脸识别4:Android InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600600

2023-06-15

人脸识别4:Android InsightFace实现人脸识别Face Recognition(含源码).txt

人脸识别1:人脸识别数据集:https://blog.csdn.net/guyuealian/article/details/130600545 人脸识别2:InsightFace实现人脸识别Face Recognition(含源码下载):https://blog.csdn.net/guyuealian/article/details/130600472 人脸识别3:C/C++ InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600571 人脸识别4:Android InsightFace实现人脸识别Face Recognition(含源码):https://blog.csdn.net/guyuealian/article/details/130600600

2023-06-15

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除