1 from PIL import Image 2 import numpy as np 3 4 def paint(oname,sname): 5 a = np.asarray(Image.open(oname).convert('L')).astype('float') 6 7 depth = ... ...
分类:
其他好文 时间:
2017-04-30 19:56:58
阅读次数:
227
出现如下提示,错误: 找不到或无法加载主类 com.sun.tools.javac.MainMSB6006: 或 閿欒: 绋嬪簭鍖卆ndroid.support.v4.view.ViewPager涓嶅瓨鍦? 删掉bin,obj文件夹重新生成 还是没有效果的话参照这里http://blog.csdn ...
分类:
移动开发 时间:
2017-04-29 16:12:52
阅读次数:
1823
在执行任何查询时,SQL Server都会将数据读取到内存,数据使用之后,不会立即释放,而是会缓存在内存Buffer中,当再次执行相同的查询时,如果所需数据全部缓存在内存中,那么SQL Server不会产生Disk IO操作,立即返回查询结果,这是SQL Server的性能优化机制。 一,主要的内存 ...
分类:
其他好文 时间:
2017-04-28 17:14:34
阅读次数:
247
[root@nn01 bin]# ./hadoop namenode -format 12/05/21 06:13:51 INFO namenode.NameNode: STARTUP_MSG: /*************************************************** ...
分类:
其他好文 时间:
2017-04-28 16:07:17
阅读次数:
279
转载请注明出处: http://www.cnblogs.com/cnwutianhao/p/6772759.html MVP架构模式 大家都不陌生,Google 也给出过相应的参考 Sample, 但是有的人会有疑问为啥 GitHub 上面大神写的 MVP架构模式 和 Google 的不太一样。 G ...
分类:
其他好文 时间:
2017-04-27 13:32:24
阅读次数:
263
SharpDevelop浅析_4_TextEditor_自动完成、代码折叠…… SharpDevelop浅析_4_TextEditor_自动完成、代码折叠……Parser及其应用: Code Completion, Method Insight, Class Scout ... 1、Demo界面及功 ...
分类:
其他好文 时间:
2017-04-27 13:30:04
阅读次数:
603
什么是pom? pom作为项目对象模型。通过xml表示maven项目,使用pom.xml来实现。主要描述了项目:包括配置文件;开发者需要遵循的规则,缺陷管理系统,组织和licenses,项目的url,项目的依赖性,以及其他所有的项目相关因素。 快速察看:<project> <modelVersion ...
分类:
其他好文 时间:
2017-04-26 15:57:53
阅读次数:
216
#coding=utf-8from PIL import Imageimport argparse#命令行输入参数处理parser = argparse.ArgumentParser()parser.add_argument('file') #输入文件parser.add_argument('-o' ...
分类:
其他好文 时间:
2017-04-26 15:52:07
阅读次数:
203
import requests import re import time from bs4 import BeautifulSoup today = time.strftime('%Y-%m-%d',time.localtime(time.time())) one_url = 'http://hz... ...
分类:
编程语言 时间:
2017-04-26 13:07:59
阅读次数:
499
转载:http://blog.sina.com.cn/s/blog_80ce3a550102w26x.html Convert between Python tuple and list Convert between Python tuple, list and NumPy 1D array Co ...
分类:
编程语言 时间:
2017-04-26 13:01:32
阅读次数:
4196