码迷,mamicode.com
首页 >  
搜索关键字:capture    ( 958个结果
python+opencv读取视频并设置可调整窗口大小
import cv2 cap = cv2.VideoCapture('data/1.mp4') while cap.isOpened(): ret, frame = cap.read() # 调整窗口大小 cv2.namedWindow("frame", 0) # 0可调大小,注意:窗口名必须ims... ...
分类:编程语言   时间:2019-09-12 10:09:09    阅读次数:1392
第一次实验报告:使用Packet Tracer分析HTTP数据包
1 实验目的 熟练使用Packet Tracer工具。分析抓到的HTTP数据包,深入理解:HTTP协议,包括语法、语义、时序。 2 实验内容 客户端向服务器发送请求报文,服务器向客户端发送响应报文。具体包含: 建立网络拓扑结构 配置参数 抓包 分析数据包 3. 实验报告 (1)个人信息 姓名:祁翌炀 ...
分类:Web程序   时间:2019-09-08 15:35:45    阅读次数:150
js 压缩图片(只缩小体积,不更改图片尺寸)
1.情景展示 如上图所示,点击上传图片按钮,调用手机摄像头拍照功能。 <input onchange="javascript:imgFun.uploadPicture();" type="file" name="file" id="file" accept="image/*" capture="ca ...
分类:Web程序   时间:2019-09-08 15:33:30    阅读次数:209
haproxy 2.0 dataplaneapi docker 镜像
为了方便测试dataplaneapi 基于官方的docker镜像,制作了一个简单的包含dataplaneapi 的镜像 下载dataplaneapi https://github.com/haproxytech/dataplaneapi/releases Dockerfile FROM haprox ...
分类:Windows程序   时间:2019-09-01 01:02:29    阅读次数:268
Headless Chrome long image capture issue
原文引用https://www.dazhuanlan.com/2019/08/26/5d6300778d22d/ The problemRecently I had received complaint about my capture service not export complete ima... ...
分类:其他好文   时间:2019-08-26 09:56:31    阅读次数:117
阻止小程序遮罩层下方图层滚动
原因是因为: touchmove事件冒泡; 解决方案: 阻止遮罩层冒泡,在小程序里面 利用catch+事件名就可以阻止冒泡, 所以 在遮罩层填上事件 catchtouchmove="preventdefault" 小程序1.5.0后可以写上 capture-catch:touchmove="prev ...
分类:微信   时间:2019-08-24 19:02:45    阅读次数:134
读懂timing report
三部分:表头/launch path /capture path 1.表头 1) 工具版本信息:如示例中的18.10-p001,对某个具体项目timing signoff 工具的版本最好保证一致; 操作系统信息:这一项无关紧要。 生产日期:这一项还是有看一下的必要,避免低级错误,哼哧哼哧debug ...
分类:其他好文   时间:2019-08-21 00:22:10    阅读次数:459
Python Ethical Hacking - Packet Sniffer
PACKET_SNIFFER Capture data flowing through an interface. Filter this data. Display Interesting information such as: Login info(username&password). Vi ...
分类:编程语言   时间:2019-08-21 00:10:31    阅读次数:117
Lambda表达式的使用
Lambda表达式(可以理解为一个函数对象,调用时重载了“()”) 定义:一个匿名函数,通过不同[capture]来捕获上下文的变量,进行处理的函数 格式:[capture] (params) mutable -> return-type {} 参数介绍: [capture]: (params) m ...
分类:其他好文   时间:2019-08-18 18:05:21    阅读次数:87
一些chrome调试
1.command + shift + P 变换主题 theme截屏 capture 2.添加代码片段 Sources->Snippets->new Snippets->save,run 3.command + p 迅速寻找资源 4.console 中的 '$'(1)$0 是对我们当前选中的 htm ...
分类:其他好文   时间:2019-08-18 14:03:04    阅读次数:134
958条   上一页 1 ... 13 14 15 16 17 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!