自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

lin

  • 博客(5)
  • 资源 (19)
  • 收藏
  • 关注

原创 回溯法思路与示例

利用回溯方法生成子集,即对于每个元素,都有试探放入或不放入集合中的两个选择: 选择放入该元素,递归的进行后续元素的选择,完成放入该元素后续所有元素的试探;之后将其拿出,即再进行一次选择不放入该元素,递归的进行后续元素的选择,完成不放入该元素后续所有元素的试探。 本来选择放入,再选择一次不放入的这个过程,称为回溯试探法。 例如: 元素数组: nums = [1, 2, 3, 4, 5,…] ...

2018-08-19 15:52:07 1069

原创 知道点的坐标和相对连接关系,如何画出平面图!

以2017年研究生数学建模竞赛的E题绘图为例,画出地图其实matlab自带一个函数gplot 你只需要给出各个点的坐标和各点之间的相对关系,就能绘出地图来! 相对关系为N x N 的矩阵,有连接的为1,无连接的为0. 位置以(x,y)坐标形式给出。 程序如下:A = xlsread('adjoin.xlsx');B = xlsread('pos.xlsx');figure(1)...

2018-08-14 21:22:57 2645 3

转载 Python数据可视化

Python的数据可视化源博客:令x作为数据(50个点,每个30维),仅可视化前两维。labels为其类别(假设有三类)。这里的x就用random来了,具体数据具体分析。label设定为[1:20]->1, [21:35]->2, [36:50]->3,(python中数组连接方法:先强制转为list,用+,再转回array)。用matplotlib的scatte...

2018-08-06 21:01:15 858

原创 Tcpdump命令

Tcpdump抓包的一些介绍前言: 具体的详细定义等可以通过linux的命令查看官方英文文档;本文只是对其进行一些解读和应用。 >> man tcpdump1、原理linux下的抓包是通过注册一种虚拟的底层网络协议来完成对网络报文(准确的说是网络设备)消息的处理权。当网卡接收到一个网络报文之后,它会遍历系统中所有已经注册的网络协议,例如以太

2018-08-04 17:27:06 418

原创 Tcsh Complete

1、Tcsh Complete 参考最近再研究tcsh的补全相关知识,于是将相关资料列出来,然后加以分析,据我所知,目前相关的材料大多是英文的,而且百度搜索出来匹配结果较差,而国内又不方便用谷歌,故写出来记录一下: 本文主要涉及tcsh的补全: 模板: complete [command [word/pattern/list[:select]/[[suffix]/] …]] 作用: ...

2018-08-02 22:56:51 956

dipum_toolbox

dipum_toolbox。数字图像处理的Matlab实现代码,工具箱,.m文件

2018-03-04

dipum_toolbox_2.0.2

冈萨雷斯一书的程序集,及dipum工具箱代码,数字图像处理的Matlab实现的,.p文件

2018-03-04

Springer 计算机论文模板

Springer 论文投递的word2003模板,具体使用方法在压缩包里面

2018-02-26

Deep learning with python english edition

一本python深度学习新著作,对于从事数据挖掘、深度学习的人来讲是一本不可多得的书!

2018-02-07

数字图像处理,冈萨雷斯,第二版,中文版

冈萨雷斯、数字图像处理第二版,经典的图像处理教材。值得一看。

2018-02-07

Deep Learning with Python 2017

Deep Learning with Python 2017 非常好的学习用书,推荐

2017-12-23

Python计算机视觉编程(pdf+azw3)

Python计算机视觉编程,包内含PDF版本和azw3版本,适合不同人的需求

2017-11-14

OpenCV with Python Blueprints

OpenCV with Python Blueprints,英文版电子书。适合学习opencv python

2017-11-14

OpenCV With Python by Example

Build real-world computer vision applications and develop cool demos using OpenCV for Python, About This Book, Learn how to apply complex visual effects to images using geometric transformations and image filtersExtract features from an image and use them to develop advanced applicationsBuild algorithms to help you understand the image content and perform visual searches, Who This Book Is For, This book is intended for Python developers who are new to OpenCV and want to develop computer vision applications with OpenCV-Python. This book is also useful for generic software developers who want to deploy computer vision applications on the cloud. It would be helpful to have some familiarity with basic mathematical concepts such as vectors, matrices, and so on., What You Will Learn, Apply geometric transformations to images, perform image filtering, and convert an image into a cartoon-like imageDetect and track various body parts such as the face, nose, eyes, ears, and mouthStitch multiple images of a scene together to create a panoramic imageMake an object disappear from an imageIdentify different shapes, segment an image, and track an object in a live videoRecognize an object in an image and build a visual search engineReconstruct a 3D map from imagesBuild an augmented reality application, In Detail, Computer vision is found everywhere in modern technology. OpenCV for Python enables us to run computer vision algorithms in real time. With the advent of powerful machines, we are getting more processing power to work with. Using this technology, we can seamlessly integrate our computer vision applications into the cloud. Web developers can develop complex applications without having to reinvent the wheel., This book will walk you through all the building blocks needed to build amazing computer vision applications with ease. We start off with applying geometric transformations to images. We then discuss affine and projective transformations and see how we can use them to apply cool geometric effects to photos. We will then cover techniques used for object recognition, 3D reconstruction, stereo imaging, and other computer vision applications., This book will also provide clear examples written in Python to build OpenCV applications. The book starts off with simple beginner's level tasks such as basic processing and handling images, image mapping, and detecting images. It also covers popular OpenCV libraries with the help of examples., The book is a practical tutorial that covers various examples at different levels, teaching you about the different functions of OpenCV and their actual implementation., Style and approach, This is a conversational-style book filled with hands-on examples that are really easy to understand. Each topic is explained very clearly and is followed by a programmatic implementation so that the concept is solidified. Each topic contributes to something bigger in the following chapters, which helps you understand how to piece things together to build something big and complex.

2017-11-14

Tensorflow 实战Google深度学习框架

Tensorflow 实战Google深度学习框架,文档为扫描版,仅供学习,请购买正版

2017-11-14

图片中提取红色区域

一个简单的提取图片里面红色区域的实例代码,程序为puthon2.X +opencv 2.X.

2017-11-14

MNIST测试程序代码

几个手写数字程序实现的程序,注意,本文件需要用jupyter notebook 打开,用python 写的,包含4个程序:无隐层实现、单隐层、双隐层、卷积实现。

2017-11-14

python核心编程(第二、三版)

python核心编程(第二、三版),分别对应于python2.X和python3.X。可以对照起来看。

2017-11-14

机器学习实战,中文+英文pdf+code

机器学习实战,中文+英文pdf+code,一次性下载,中英文对照看。

2017-11-10

Python数据分析与挖掘实战(pdf+code)

Python数据分析与挖掘实战,压缩包里面包含文档pdf与文档配套的代码

2017-11-10

OpenCV 3计算机视觉:Python语言实现

OpenCV 3计算机视觉:Python语言实现,代码+pdf文档,适合于计算机视觉研究者

2017-11-09

Python数据分析基础教程:NumPy学习指南(第2版)代码+书籍pdf

Python数据分析基础教程:NumPy学习指南(第2版),包含文档pdf和文内的配套代码,后续更新可以在github上获得

2017-11-09

莫烦python,tensorflow

本文的内容为视频莫烦python的配套代码,视频可以在优酷或者youtube上观看,视屏是短视频,每个视频10分钟以内,很好的初学者材料。还有tensorflow示例

2017-11-09

空空如也

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

TA关注的人

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