自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

计算机视觉

计算机视觉基础及工程实战

  • 博客(9)
  • 资源 (20)
  • 收藏
  • 关注

原创 个人偏好网址

1. 商业评论网http://www.ebusinessreview.cn/2. 掘数成金http://www.dataguru.cn/

2015-05-29 11:06:58 964

转载 a

1. used to show that you are talking about someone or something that has not been mentioned before, or that your listener does not know aboutWe have a problem.There was a hole in the fence.Suddenl

2015-05-20 12:27:21 729

转载 Python的itertools和迭代器

1. chainimport itertoolslistone = ['a', 'b', 'c']listtwo = ['11', '22', '33']for item in itertools.chain(listone, listtwo): print item,output:a b c 11 22 332. countcout返回一个无界的迭代器import

2015-05-18 07:10:15 729

原创 Python的filter, map, reduce, lambda

1. filter(function, sequence)Do function(item) for the item of sequencereturn the item whose result is True.def f(x): return x % 3 != 0 and x % 4 != 0filter(f, range(2, 25))Out[34]: [2, 5, 7

2015-05-18 06:38:26 533

原创 Python 实现斐波那契数列 (黄金分割数列)

方法1: 使用递归 (速度较慢)# Get the Fibonacci sequence with recursive functiondef myfibn(n): assert n >= 0, "Fibonacci not for n < 0" if n == 0: return 0 elif n == 1: return 1

2015-05-16 07:46:34 1991

原创 Python 实现n阶乘

In [7]: %pastedef myfact(n): assert n >= 0, "Factorial not definied for negative values." if n < 2: return 1 else: return n * myfact(n-1)## -- End pasted text --In [8]

2015-05-16 06:42:20 42293

翻译 Python 使用递归打印输出数字 (逆序和顺序)

a. 逆序def printRev(n): if n > 0: print n printRev(n-1)In [4]: printRev(4)4321b.顺序def printInc(n): if n > 0: printInc(n-1) print nIn [6]: printInc(4

2015-05-16 06:21:30 8906 1

原创 Git使用简介

1. Github 注册UsernameUserpasswordgit config --global user.name "hello"git config --global user.email hello@example.com2. 创建Github仓库New repositoryeg. https://github.com/beyondzhou/TestGit.git

2015-05-14 10:53:02 480

原创 OpenStack源码包含的项目

Nova云主机 https://launchpad.net/nova Cinder块存储 https://launchpad.net/cinder Quantum网络管理 https://launchpad.net/quantum Glance镜像管理 https://launchpad.net/glance Horizon界面 https://launchpad.net/hor

2015-05-08 15:43:52 505

Computer Vision PAAL .zip

Computer Vision Principles, Algorithms, Applications, Learning

2020-05-21

Practical Python and OpenCV, 3rd Edition.rar

基于python的opencv实战教程,包括图片的各种操作,图片预处理,平滑化和阈值化,边缘检测和轮廓检测等

2019-10-04

High Performance Python

Chapter 1. Introduction, Section 1.1. The High Performance Buzz-word, Chapter 2. The Theory of Computation, Section 2.1. Introduction, Section 2.2. Problems, Section 2.3. Models of Computation, Chapter 3. Algorithms, Section 3.1. Introduction, Section 3.2. Anatomy of an Algorithm, Section 3.3. Introducing Big O Notation, Section 3.4. Recurrence Relations, Section 3.5. P, NP, and Completeness, Section 3.6. Hall of Fame, Chapter 4. Rules of Optimization, Section 4.1. Rule #1: Plan Ahead, Chapter 5. Optimization for Speed, Section 5.1. Think like a Cheat, Section 5.2. Use Psyco, Section 5.3. Check Your Loops, Section 5.4. Anthony Tuininga's cx_Freeze, Section 5.5. Wait for Moore's Law to Catch Up, Section 5.6. Limit Regular Expressions

2017-12-09

apache-maven

Maven项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具。 Maven 除了以程序构建能力为特色之外,还提供高级项目管理工具。由于 Maven 的缺省构建规则有较高的可重用性,所以常常用两三行 Maven 构建脚本就可以构建简单的项目。由于 Maven 的面向项目的方法,许多 Apache Jakarta 项目发文时使用 Maven,而且公司项目采用 Maven 的比例在持续增长。 Maven这个单词来自于意第绪语(犹太语),意为知识的积累,最初在Jakata Turbine项目中用来简化构建过程。当时有一些项目(有各自Ant build文件),仅有细微的差别,而JAR文件都由CVS来维护。于是希望有一种标准化的方式构建项目,一个清晰的方式定义项目的组成,一个容易的方式发布项目的信息,以及一种简单的方式在多个项目中共享JARs。

2017-09-06

libpcap-1.0.0

libpcap-1.0.0

2017-08-04

CUDA for Engineers An Introduction to High Performance Parallel Computing

CUDA for Engineers An Introduction to High Performance Parallel Computing

2017-06-06

load test for video publish, pull

stress test tool for video publish, pull (hlv, hls, rtmp)

2017-03-13

ffmpeg, use to publish stream, play stream

ffmpeg

2017-01-11

ovirt viewer

这个工具是在ovirt查看虚拟机的的

2016-12-07

Mongodb Windows Client

mongodb windows client

2016-11-26

lua5.3.3 win32

lua 5.3.3

2016-11-08

nginx from begin to pro

nginx from begin to pro

2016-11-07

Data Science for Business

Data Science for business

2016-10-19

Tool to decode flv

Tool to decode http flv

2016-08-19

pexpect安装包

Python类expect的库, 方便ssh, telnet

2015-03-24

Regular Expressions Cookbook 2nd

正则表达式 第二版 正则表达式对于程序编写有非常大的好处

2013-03-30

空空如也

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

TA关注的人

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