cv相关博客文章
收藏些图像处理,机器学习,深度学习方面比较不错的文章,时常学习,复习和膜拜吧。。。
图像方面(传统CV):
1. SIFT特征
https://www.cnblogs.com/wangguchangqing/p/4853263.html
http://shartoo.github.io/SIFT-feature/?FbmNv=5d9f3d0c8ca5090a
https://blog.csdn.net/u010440456/article/details/81483145
2. HOG特征
http://shartoo.github.io/HOG-feature/?FbmNv=5d9f3d48e0647071
https://senitco.github.io/2017/06/10/image-feature-hog/
https://www.cnblogs.com/aoru45/p/9748481.html
https://zhuanlan.zhihu.com/p/40960756
3. 图像金字塔
http://shartoo.github.io/image-pramid/?FbmNv=5d9f3d6e990e41bb
https://zhuanlan.zhihu.com/p/32815143
4. Haar特征
http://shartoo.github.io/img-haar-feature/
https://senitco.github.io/2017/06/15/image-feature-haar/
https://juejin.im/post/5b0e6f83f265da0910791a38
https://blog.csdn.net/zouxy09/article/details/7929570
5.Harris角点
https://www.cnblogs.com/ronny/p/4009425.html
https://senitco.github.io/2017/06/18/image-feature-harris/
https://zhuanlan.zhihu.com/p/42490675
https://zhuanlan.zhihu.com/p/36382429
机器学习方面:
1. Linear Regression
https://zhuanlan.zhihu.com/p/45023349

2. Logistic Regression
https://chenrudan.github.io/blog/2016/01/09/logisticregression.html
https://www.jiqizhixin.com/articles/2018-05-13-3
https://zhuanlan.zhihu.com/p/28408516

3.Neutral Network
https://clyyuanzi.gitbooks.io/julymlnotes/content/dl_nn.html
https://www.cnblogs.com/subconscious/p/5058741.html
神经网络损失函数(loss function):

4. 回归和正则化(Regression and Regularization)
https://www.zhihu.com/question/20924039
https://zhuanlan.zhihu.com/p/29957294
线性回归,逻辑回归和神经网络带正则化的损失函数:

正则化项能减缓梯度的变化:


5. SVM(support vector machine)
拉格朗日乘子法
对偶问题:
KKT条件:
SVM原理:
https://www.jiqizhixin.com/articles/2018-10-17-20
https://www.cnblogs.com/leftnoteasy/archive/2011/05/02/basic-of-svm.html
https://wizardforcel.gitbooks.io/dm-algo-top10/content/svm-1.html
https://blog.csdn.net/v_JULY_v/article/details/7624837
支持向量机的表达式,拉格朗日函数,对偶问题和KKT条件:

软间隔支持向量机的表达式,拉格朗日函数,对偶问题和KKT条件:

支持向量机非线性化的核函数:

SVM使用代码(sklearn包):(线性svm,和采用核函数的非线性SVM)
SVM的python实现: https://blog.csdn.net/laobai1015/article/details/82763033
6. kmeans算法
https://www.csuldw.com/2015/06/03/2015-06-03-ml-algorithm-K-means/
https://www.cnblogs.com/pinard/p/6164214.html
k-Means++
https://zhuanlan.zhihu.com/p/32375430
kmeans和kmeans++ python代码实现:
https://github.com/silence-cho/cv-learning/blob/master/week4/assignment.py
https://github.com/ViperBling/CV_Course/blob/master/Week5/K-Means%2B%2B/K-Means.py
7.KNN(k近邻)算法
https://coolshell.cn/articles/8052.html
https://www.cnblogs.com/ybjourney/p/4702562.html
8.决策树 (Decision tree)
https://www.csuldw.com/2015/05/08/2015-05-08-decision%20tree/
https://lotabout.me/2018/decision-tree/
https://blog.csdn.net/xbinworld/article/details/44660339
信息增益:

信息增益率:

基尼指数:

