牛骨文教育服务平台(让学习变的简单)
博客笔记

			
				python︱批量操作文件(os)、图片操作技巧(下载网络图片、skimage.io)
python︱批量操作文件(os)、图片操作技巧(下载网络图片、skimage.io) 2017-03-06
7数据量大了,什么情况都有可能会发生。 . 1、文件名字获取 相关帖子: 一句python,一句R︱模块导入与查看、数据读写出入、数据查看函数、数据类型

			
				python数字图像处理(6):图像的批量处理
python数字图像处理(6):图像的批量处理 2016-07-29
有些时候,我们不仅要对一张图片进行处理,可能还会对一批图片处理。这时候,我们可以通过循环来执行处理,也可以调用程序自带的图片集合

			
				skimage-图像基本操作
skimage-图像基本操作 2017-10-27
参考: 1、http://scikit-image.org/docs/stable/ 2、http://scikit-image.org/docs/stable/user_guide.html 1Getting started 2A crash course on NumPy for images NumPy indexing Color images Coordinate conve
28
2017-08
LeetCode- Three Sum 2017-08-28
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: The solution set must not contain dupli
19
2013-03
leetcode: 2Sum/3Sum/3SumClosest/4Sum系列问题 2013-03-19
leetcode(http://leetcode.com/onlinejudge)上有好几道关于数组中几个数据和为target的题目。恰好正在看剑指offer中“和为s的两个数组这章”,据此思想,lee
09
2013-10
求和问题总结(leetcode 2Sum, 3Sum, 4Sum, K Sum) 2013-10-09
转载自: http://tech-wonderland.net/blog/summary-of-ksum-problems.html 前言: 做过leetcode的人都知道, 里面有2sum, 3sum(closest), 4sum等问题, 这些也是面试里面经典
23
2016-10
Sql语句转换格式函数Cast、Convert 2016-10-23
Cast和Convert函数都是用来进行数据格式转换的,使用频率还是很高的,记录下来以备查看。 在大部分情况下,两者执行的功能相同,不同的是convert还提供了一
19
2016-08
sql server 存储过程中日期格式转换(varchar与datetime) 2016-08-19
假设从某程序中传输Time数据给数据库db的存储过程proc_Name,存储过程执行插表操作,将数据@time插入表Table中作为Time字段(类型也为datetime)的值。 用
07
2017-07
python3将csv文件中的两列数据读取出来,并且按行写入txt文本之中 2017-07-07
import csv import pandas as pd a = open("taxi.csv", "r") Hlength=len(a.readlines()) data_x= pd.read_csv(filepath_or_buffer = "taxi1.csv", sep = ",")["lo"].values data_y= pd.read_csv(filepath_or_buffer = "taxi1
09
2009-02
CONVERT函数 getdate()样式表 2009-02-09
格式:CONVERT(data_type,expression[,style]) 说明:此样式一般在时间类型(datetime,smalldatetime)与字符串类型(nchar,nvarchar,char,varchar)相互转换的时候才用到. 例子:SEL