这个功能可能平时并不需要, 但是今天2020年4月4日,为了哀悼抗疫中牺牲的英雄们,很多网站都变成了黑白的,今天就来看看技术上怎么实现 用css3中的filter属性,可以实现一些像ps中的简单滤镜效果: 灰度: grayscale 模糊: blur 对比度: contrast 色相旋转: hue- ...
分类:
Web程序 时间:
2020-04-04 09:40:46
阅读次数:
149
body { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale(100%) ...
分类:
Web程序 时间:
2020-04-03 18:34:28
阅读次数:
112
soup.find_all(lambda tag: tag.name=='li' and tag.get('class')==['table_col']) bs中使用的是模糊匹配,所以查到为所有的包括table_col的所有<li> ...
分类:
其他好文 时间:
2020-03-31 14:21:59
阅读次数:
50
IMP-00038 Table of Contents 1. 现象 2. 原因 3. 解决方法 1 现象 报错信息: IMP-00038: Could not convert to environment character set's handle IMP-00000: Import termin ...
分类:
其他好文 时间:
2020-03-30 21:27:34
阅读次数:
85
import cv2import numpy as np#此方法可以将彩色图根据一定的阈值转换为黑白图。其中阈值用于划分图片的黑白(局部方法)def threshold_deom(image): gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) ret, ...
分类:
编程语言 时间:
2020-03-28 23:22:47
阅读次数:
103
无论是垂直搜索,还是通用搜索引擎,对外提供搜索服务其压力都比较大,经常有垂直电商在做活动的时候服务器宕机。对面访问压力比较大的情况,一般的应对方法就是【集群】+【负载均衡】。Solr提供了两种解决方案来对应访问压力。其一是Replication,其一是SolrCloud。 Replication采用 ...
分类:
其他好文 时间:
2020-03-26 12:23:10
阅读次数:
76
VideoCapture类实现视频获取,可以从摄像头或者文件进行视频读取。首先,创建一个VideoCapture对象,参数可以是设备索引(摄像头索引)或视频文件的名称。如果是设备索引,当只连接一台摄像机时,可以是0或-1;也可以通过传递1来选择第二个摄像头。然后,便可以通过该对象一帧一帧的获取视频... ...
分类:
其他好文 时间:
2020-03-23 22:14:48
阅读次数:
119
plt.imshow() plt.imshow() plt.imshow(z, cmap = plt.cm.gray_r)#其中z为绘制对象 .imshow() Plotting numpy arrays as images plt.cm.gray_r Colormap 加上_r相当于颜色 reve ...
分类:
编程语言 时间:
2020-03-19 16:31:14
阅读次数:
68
1.id选择器,其中每个标签的id选择器的值是唯一的 <div id="text1"> css中用 #text1{ } 2.类选择器(class),可以有多个 <div class="text1"></div> <div class="text1 text2"></div> css中用 .text{ ...
分类:
Web程序 时间:
2020-03-18 23:38:56
阅读次数:
88
之前分享的 [日志分析]Graylog2采集Nginx日志 主动方式 这篇文章介绍了Graylog如何通过Graylog Collector Sidecar来采集nginx日志。 由于日志是未经处理的,所以类似$remote_addr $request_time $upstream_addr $up ...
分类:
其他好文 时间:
2020-03-18 11:21:10
阅读次数:
185