自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

计算机视觉

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

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

翻译 Python 正则表达式验证ISBN

ISBN-10# ISBN-10^(?:ISBN(?:-10)?:?\ )? # Optional ISBN/ISBN-10 identifier.(?= # Basic format pre-checks (lookahead): [0-9X]{10}$ # Require 10 dig

2014-07-31 13:59:49 2743

翻译 Python 提取Twitter用户的Tweet

Python 提取Twitter用户的Tweet

2014-07-31 06:49:57 4352 2

翻译 Python 获取Twitter用户与Friends和Followers的关系(eg, 交集,差集)

Python 获取Twitter用户与Friends和Followers的关系(eg, 交集,差集)

2014-07-30 06:50:08 1472

翻译 Python 正则表达式验证Social Secury Number

Regexp Expression^(?!000|666)[0-8][0-9]{2}-(?!00)[0-9]{2}-(?!0000)[0-9]{4}$match:111-111-1111no-match:000-111-1111666-111-1111

2014-07-29 09:23:51 526

翻译 Python 获取Twitter用户的所有的friends和followers

Python 获取Twitter用户的所有的friends和followers

2014-07-29 06:51:28 2524

翻译 Python 正则表达式验证肯定或者否定回复

正则表达式^(?:[1ty]|true|yes|ok(?:ay)?)$

2014-07-28 10:16:39 1184

翻译 Python 从任意文本中提取Twitter的推文元素

CODE:#!/usr/bin/python # -*- coding: utf-8 -*-'''Created on 2014-7-28@author: guaguastd@name: extract_from_arbitrary.py'''if __name__ == '__main__': # import json import json

2014-07-28 06:34:07 1708

翻译 Python 提取Twitter用户的个人简介

CODE:#!/usr/bin/python # -*- coding: utf-8 -*-'''Created on 2014-7-26@author: guaguastd@name: resolve_user_profile.py'''if __name__ == '__main__': # import json import json

2014-07-26 06:50:29 1163

翻译 Python 正则表达式限定文本行数最多5行

正则表达式# separator is \r\n or \n\A(?:[^\r\n]*(?:\r\n?|\n)){0,4}[^\r\n]*\Z# separator is special separator\A(?:[^\n-\r\x85\u2028\u2029]*(?:\r\n?|[\n-\f\x85\u2028\u2029])){0,4}[^\n-\r\x85\u2028\u202

2014-07-25 11:24:31 1004

翻译 Python 正则表达式限定文本长度

Regex Expression# Limit the string length between 1 and 10 letters (a-z, A-Z)^[a-zA-Z]{1,10}$eg. match: abcedddddno match: aaaaaaaaaaa# Limit the lenght of an arbitrayry pattern^(?=

2014-07-24 09:38:47 13496

翻译 Python 提取Twitter转发推文的元素(比如用户名)

Python 提取Twitter转发推文的元素(比如用户名)

2014-07-24 07:38:27 2362 2

翻译 Python 正则表达式限定输入为特定字符

Regex Expression# alphanumber^[a-zA-Z0-9]+$# ASCII character^[\x00-\x7F]+$# ASCII noncontrol characters and line break^[\n\r\x20-\x7E]+$# shared ISO-8859-1 and windows-1252 characters^[\x0

2014-07-23 13:59:30 2878

翻译 Python 正则表达式验证ISO 8601日期和时间

CODE:(?P[0-9]{4})(?P-)?(?P1[0-2]|0[1-9])(?(hyphen)-)(?P3[01]|0[1-9]|[12][0-9]) (?P2[0-3]|[01][0-9])(?(hyphen):)(?P[0-5][0-9])(?(hyphen):)(?P[0-5][0-9])EXAMPLE

2014-07-22 11:37:40 2149

原创 Python 提取新浪微博转载微博的用户名

Python 提取新浪微博转载微博的用户名

2014-07-22 07:36:41 1437

翻译 Python 查找Twitter推文中最流行的推文元素

查找Twitter推文中最流行的推文元素

2014-07-22 07:00:29 1182

翻译 Python 正则表达式验证时间

