正视自己的不足,以足够的勇气改变自己。 Repetition is the mother of all learning 重复是学习之母。 It's not what we do once in a while that shapes our lives. It's what we do consi ...
分类:
其他好文 时间:
2019-09-21 21:19:24
阅读次数:
115
径向渐变(radial gradients):从起点到终点颜色从内而外沿进行圆形渐变。 语法 background:radial-gradient(center,shape size,start-color,……,last-color); 径向渐变-设置形状 语法: background:radia ...
分类:
Web程序 时间:
2019-09-20 18:25:39
阅读次数:
115
KNN最近邻算法原理 KNN英文全称K-nearst neighbor,中文名称为K近邻算法,它是由Cover和Hart在1968年提出来的 KNN算法原理: 1. 计算已知类别数据集中的点与当前点之间的距离; 2. 按照距离递增次序排序; 3. 选择与当前距离最小的k个点; 4. 确定前k个点所在 ...
分类:
编程语言 时间:
2019-09-19 01:02:13
阅读次数:
201
Computer Vision;Active Shape Models;翻译:主动外观模型;1995 ...
分类:
移动开发 时间:
2019-09-18 13:19:05
阅读次数:
199
原题链接在这里:https://leetcode.com/problems/domino-and-tromino-tiling/ 题目: We have two types of tiles: a 2x1 domino shape, and an "L" tromino shape. These s ...
分类:
其他好文 时间:
2019-09-16 11:43:48
阅读次数:
104
1、梯度下降选择固定步长可能产生的情况:收敛、发散、重复的在两个数之间跳跃 2、np.zeros_like(x) 生成一个shape和x一样的全为0的数组 3、plt.counter画等高线图 4、tensorflow的scope 变量命名空间 (1)若tf.Variable(初始值,name=' ...
分类:
其他好文 时间:
2019-09-14 17:19:58
阅读次数:
121
The order of a Tree Problem Description As we know,the shape of a binary search tree is greatly related to the order of keys we insert. To be precisel ...
分类:
编程语言 时间:
2019-09-14 13:27:43
阅读次数:
101
package test01;import java.awt.Graphics;import java.awt.Graphics2D;import java.awt.Shape;import java.awt.geom.Ellipse2D;import java.awt.geom.Rectangle ...
分类:
编程语言 时间:
2019-09-14 11:14:08
阅读次数:
121
1、获取像素并修改 读取一副图像,根据像素的行和列的坐标获取它的像素值,对于RGB图像而言,返回RGB的值,对于灰度图则返回灰度值 执行结果: 2、获取图像的属性 图像属性包括:行,列,通道,图像数据类型,像素数目等 2.1 img.shape可以获得图像的形状,返回值是一个包含行数,列数,通道数的 ...
分类:
其他好文 时间:
2019-09-11 16:04:04
阅读次数:
106
void CmapwingisTest2View::OnToolsAdd32780() { TCHAR szFilters[]= _T("SHP Files (*.shp)|*.shp||"); CFileDialog fileDlg (TRUE,_T("shp"),_T("*.shp"), OFN ...
分类:
其他好文 时间:
2019-09-09 15:11:09
阅读次数:
161