码迷,mamicode.com
首页 >  
搜索关键字:pil    ( 2160个结果
Using Oracle Database In-Memory with Oracle E-Business Suite
Database In-Memory is one of a number of options that can be deployed to address Oracle E-Business Suite performance concerns and scalability requirem ...
分类:数据库   时间:2017-10-12 12:06:34    阅读次数:224
python之re模块
re模块中常用功能函数 一、加载模块 import re 二、编译正则表达式 re.compile(pat, flags = 0) #把一个正则表达式pat编译成正则对象并返回,以便可以用正则对象的match和search等方法。 pat 编译时,正则表达式字符串 flags 编译标志位,用于修改正 ...
分类:编程语言   时间:2017-10-10 16:42:07    阅读次数:248
二维码生成
//在具体介绍该扫描库之前我们先看一下其具体的使用方式,看看是不是几行代码就可以集成二维码扫描的功能。 在module的build.gradle中执行compile操作 //在Application中执行初始化操作 //在代码中执行打开扫描二维码界面操作 //这里的REQUEST_CODE是我们定义 ...
分类:其他好文   时间:2017-10-10 14:49:09    阅读次数:193
P3512 [POI2010]PIL-Pilots
P3512 [POI2010]PIL-Pilots我一开始打的O(n^2)(最坏情况)的算法.枚举区间长度。60分 正解不用枚举区间长度,动态维护+更新答案,O(n). ...
分类:其他好文   时间:2017-10-10 09:54:56    阅读次数:176
Codeblocks 中文乱码解决方法
1.修改源文件保存编码 settings->Editor->gernal settings 右边的Encoding group Box Use encoding when opening files: 这个表示打开文件用的格式,第一次保存文件的时候也会用这个格式。 As default encodi ...
分类:其他好文   时间:2017-10-09 10:52:49    阅读次数:145
【笔记】PIL 中的 Image 模块
Image 模块提供了一个同名类(Image),也提供了一些工厂函数,包括从文件中载入图片和创建新图片。例如,以下的脚本先载入一幅图片,将它旋转 45 度角,并显示出来: 1 >>>from PIL import Image2 >>>im = Image.open("j.jpg")3 >>>im.r ...
分类:其他好文   时间:2017-10-08 14:49:02    阅读次数:259
预处理、const、static与sizeof-使用const与#define的特点及区别
1:#define只是用来做文本替换的。例如: 那么,程序进行编译的时候,编译器会首先将“#define PI 3.1415926”以后所有代码中的“PI”全部换成“3.1415926”,然后进行编译。因此,#define常量则是一个Coppile-Time概念,它的生命周期止于编译器,它存在于程序 ...
分类:其他好文   时间:2017-10-08 10:22:40    阅读次数:137
未能找到 CodeDom 提供程序类型“Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider,
未能找到 CodeDom 提供程序类型“Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version ...
分类:Web程序   时间:2017-10-06 21:28:26    阅读次数:742
Folly: Facebook Open-source Library Readme.md 和 Overview.md(感觉包含的东西并不多,还是Boost更有用)
folly/ For a high level overview see the README Components Below is a list of (some) Folly components in alphabetical order, along with a brief descri ...
分类:其他好文   时间:2017-10-05 21:22:39    阅读次数:279
selenium识别登录验证码---基于python实现
本文主要是通过PIL+pytesseract+Tesseract-OCR实现验证码的识别 其中PIL为Python Imaging Library,已经是Python平台事实上的图像处理标准库了。PIL功能非常强大,但API却非常简单易用。 PIL第三方库安装 pip install PIL Ima ...
分类:编程语言   时间:2017-10-02 17:47:59    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!