ID3(信息增益)和C4.5(信息增益率):https://zhuanlan.zhihu.com/p/26760551?utm_source=wechat_session&utm_medium=social&utm_oi=71873182302208
sklearn实现决策树:https://www.v2ex.com/amp/t/544062
9.其他算法
AdaBoost:
https://www.cnblogs.com/pinard/p/6133937.html
https://blog.csdn.net/guyuealian/article/details/70995333
LDA(隐式狄利克雷分布): https://github.com/endymecy/spark-ml-source-analysis/blob/master/%E8%81%9A%E7%B1%BB/LDA/lda.md
朴素贝叶斯:https://www.cnblogs.com/leoo2sk/archive/2010/09/17/naive-bayesian-classifier.html
https://zhuanlan.zhihu.com/p/26262151

深度学习方面
1. overfit/underfit (过拟合和欠拟合)
https://zh.d2l.ai/chapter_deep-learning-basics/underfit-overfit.html
https://zhuanlan.zhihu.com/p/29707029

2. bias and variance (高偏差和高方差)
https://www.jianshu.com/p/a585d5506b1e
https://www.cnblogs.com/hutao722/p/9921788.html
http://nanshu.wang/post/2015-05-17/
http://www.voidcn.com/article/p-tqoebcaa-dq.html
3.卷积



反卷积(Deconv / Transposed Convolution / Fractionally strided conv):
https://www.zhihu.com/question/48279880?sort=created
https://www.zhihu.com/question/48279880/answer/838063090
4. Gradient vanishing and explosion (梯度消失和梯度爆炸)
https://blog.csdn.net/qq_25737169/article/details/78847691
https://codertw.com/%E7%A8%8B%E5%BC%8F%E8%AA%9E%E8%A8%80/583004/
https://zhuanlan.zhihu.com/p/51490163
5.Backward(反向传播)
https://juejin.im/entry/5ac056dc6fb9a028de44d620
https://tigerneil.gitbooks.io/neural-networks-and-deep-learning-zh/content/chapter2.html
https://github.com/INTERMT/BP-Algorithm
https://jdhao.github.io/2016/01/19/back-propagation-in-mlp-explained/

图像分割模型:
1. FCN
https://zhuanlan.zhihu.com/p/62839949
https://zh.gluon.ai/chapter_computer-vision/fcn.html

2.U-Net (E-Net)
https://blog.csdn.net/u012931582/article/details/70215756
https://juejin.im/post/5d63eb7bf265da03e05b2065
https://zhuanlan.zhihu.com/p/31428783
https://zhuanlan.zhihu.com/p/57530767

3. E-Net
https://zhuanlan.zhihu.com/p/39430439
http://hellodfan.com/2018/01/02/%E8%AF%AD%E4%B9%89%E5%88%86%E5%89%B2%E8%AE%BA%E6%96%87-ENet/
https://zhuanlan.zhihu.com/p/31379024

4. Mask-RCNN
https://zhuanlan.zhihu.com/p/37998710
https://zhuanlan.zhihu.com/p/40538057

