css选择器:将css添加到<head>与</head>之间,并用<style></style>标记声明的一种样式。语法如下:<style>这里写css内容</style> 全局选择器:设置所有标签使用同一样式,用*表示语法:*{}例如:*{color:red;} 所有字体都为红色 标签选择器:用于 ...
分类:
Web程序 时间:
2019-05-26 16:25:02
阅读次数:
156
from:https://www.cnblogs.com/peizhe123/p/5086128.html GBDT(Gradient Boosting Decision Tree) 又叫 MART(Multiple Additive Regression Tree),是一种迭代的决策树算法,该算法 ...
分类:
数据库 时间:
2019-05-23 16:38:11
阅读次数:
116
基于flask的网页聊天室(二) 前言 接上一次的内容继续完善,今天完成的内容不是很多,只是简单的用户注册登录,内容具体如下 具体内容 这次要加入与数据哭交互的操作,所以首先要建立相关表结构,这里使用flask-sqlalchemy来辅助创建 首先修改之前的init文件为: from flask i ...
分类:
Web程序 时间:
2019-05-10 20:24:19
阅读次数:
188
目录 1. border radius 2. box shadow 3. text shadow 4. gradients linear gradient radial gradient 5. transition 6. animation 7. multi columns 8. flex box ...
分类:
Web程序 时间:
2019-05-10 16:19:31
阅读次数:
215
import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.read_data_sets("E:\\MNIST_data\\", one_hot=True)... ...
分类:
编程语言 时间:
2019-05-07 21:31:58
阅读次数:
173
恢复内容开始 水平渐变 linear gradients 语法 background:linear-gradient(direction,color1,color2,……) Direction 0% 在0%处 是纯红色 20%是纯蓝色 如果最后一个值不是100% 代表从这个值到100%都是纯oran ...
分类:
Web程序 时间:
2019-05-07 19:42:45
阅读次数:
928
兼容当前五大浏览器的渐变颜色背景gradient的写法<style type="text/css" media="screen"> #gradient { width: 200px; height: 200px; /* 如果浏览器不支持渐变,使用图像作为背景 */ background: url(g ...
分类:
Web程序 时间:
2019-05-07 10:16:53
阅读次数:
199
1、高通滤波器:高通滤波器会根据像素与周边像素的亮度差值来提升该像素的亮度的滤波器。 低通滤波器:在像素与周围像素的亮度差小于一个特定值时,平滑该像素的亮度。 canny算子:5个步骤;使用高斯滤波器对图像进行去噪、计算梯度、在边缘上使用非最大抑制(NMS)、在检测到的边缘上使用双阈值去除假阳性(f ...
分类:
其他好文 时间:
2019-05-04 15:05:06
阅读次数:
177
CSS3实现圆角 (border-radius: 8px) 阴影 (box-shadow: 10px) 对文字加特效 (text-shadow) 线性渐变(gradient) 旋转(transform):rotate(9deg) 缩放 (transform):scale(0.85,0.90) 倾斜( ...
分类:
Web程序 时间:
2019-05-02 18:34:25
阅读次数:
179