VideoWriter的作用是保存录制的视频 学习心得: VideoCapture capture(0);之后 可以·进行一系列操作- 如: 获取所抓捕的视频的长、宽 视频帧数和每秒处理的帧数(fps) int frame_width = capture.get(CAP_PROP_FRAME_WID ...
分类:
其他好文 时间:
2021-03-29 12:53:21
阅读次数:
0
以创建sqli-labs靶场为例子记录一下docker的常用指令 1. 镜像 1.2 查找镜像 docker search sqli-labs 1.3 获取镜像 docker pull sqli-labs 1.4 登录/退出第三方仓库 docker login/logout [ 仓库地址 ] 1.5 ...
分类:
数据库 时间:
2021-03-29 12:47:16
阅读次数:
0
#include <stdio.h> #define NUMBER 100 int push(int* a, int top, int data) { a[++top] = data; return top; } int pop(int* a, int top) { if (top == -1) { ...
分类:
编程语言 时间:
2021-03-29 12:23:07
阅读次数:
0
以内核模块 drbd 为例: 1、创建 /etc/modules-load.d/drbd.conf 中,直接写模块名: drbd 2、创建 /etc/sysconfig/modules/drbd.modules:内容如下 # drbd module exists? /usr/sbin/modinfo ...
分类:
其他好文 时间:
2021-03-29 11:51:34
阅读次数:
0
遇到的问题 Forbidden (CSRF token missing or incorrect.): /register/ 解决办法 是因为本人在写Ajax的时候,data: $('#regForm').serialize(),少写了一个“#” 希望对各位有帮助,敲代码一定要细心! ...
分类:
其他好文 时间:
2021-03-26 15:32:10
阅读次数:
0
Description:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to t ...
分类:
其他好文 时间:
2021-03-18 14:37:13
阅读次数:
0
Given a non-negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you could get. ...
分类:
其他好文 时间:
2021-03-18 14:32:17
阅读次数:
0
华为交换机配置堆叠,请大家参考。 S5720s-12TP-LI-AC Istack 堆叠配置Leaf1 实施 先关闭物理接口[Leaf1]int g 0/0/11[Leaf1-GigabitEthernet0/0/11]shutdown[Leaf1]int g 0/0/12[Leaf1-Gigabi ...
分类:
其他好文 时间:
2021-03-17 14:24:45
阅读次数:
0
Linux命令cat使用攻略 选项解析: -A, --show-all 等价于 -vET -b, --number-nonblank 对非空输出行(包括仅仅有空格的行)编号,空输出行,指的是该行没有任何内容,即连续2次敲击回车按钮。 -e 等价于 -vE -E, --show-ends 在每行结束处 ...
分类:
系统相关 时间:
2021-03-16 14:12:35
阅读次数:
0
1.url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。 3.timeout: 要求为Number类型的 ...
分类:
Web程序 时间:
2021-03-16 13:48:26
阅读次数:
0