码迷,mamicode.com
首页 >  
搜索关键字:close    ( 9262个结果
python进阶--文件读写操作
Python读写文件1. open 使用open打开文件后一定要记得调用 文件对象的close()方法。比如可以用try --finally语句来确保最后能关闭文件。>>>f1 = open('thisfile.txt')>>>try: f1.read() finally: f1.c...
分类:编程语言   时间:2014-06-29 00:28:54    阅读次数:296
div遮盖,弹出层
LIGHTBOX EXAMPLE 可以根据自己要求修改css样式 点击这里打开窗口 asdfasd This is the lightbox content. Close ...
分类:其他好文   时间:2014-06-28 23:09:50    阅读次数:341
Stream 和 byte[] 之间的转换
一. 二进制转换成图片?12345MemoryStream ms = new MemoryStream(bytes);ms.Position = 0;Image img = Image.FromStream(ms);ms.Close();this.pictureBox1.Image二. C#中byt...
分类:其他好文   时间:2014-06-28 20:02:37    阅读次数:211
LeetCode: Valid Parentheses 题解
Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The brackets must close in the correct ...
分类:其他好文   时间:2014-06-18 12:56:59    阅读次数:155
Valid Parentheses
题目 Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must close in the correct order, "()" and "()[]{}" ...
分类:其他好文   时间:2014-06-17 21:34:00    阅读次数:189
PHP中的CURL函数库
PHP中的CURL函数库(Client URL Library Function)curl_close — 关闭一个curl会话curl_copy_handle — 拷贝一个curl连接资源的所有内容和参数curl_errno — 返回一个包含当前会话错误信息的数字编号curl_error — 返回...
分类:Web程序   时间:2014-06-17 20:00:28    阅读次数:199
Matlab实现Hough变换检测图像中的直线
Hough变换的原理: 将图像从图像空间变换至参数空间,变换公式如下: 变换以后,图像空间与参数空间存在以下关系: 图像空间中的一点在参数空间是一条曲线,而图像空间共线的各点对应于参数空间交于一点的各条曲线。 下面使用Matlab实现Hough变换对图像中的直线划痕进行检测。 close all; clear all; I = imread('scratch.tif'); figu...
分类:其他好文   时间:2014-06-15 15:21:40    阅读次数:272
Matlab实现图像分割
下面使用极小值点阈值选取方法,编写MATLAB程序实现图像分割的功能。 极小值点阈值选取法即从原图像的直方图的包络线中选取出极小值点, 并以极小值点为阈值将图像转为二值图像 clear all; close all ; G=imread('rabbit.png'); figure(); subplot(2,2,1); imshow(G); subplot(2,2,2); imhist(G...
分类:其他好文   时间:2014-06-15 15:03:26    阅读次数:293
Python生成测试数据
本文出自:http://blog.csdn.net/svitter 生成1~10的随机数1000个: import random fp = open("test", 'w'); for i in range(1, 1000): a = random.randint(1,10) fp.write(str(a)+"\n"); fp.close() 注意:写入文件的不会在最后写...
分类:编程语言   时间:2014-06-15 13:39:10    阅读次数:321
PS 滤镜——染色玻璃
%%%% 完成PS 中的染色玻璃滤镜特效 clc; clear all; close all; addpath('E:\PhotoShop Algortihm\Image Processing\PS Algorithm'); Image=imread('4.jpg'); Image=double(Image); Gray_Image=rgb2gray(Image/...
分类:其他好文   时间:2014-06-14 10:39:21    阅读次数:240
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!