自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

孤旅人。。。的博客

在这条路上,我甘心做一个孤独的旅者。。。

  • 博客(6)
  • 资源 (6)
  • 收藏
  • 关注

原创 opencv学习笔记(二十一)——阈值操作

阈值化:最简单的图像分割方法应用举例:从一副图像中利用阈值分割出我们需要的物体部分(当然这里的物体可以是一部分或者整体)。这样的图像分割方法是基于图像中物体与背景之间的灰度差异,而且此分割属于像素级的分割。阈值操作介绍:二进制阈值化阈值化类型如下式所示: 解释:在运用该阈值类型的时候,先要选定一个特定的阈值量,比如:125,这样,新的阈值产生规则可以解释为大于125的像素点的灰度值设定为最大值

2015-11-22 10:52:44 4932

原创 opencv学习笔记(二十)——形态学滤波

开运算处理过程:先腐蚀后膨胀。 功能:用于消除小物体,在纤细点处分离物体,并且在平滑较大物体的边界的同时不明显改变其面积,同时抑制比结构元小的亮细节。 使用实例:#include<opencv2/opencv.hpp>void main(){ cv::Mat image = cv::imread("腐蚀膨胀练习1.jpg"); cv::namedWindow("SourceIm

2015-11-17 15:14:07 14289 3

原创 opencv学习笔记(十九)——图像滤波综合运用实例

#include<opencv2/opencv.hpp>cv::Mat Source_Image,BoxFilter_Image, MeanBlur_Image, GaussianBlur_Image, MedianBlur_Image, BilateralFilter_Image;int g_BoxFilter; //方框滤波参数int g_MeanBlur; /

2015-11-16 20:00:27 924

原创 大数据的乘法的原理和实现

大数据乘法算法步骤如下:1. 计算被乘数各个位上与乘数各个为的积,按位错开。如下面:先计算被乘数的个位(5*9 = 45,4*9 = 36……1*9 = 9),然后错开一位,计算被乘数的十位(1*5 = 5,……1*1=1)。2. 把各位的加起来(将个位和十位计算的乘积按位相加,如45+0 = 45,36+5 = 41,……,1+0 = 1)3. 十位进位,取个位,如 (45对10取模等于4,所

2015-11-15 22:04:52 2123

原创 opencv学习笔记(十八)——图像非线性滤波

非线性滤波非线性滤波是原始数据与滤波结果是一种逻辑关系,即用逻辑运算实现,而线性滤波采用的是算术运算结果。中值滤波(Median filter)中值滤波介绍中值滤波是一种典型的非线性滤波技术,基本思想就是用像素点邻域灰度值得中值来代替该像素点的灰度值。常用在脉冲噪声,椒盐噪声的同时又能保留图像边缘细节。优点:减小噪声在滤波中的影响,从而达到更好的滤波效果,同时还能更好地保留边缘细节。缺点:耗时更

2015-11-15 19:52:35 2459

原创 opencv学习笔记(十七)——线性滤波

图像滤波:图像滤波:指尽量在保存图像细节特征的条件下对目标图像的噪声进行抑制。图像滤波的目的:一是抽出对象的特征作为图像识别的特征模式;二是消除图像中混入的噪声。图像滤波的要求:一是不能损坏图像的轮廓及边缘等重要信息;二是使图像清晰视觉效果好。滤波和模糊的区别:拿高斯滤波来举例:滤波一般可以分为高通滤波和低通滤波,对于高斯低通滤波就会产生模糊效果,如果对于高斯高通滤波就会产生锐化的效果。所以

2015-11-14 17:34:49 6046

Deep Learning with TensorFlow

Key Features, Learn advanced techniques in deep learning with this example-rich guide on Google's brainchildExplore various neural networks with the help of this comprehensive guideAdvanced guide on machine learning techniques, in particular TensorFlow for deep learning., Book Description, Deep learning is the next step after machine learning. It is machine learning but with a more advanced implementation. As machine learning is no longer an academic topic, but a mainstream practice, deep learning has taken a front seat. With deep learning being used by many data scientists, deeper neural networks are evaluated for accurate results. Data scientists want to explore data abstraction layers and this book will be their guide on this journey. This book evaluates common, and not so common, deep neural networks and shows how these can be exploited in the real world with complex raw data using TensorFlow., The book will take you through an understanding of the current machine learning landscape then delve into TensorFlow and how to use it by considering various data sets and use cases. Throughout the chapters, you'll learn how to implement various deep learning algorithms for your machine learning systems and integrate them into your product offerings such as search, image recognition, and language processing. Additionally, we'll examine its performance by optimizing it with respect to its various parameters, comparing it against benchmarks along with teaching machines to learn from the information and determine the ideal behavior within a specific context, in order to maximize its performance., After finishing the book, you will be familiar with machine learning techniques, in particular TensorFlow for deep learning, and will be ready to apply some of your knowledge in a real project either in a research or commercial setting., What you will learn, Provide an overview of the machine learning landscapeLook at the historical development and progress of deep learningDescribe TensorFlow and become very familiar with it both in theory and in practiceAccess public datasets and use TF to load, process, clean, and transform dataUse TensorFlow on real-world data sets including images and textGet familiar with TensorFlow by applying it in various hands on exercises using the command lineEvaluate the performance of your deep learning modelsQuickly teach machines to learn from data by exploring reinforcement learning techniques.Understand how this technology is being used in the real world by exploring active areas of deep learning research and application.

2018-01-10

opencv相关依赖库

windows下安装opencv_contrib,用cmake编译opencv源码的时候opencv_ffmpeg_64.dll,opencv_ffmpeg.dll,ippicv_windows_20151201.zip这三个文件是无效的,编译时会警告,cmake会自动下载这些文件,但是由于大天朝的墙太厉害,下载不下来,所以直接报错,编译不通过。所以我们要手动替换这三个文件,这是打包好的,注意:对应的opencv版本是opencv3.10,其他版本未测试

2017-03-24

Stereo Vision code

opencv+Directshow加载双目摄像头源码, 环境:Win10 x64 + VS2013 + Opencv3.10

2017-03-13

cifar-10-binary part2

CIFAR-10 binary version (suitable for C programs)第2份压缩文件,共3份

2016-12-10

cifar-10-binary part1

caffe测试实例需要的数据集,由于官网下载太慢,所以我下载下来放到网上供大家免费下载,CIFAR-10 binary version (suitable for C programs)。这部分资源包括三部分。

2016-12-10

DirectShow +CameraDS

这个是基于VS2013+OpenCV2.49+DirectShow 驱动多个摄像头同步工作的一种方法所需要的一些必要文件,其中DirectShow中包含了32位和64位操作系统的文件。

2016-01-07

空空如也

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

TA关注的人

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