上代码: #coding=utf-8 import cv2 import dlib path = "imagePath/9.jpg" img = cv2.imread(path) gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) #人脸分类器 detector ...
分类:
编程语言 时间:
2020-11-01 20:57:05
阅读次数:
29
1.网卡配置bond#网卡bond模式 Linux 多网卡绑定网卡绑定mode共有七种(0~6) bond0、bond1、bond2、bond3、bond4、bond5、bond6 常用的有三种mode=0:平衡负载模式,有自动备援,但需要”Switch”支援及设定。mode=1:自动备援模式,其中 ...
分类:
其他好文 时间:
2020-11-01 10:14:44
阅读次数:
16
我们之前学习了协程和信道,里面有很多例子,当时为了保证main goroutine在所有的goroutine都执行完毕后在退出,我们使用了time.Sleep这种方式 由于写的demo都是很简单的,sleep个1秒,我们感觉应该是够用的 但是在实际开发中,我们无法预知,所有的goroutine需要多 ...
分类:
编程语言 时间:
2020-10-31 01:36:50
阅读次数:
19
问题描述:com.mysql.jdbc.exceptions.jdbc4.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction 方案一、临时解决此问题 查找出此问题的thre ...
分类:
数据库 时间:
2020-10-29 10:26:12
阅读次数:
27
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
Web程序 时间:
2020-10-29 10:07:29
阅读次数:
32
#pragma execution_character_set("utf-8") #include <opencv2/opencv.hpp> #include <opencv2/core/core.hpp> int main() { cv::VideoCapture capDevice(0); ca ...
分类:
其他好文 时间:
2020-10-29 09:38:20
阅读次数:
15
离线, 截获请求 /serviceworker -/index.html -/index.js -/sw.js index.html == <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewp ...
分类:
其他好文 时间:
2020-10-26 11:17:19
阅读次数:
19
可以使用cy.wait(2000)这种,直接会等待2s。另外代码中可能需要等待某一种状态之后再继续运行,这时候可以用cy.waitUntil() cy.wait()是自带的命令,cy.waitUntil()则需要配置,配置方式如下: 1.在项目根目录用cmd或者powershell运行npm i - ...
分类:
其他好文 时间:
2020-10-22 22:51:44
阅读次数:
25
一、防抖 原理:在事件被触发n秒后再执行回调,如果在这n秒内又被触发,则重新计时。 场景: 1.按钮提交场景,防止多次提交按钮,只执行最后一次的提交 2.搜索框联想场景,防止联想发送请求,只发送最后一次输入 简易版: function debounce (func, wait) { let time ...
分类:
其他好文 时间:
2020-10-22 22:22:47
阅读次数:
25
当进程要获取某些资源(例如从网卡读取数据)的时候,但资源并没有准备好(例如网卡还没接收到数据),这时候内核必须切换到其他进程运行,直到资源准备好再唤醒进程。 waitqueue (等待队列) 就是内核用于管理等待资源的进程,当某个进程获取的资源没有准备好的时候,可以通过调用 add_wait_que ...
分类:
系统相关 时间:
2020-10-21 21:01:51
阅读次数:
37