随笔分类 -  Deep Learning

1
OpenCV, Dlib, MxNet, caffe2, TF, 目标识别,特征提取等
摘要:flip 翻转 摄像头显示左右反了,用这个沿Y轴翻转 就可以 void cv::flip( cv::InputArray src, // Input array cv::OutputArray dst, // Result array, size and type of 'src' int flip 阅读全文
posted @ 2023-11-04 18:24 scott_h 编辑
摘要:1. 尺度不变特征变换匹配算法详解 Scale Invariant Feature Transform(SIFT)2. 尺度不变特征变换(SIFT)特征提取分析3. opencv源码解析之(3):特征点检查前言1 , SIFT+SURF OpenCV 调用demo 4. 特征点检测学习_1(sift 阅读全文
posted @ 2023-11-04 18:23 scott_h 编辑
摘要:设置鼠标callback setMouseCallback() //cpp调用c interface void cv::setMouseCallback( const String& windowName, MouseCallback onMouse, void* param) { CV_TRACE 阅读全文
posted @ 2023-11-04 18:23 scott_h 编辑
摘要:图像特征提取三大法宝:HOG特征,LBP特征,Haar特征 http://dataunion.org/20584.html (一)HOG特征 1、HOG特征: 方向梯度直方图(Histogram of Oriented Gradient, HOG)特征是一种在计算机视觉和图像处理中用来进行物体检测的 阅读全文
posted @ 2023-11-04 18:22 scott_h 编辑
摘要:http://dlib.net/faq.html#WhydoesnttheobjectdetectorItrainedwork Why doesn't the object detector I trained work? There are three general mistakes peopl 阅读全文
posted @ 2023-11-04 18:21 scott_h 编辑
摘要:深度学习目标检测模型全面综述:Faster R-CNN、R-FCN和SSD 原文链接:https://medium.com/towards-data-science/deep-learning-for-object-detection-a-comprehensive-review-73930816d 阅读全文
posted @ 2023-11-04 18:21 scott_h 编辑
摘要:古老的目标侦测 算法有Haar特征、LBP特征、HOG特征和Shif特征等 拳头:纹理特征明显:Haar、LBP(目前有将其和HOG结合); 手掌:轮廓特征明显:HOG特征(行人检测一般用这个); (在博客中,我会参考各牛人的博客和资料来整理Haar特征、LBP特征、HOG特征和Shif特征等这些内 阅读全文
posted @ 2023-11-04 18:20 scott_h 编辑
摘要:深度神经网络的数学基础,对你来说会不会太难? By 李亚洲2017年7月18日 11:04 这是一篇讲解深度学习数学的系列文章,但并非是基础数学,还涉及到了拓扑与测度论等内容。本文为该系列文章的第一部分,机器之心会持续把后续内容全部放出。 该系列文章的目录(不完整版),本文为 Lecture 1 的 阅读全文
posted @ 2023-11-04 18:16 scott_h 编辑
摘要:PS D:\work\book\new Book\MachineLearn(DeepLearn)\OpenSourceFramework\dlib\dlib-master\examples\build\Release> .\dnn_mmod_face_detection_ex.exe .\mmod_ 阅读全文
posted @ 2023-11-04 18:15 scott_h 编辑
摘要:这个哥们也遇到一样的问题 "CUDA 9.1/9.2 与 Visual Studio 2017 (VS2017 15.6.4) 的不兼容问题" 错误有显示 我看到默认VS工程中是 1.需要【win SDK 版本】10.0.15063.0 但是这个版本我并没有,所以在VS2017 Install 中 阅读全文
posted @ 2018-08-28 03:47 scott_h 阅读(1341) 评论(0) 推荐(0) 编辑
摘要:无论windows,linux 所有的库 ,dlib,opencv 通过cmake gui 设置好静态库, 动态库,和其他各个选项 Tips: cmake 优先级用cmake gui,因为命令太多,容易敲错!!!!! cmake 默认是制作动态库.so, 若需要制作静态库 1.BUILD_SHARE 阅读全文
posted @ 2018-08-24 20:30 scott_h 阅读(4510) 评论(0) 推荐(0) 编辑
摘要:dlib 生成各种版本的库 之后(CMake )可参见官网 1.添加库目录 2.添加库文件 3.把dlib/all/source.cpp 添加到我们的项目工程中, 并且设置[不使用预编译头] 如图 那些开关宏,最好放在工程中 【配置属性】->【C/C++】->【预处理器】 【预处理器定义】这里添加 阅读全文
posted @ 2018-07-13 01:52 scott_h 编辑
摘要:opencv 3.3 cpp-example-dbt_face_detection 优势: 实时detect人脸,速度快 劣势: 1.上下角度超过20° 左右,左右角度超过18°左右 就无法识别。(侧脸无法修正,但是有记录侧脸的数据。 ) 2.歪脸 10° 左右 无法识别 (可以检测是否歪脸,) 3 阅读全文
posted @ 2017-12-01 17:38 scott_h 编辑
摘要:dlib 19.7 video_tracking_ex.cpp 是跟踪图像中的某个物体, 可以事先指定 物体坐标(可以应用中 用户用鼠标 指定。)。 video_frames 中有许多图片(视频I帧) 将来停车场可以判断某个图形 是否存在 (比如 △,○,□ 或自定义图形等等) 也有可能根据图形的出 阅读全文
posted @ 2017-11-17 22:21 scott_h 编辑
摘要:https://www.pyimagesearch.com/2017/03/27/how to install dlib/ python How to install dlib 阅读全文
posted @ 2017-11-17 21:43 scott_h 阅读(126) 评论(0) 推荐(0) 编辑
摘要:Dlib 19.7 + VS2017 http://dlib.net/faq.html Whyisdlibslow Why can't I use the DNN module with Visual Studio? You can, but you need to use Visual Studi 阅读全文
posted @ 2017-11-08 22:26 scott_h 编辑
摘要:摄像头 显示视频 阅读全文
posted @ 2017-10-30 01:19 scott_h 编辑
摘要:opencv 使用UTF8(中文)字体 ,解决方案 详细 freetype官网 FTP下载地址 使用方式: - 解压ft281.zip - .\freetype-2.8.1\builds\windows\vc2010\ 打开*.sln工程文件 - 根据需求编译 debug ,release, sin 阅读全文
posted @ 2017-10-29 22:59 scott_h 编辑
摘要:再唠叨之前的准备: 1.修改资源镜像,可用脚本 ubuntu修改资源镜像 2.系统保持最新 sudo apt-get update sudo apt-get upgrade 我的环境: OS: ubuntu 16.04.3 uname -a Linux scott-Z170X-UD3 4.10.0- 阅读全文
posted @ 2017-10-20 18:24 scott_h 阅读(1205) 评论(0) 推荐(0) 编辑

1