一、简介 1、HSV颜色空间(hue色调,saturation饱和度,value亮度) HSV颜色空间与人眼所看色彩较接近, 故常用于颜色检测与识别。其中H(色调)、S(饱和度)、V(亮度) H 不同的颜色(红色/绿色/蓝色) 范围: 0~360 S 颜色深浅(浅红/深红) 范围: 0.0~1.0 ...
分类:
其他好文 时间:
2018-09-18 16:14:22
阅读次数:
225
引言: 网上有有很多datagirp的激活码,但是经过尝试很多都失效了,找了半天终于 找到了一个可用的激活码! 1. 激活码 适用版本: DataGrip2018.2.3,2018.1.1,其他版本没有试过。 ...
分类:
其他好文 时间:
2018-09-15 12:22:19
阅读次数:
11126
前言 JavaScript中对象的本质是键值对的集合,ES5中的数据结构,主要是用Array和Object,但是键只能是字符串。为了弥补这种缺憾,ES6带来了一种新的数据结构Map。 Map也是键值对的集合,只是键不仅可以是字符串还可以是其他数据类型,比如:对象(是不是很神奇)。请看下面例子。。下面 ...
分类:
Web程序 时间:
2018-09-11 18:45:11
阅读次数:
184
import pandas as pd import numpy as np # 读取数据,并以表格的形式显示 df1 = pd.DataFrame(pd.read_excel('a.xlsx')) # 判断是否为空,每个表格都会去判断,并返回True/False a1 = df1.isnull()... ...
分类:
其他好文 时间:
2018-09-09 12:05:07
阅读次数:
170
35 Search Insert Position Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be ...
分类:
其他好文 时间:
2018-09-05 23:56:52
阅读次数:
183
Given a sorted array nums, remove the duplicates in-place such that duplicates appeared at most twice and return the new length. Do not allocate extra ...
分类:
其他好文 时间:
2018-09-03 19:34:37
阅读次数:
174
Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c + d = target? Find all unique q ...
分类:
其他好文 时间:
2018-09-02 23:52:41
阅读次数:
213
import java.util.ArrayList;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Map;import java.util.Map.Entry; p ...
分类:
编程语言 时间:
2018-09-01 21:53:22
阅读次数:
394
示例Table 插入测试数据 预览:\\ 复制并插入 下面的语句实现了: 避开主键 避开其他重复索引(虽然 demo 中没有,但实际环境可能会用到) 使用随机字符,并合并两个字符串 记录数据录入时间 执行结果: ...
分类:
数据库 时间:
2018-08-31 17:07:12
阅读次数:
153
原文:The top data structures you should know for your next coding interview 译者:Fundebug 为了保证可读性,本文采用意译而非直译。另外,本文版权归原作者所有,翻译仅用于学习。 1976年,一个瑞士计算机科学家写一本书《A ...
分类:
其他好文 时间:
2018-08-30 11:10:36
阅读次数:
193