码迷,mamicode.com
首页 >  
搜索关键字:pil    ( 2160个结果
vscode中使用Experimental Decorators报错
在vscode中使用es7的新语法decorator会报错,如图: 这是错误来自与vscode的JS support,只要在项目根目录下创建一个jsconfig.json文件,添加如下内容: 添加好了有可能需要重启才能生效。 github原issue: https://github.com/Micr ...
分类:其他好文   时间:2017-10-02 13:07:31    阅读次数:144
pythonchallenge闯关 第9题
9、Hint:(1)connect the dots (2)good.jpg (3)first+second=? first:…… second:…… PIL 又见PIL 在点之间连线 # -*- coding:UTF-8 -*- from PIL import Image, ImageDraw i ...
分类:编程语言   时间:2017-10-02 00:52:19    阅读次数:329
pythonchallenge闯关 第7题
7、Hint:给了一副图片'oxygen.png',中间有一道马赛克 先试着把马赛克像素返回为内容 rgba模式(r=red,g=green,b=blue,a=alpha >透明度) 这道题真的有问题……自己量的像素…… 用PIL 这道题我用的python2.7 马赛克长:(1,608)宽(44,5 ...
分类:编程语言   时间:2017-10-02 00:21:33    阅读次数:179
spider爬虫练习
package com.jinzhi.spider; import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.MalformedURLExcep ...
分类:其他好文   时间:2017-10-01 20:32:33    阅读次数:201
Myeclipse 反编译插件 jad 安装
Myeclipse反编译JAD插件的安装说明,适合新手和正在学习框架的朋友看 ...
分类:系统相关   时间:2017-09-30 15:01:05    阅读次数:245
JVM(essential)
JVM JRE JDK class loader + runtime data areas + excution engine class loader{load + link + initialize} load{ bootstrap class loader<- extension class ...
分类:其他好文   时间:2017-09-29 21:04:58    阅读次数:111
python3安装PIL
原创 2017-09-29 16:15:27 系统环境: 64位win10系统,同时安装python2.7与python3.6两个版本 安装: PIL是Python平台事实上的图像处理标准库,支持多种格式,并提供强大的图形与图像处理功能。目前PIL的官方最新版本为1.1.7,支持的版本为python ...
分类:编程语言   时间:2017-09-29 17:48:02    阅读次数:140
菜鸟成长日记:Java基础篇4 --- 正则表达式
一、初步认识 正则表达式是对字符串操作的一种逻辑公式,就是用事先定义好的一些特定字符、及这些特定字符的组合,组成一个“规则字符串”, 这个“规则字符串”用来表达对字符串的一种过滤逻辑。正则表达式是一种文本模式,模式描述在搜索文本时要匹配的一个或多个字符串 从网上搜集了两个例子,感觉很好贴上 例一 t ...
分类:编程语言   时间:2017-09-29 16:31:43    阅读次数:290
trait or abstract class?
首先你需要重用才需要考虑这个问题。If the behavior will not be reused, then make it a concrete class. 优先使用特质。一个类扩展多个特质是很方便的,但却只能扩展一个抽象类。 If you still do not know, after ...
分类:其他好文   时间:2017-09-29 16:28:53    阅读次数:199
CMakeLists.txt的写法
[1]ADD_LIBRARY: Add a library to the project using the specified source files.要求CMake根据指定的源文件生成库文件 . ? ADD_LIBRARY(libname [SHARED | STATIC | MODULE] ...
分类:其他好文   时间:2017-09-29 12:03:55    阅读次数:179
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!