
计算机视觉
Emmahuu424
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【转载】从多项式曲线拟合到模式识别的相关概念
https://zlearning.netlify.app/computer/prml/prmlch1dot1-polynomial-curve转载 2021-06-03 13:33:45 · 351 阅读 · 0 评论 -
【转载】生成对抗网络——石墨文档
https://shimo.im/docs/TKxJPTTXvv3KD9Yr/转载 2021-03-14 15:16:38 · 205 阅读 · 0 评论 -
华为-yolo系列详解
【转载】https://www.huaweicloud.com/articles/1bbc978269862843879e580761883927.html转载 2021-03-09 14:40:05 · 267 阅读 · 0 评论 -
【转载】YOLOV详解
https://www.jiqizhixin.com/articles/2018-04-23-3转载 2021-03-03 17:46:37 · 293 阅读 · 2 评论 -
Deep learning前的图像预处理
(1)调节尺寸As data(Images) few into the NN should be scaled according the image size that the NN is designed to take, usually a square i.e 100x100,250x250(2) 特征标准化(Feature Standardization)特征标准化(Feature Standardization)特征标准化的目的是使数据集中所有特征都具有零均值和单位方差,即数据的每一个原创 2021-03-03 09:30:16 · 348 阅读 · 0 评论 -
【转载】DL图片预处理
【转载】https://niuyuanyuanna.github.io/2018/11/08/deep_learning/data-normalization/#%E9%80%90%E6%A0%B7%E6%9C%AC%E5%9D%87%E5%80%BC%E6%B6%88%E5%87%8Fper-example-mean-subtraction转载 2021-03-02 16:54:26 · 149 阅读 · 0 评论 -
【转载】yolo处理流程实例
https://segmentfault.com/a/1190000024535003转载 2021-03-02 16:36:53 · 208 阅读 · 0 评论 -
【转载】Yolo综述
【转载】https://bbs.cvmart.net/topics/3420转载 2021-03-02 11:05:21 · 206 阅读 · 0 评论 -
【转载】yolo数据增强和评价方法
【转载】https://my.oschina.net/u/4218785/blog/4699354转载 2021-03-02 11:04:27 · 356 阅读 · 1 评论 -
Python3|Opencv——dst参数的含义和使用
dst参数的含义dst => destination,生成目标。方法一:可以通过自定义变量获取,如:img = cv2.blur(src, kernel, …)方法二:可以直接调用函数,并指定应用的目标raw,如:raw = img.copy()cv2.blur(src, kernel, raw…)Example# -*- coding:utf-8 -*-...原创 2020-02-18 18:14:12 · 7156 阅读 · 0 评论 -
Python3|Opencv——添加高斯噪声Gauss Noise
# -*- coding:utf-8 -*-#@Time: 2020/2/18#@Author: EmmaHuu#@File: gauss_noise"""添加高斯噪声Gauss Noise """import cv2 as cvimport numpy as npdef gauss_noise(img,sigma): temp_img = np.float64(np.cop...原创 2020-02-18 17:36:46 · 2311 阅读 · 0 评论