12小时制(1[0-2]|0?[1-9]):([0-5]?[0-9]):([0-5]?[0-9])24小时制(2[0-3]|[01]?[1-9]):([0-5]?[0-9]):([0-5]?[0-9])

2014-07-21 17:20:41 1698

原创 Python 查找Twitter中特定话题中最流行(转载最多)的10个Tweet

CODE:#!/usr/bin/python # -*- coding: utf-8 -*-'''Created on 2014-7-21@author: guaguastd@name: find_popular_tweets.py''' if __name__ == '__main__': # import login, see http://blog.cs

2014-07-21 06:57:32 751

原创 Python 获取新浪微博指定用户的微博列表

CODE:#!/usr/bin/python # -*- coding: utf-8 -*-'''Created on 2014-7-18@author: guaguastd@name: statusesUserTimeline.py'''if __name__ == '__main__': # import json import json

2014-07-18 07:49:31 1538

翻译 Python 收集Twitter时间序列数据

Python 收集Twitter时间序列数据

2014-07-18 06:52:17 1385

原创 Python 正则表达式验证传统日期

正则表达式验证传统日期

2014-07-16 13:52:47 6346

翻译 Python 以mongo格式保存和读取json数据

Python 以mongo格式保存和读取json数据

2014-07-16 07:04:32 5665

翻译 Python 以txt格式保存和读取json数据

Python 以txt格式保存和读取json数据

2014-07-15 06:56:19 9463

翻译 Python 构建方便的函数调用

Python 构建方便的函数调用

2014-07-14 06:44:38 3536

原创 Python 提取新浪公共微博中转载次数最多的微博转载数,用户名,内容

Python 提取新浪公共微博中转载次数最多的微博转载数,用户名,内容

2014-07-11 07:41:54 1782

原创 Python 对新浪微博的元素 (Word, Screen Name)的词汇多样性分析

Python 对新浪微博的元素 (Word, Screen Name)的词汇多样性分析

2014-07-10 07:14:57 1329

原创 Python 对Twitter中指定话题的被转载Tweet数量的频谱分析

Python 对Twitter中指定话题的被转载Tweet数量的频谱分析

2014-07-10 05:59:57 1208

原创 Python 对新浪微博的博文元素 (Word, Screen Name)的频率分析

Python 对新浪微博的博文元素 (Word, Screen Name)的频率分析

2014-07-09 07:28:53 1242

原创 Python 对Twitter中指定话题的Tweet基本元素的频谱分析

Python 对Twitter中指定话题的Tweet基本元素的频谱分析

2014-07-09 06:44:12 1463

原创 Python 提取新浪微博的博文中的元素(包含Text, Screen_name)

Python 提取新浪微博的博文中的元素(包含Text, Screen_name)

2014-07-08 07:18:30 1996

原创 Python 可视化Twitter中指定话题中Tweet的词汇频率

Python 可视化Twitter中指定话题中Tweet的词汇频率

2014-07-08 06:36:46 1222

原创 Python 提取Twitter特定话题中转载tweet的用户

Python 提取Twitter特定话题中转载tweet的用户

2014-07-07 06:34:42 1659 1

原创 Python 查找Twitter中特定话题中最流行的10个转发Tweet

Python 查找Twitter中最流行(转载最多)的10个Tweet

2014-07-04 06:27:09 1358

原创 Python 获取新浪微博的最新公共微博

Python 获取新浪微博的最新公共微博

2014-07-03 07:01:39 16604

翻译 Python 对Twitter tweet的元素 (Word, Screen Name, Hash Tag)的词汇多样性分析

Python 对Twitter tweet的元素 (Word, Screen Name, Hash Tag)的词汇多样性分析

2014-07-03 06:28:11 1607

翻译 Python 对Twitter tweet的元素 (Word, Screen Name, Hash Tag)的频率分析

Python 对Twitter tweet的元素 (Word, Screen Name, Hash Tag)的频率分析

2014-07-02 06:30:42 1074

翻译 Python 提取Twitter tweets中的元素(包含text, screen names, hashtags)

Python 提取Twitter tweets中的元素

2014-07-01 06:50:26 2519

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关注的人

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