Image Style Transfer(图像风格转变):
Perceptual Loss: Perceptual Losses for Real-Time Style Transferand Super-Resolution
Feature mimicking: Mimicking Very Efficient Network for Object Detection
Model distillation: Distilling the Knowledge in a Neural Network
Image Enhancement (图像增强):
Learning a Deep Single Image Contrast Enhancerfrom Multi-Exposure Images
A Generic Deep Architecture for Single Image Reflection Removaland Image Smoothing (反射移除)
深度学习框架
caffe教程:
https://blog.csdn.net/m0_38116269/article/details/88119001
https://zhuanlan.zhihu.com/p/24110318
cv相关博客文章的更多相关文章
- 年度十佳 DevOps 博客文章(后篇)
如果说 15 年你还没有将 DevOps 真正应用起来,16 年再不实践也未免太落伍了.在上篇文章中我们了解到 15 年十佳 DevOps 博客文章的第 6-10 名,有没有哪一篇抓住了您的眼球,让您 ...
- 年度十佳 DevOps 博客文章(前篇)
如果说 15 年你还没有将 DevOps 真正应用起来,16 年再不实践也未免太落伍了.国内 ITOM 领军企业 OneAPM 工程师为您翻译整理了,2015 年十佳 DevOps 文章,究竟是不是深 ...
- VM 映像 PowerShell 教学系列博客文章
编辑人员注释:本文章是与Microsoft Azure工程的项目经理Kay Singh共同撰写的 正如我在第一篇博客文章中所承诺的,我又回来了,为大家分步介绍如何在PowerShell中使用VM ...
- HelloDjango 第 08 篇:开发博客文章详情页
作者:HelloGitHub-追梦人物 文中涉及的示例代码,已同步更新到 HelloGitHub-Team 仓库 首页展示的是所有文章的列表,当用户看到感兴趣的文章时,他点击文章的标题或者继续阅读的按 ...
- python:简单爬取自己的一篇博客文章
1.爬取文章地址:https://www.cnblogs.com/Mr-choa/p/12495157.html 爬取文章的标题.具体内容,保存到文章名.txt 代码如下: # 导入requests模 ...
- python爬虫实战之爬取智联职位信息和博客文章信息
1.python爬取招聘信息 简单爬取智联招聘职位信息 # !/usr/bin/env python # -*-coding:utf-8-*- """ @Author ...
- SQL Sever 博客文章目录(2016-07-06更新)
SQL Server方面的博客文章也陆陆续续的写了不少了,顺便也将这些知识点整理.归纳一下下.方便自己和他人查看. MS SQL 数据类型 三大数据库对比研究系列--数据类型 MS SQL 表和视图 ...
- 使用 Microsoft Word 发布博客文章
以 Microsoft Word 2010 为例: 依次选择:文件 -> 保存并发送 -> 发布为博客文章 配置说明:新建账户 的 博客文章 URL 一栏填写 http://rpc.cn ...
- Word 2010发布博客文章
只测试了cnblog 1.新建文件选择word 2010自带的博客文章模板 2.在管理账户中新建一个博客账户,也就是你自己在博客园的账户,博客选其他 3.然后选择下一步,博客的URL在自己的博客设置里 ...
随机推荐
- 常见User-Agent大全
window.navigator.userAgent 1) Chrome Win7: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KH ...
- mysql(函数,存储过程,事务,索引)
函数 MySQL中提供了许多内置函数: 内置函数 一.数学函数 ROUND(x,y) 返回参数x的四舍五入的有y位小数的值 RAND() 返回0到1内的随机值,可以通过提供一个参数(种子)使RAND( ...
- vue-quill-editor + iview 实现富文本编辑器及图片上传
1.npm 安装 vue-quill-editor npm install vue-quill-editor 2.再main.js中引入 import VueQuillEditor from 'vue ...
- Yum三方仓库——RPMForge
参考:How to Enable RPMForge Repository in RHEL/CentOS 7.x/6.x/5.x RPMForge / RepoForge这两个项目已经死亡,不应该使用 ...
- 《Python编程:从入门到实践》第二章 变量和简单数据类型 习题答案
#2.1 print("Hello world!"); #2.2 message="Hello,Python!"; print(message); #2.3 n ...
- 使用DateTimeFormatter替换线程不安全的SimpleDateFormat
原文:https://blog.csdn.net/baofeidyz/article/details/81307478 如何让SimpleDateFormat保持安全运行? 方案一 每次都去new这种 ...
- PAT基础级-钻石段位样卷2-7-7 危险品装箱 (25 分)
集装箱运输货物时,我们必须特别小心,不能把不相容的货物装在一只箱子里.比如氧化剂绝对不能跟易燃液体同箱,否则很容易造成爆炸. 本题给定一张不相容物品的清单,需要你检查每一张集装箱货品清单,判断它们是否 ...
- linux网络编程之posix消息队列
在前面已经学习了System v相关的IPC,今天起学习posix相关的IPC,关于这两者的内容区别,简单回顾一下: 而今天先学习posix的消息队列,下面开始: 接下来则编写程序来创建一个posix ...
- socket常见选项之SO_REUSEADDR,SO_REUSEPORT
目录 SO_REUSEADDR time-wait SO_REUSEPORT SO_REUSEADDR 一般来说,一个端口释放后会等待两分钟之后才能再被使用,SO_REUSEADDR是让端口释放后立即 ...
- python - django (cookie)
# """ Cookile: # 因为 HTTP 请求是没有状态的,每一次请求都是独立的 Cookile 的存储: # 保存在浏览器上的 键值对. # 服务器控制着响应, ...