入门客AI创业平台(我带你入门,你带我飞行)
博客笔记
23
2016-10
Sql语句转换格式函数Cast、Convert 2016-10-23
Cast和Convert函数都是用来进行数据格式转换的,使用频率还是很高的,记录下来以备查看。 在大部分情况下,两者执行的功能相同,不同的是convert还提供了一
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等问题, 这些也是面试里面经典
19
2013-03
leetcode: 2Sum/3Sum/3SumClosest/4Sum系列问题 2013-03-19
leetcode(http://leetcode.com/onlinejudge)上有好几道关于数组中几个数据和为target的题目。恰好正在看剑指offer中“和为s的两个数组这章”,据此思想,lee
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

			
				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

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

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

			
				python数字图像处理(7):图像的形变与缩放
python数字图像处理(7):图像的形变与缩放 2016-01-17
图像的形变与缩放,使用的是skimage的transform模块,函数比较多,功能齐全。 1、改变图片尺寸resize 函数格式为: skimage.transform.resize(image, output_sh
12
2016-11
DEV—ImageCollection 2016-11-12
(1)右键点击此控件,选中Add Image,可从本地获取相关图标 (2)Page Group里的Button前面新添加一个小图标、大图标 a.看Ribbon Control的属性,将image co
08
2016-05
用 python skimage做图像处理 2016-05-08
导言:由于经常需要处理图像,习惯了matlab那么好用的图像处理工具箱,搬到python后有点不知所措了。搜了下python图像处理方面的库,好多PIL的教程,但是无