目录 安装Chrome 安装Chrome驱动程序 环境:CentOS Linux release 7.4.1708 (Core) 安装Chrome 下载安装包: wget https://dl.google.com/linux/direct/google-chrome-stable_current_ ...
分类:
其他好文 时间:
2021-07-27 17:32:34
阅读次数:
0
morphologyEx void Demo_1(int, void*) { cvtColor(img1, img_gray1, COLOR_BGR2GRAY); //二值化 threshold(img_gray1, img2, 0, 255, THRESH_BINARY | THRESH_OTSU ...
分类:
其他好文 时间:
2021-07-05 18:58:25
阅读次数:
0
Locust 简介 Locust 是一个分布式的负载测试框架,就如你已经熟悉的 LoadRunner、Jmeter 一样,你可以使用 Locust 对 Web 站点或 HTTP 接口进行负载测试,你也可以通过自行实现 Client 实现其它服务类型(如:中间件、数据库)或其它通讯协议(如:WebSo ...
分类:
其他好文 时间:
2021-07-02 16:39:57
阅读次数:
0
#查看当前centos操作系统的版本 cat /etc/redhat-release ##执行结果: ##第一步安装openjdk,版本可以根据自己安装sonarqube的版本而定; 安装过程可参见我的另一篇博客: 链接地址:https://www.cnblogs.com/cndevops/p/14 ...
分类:
其他好文 时间:
2021-07-02 16:32:35
阅读次数:
0
ndarray的内存结构 和其他的库一样,每个库都可能有自己独特的数据结构,例如OpenCV,numpy库的多维数组叫做ndarray( N dimensionality array ),它的内存结构如下图: ndarray的内存结构 在这个结构体中有两个对象,一个是用来描述元素类型的头部区域,一个 ...
分类:
编程语言 时间:
2021-07-02 15:41:43
阅读次数:
0
附官网教程一篇:OpenCV: How to build applications with OpenCV inside the "Microsoft Visual Studio" 1.设置好环境变量后,代码提示:未找到<opencv2> 解决方案:将上述地址修改为如下地址 $(OPENCV_DIR ...
分类:
其他好文 时间:
2021-07-01 17:17:25
阅读次数:
0
vagrant构建linux虚拟机 1.下载软件 Vagrant: https://releases.hashicorp.com/vagrant/2.2.5/vagrant_2.2.5_x86_64.msi VirtualBox: https://download.virtualbox.org/vi ...
分类:
系统相关 时间:
2021-07-01 16:52:21
阅读次数:
0
计算并显示直方图 与C++中一样,在Python中调用的OpenCV直方图计算函数为cv2.calcHist。 cv2.calcHist的原型为: cv2.calcHist(images, channels, mask, histSize, ranges[, hist[, accumulate ]] ...
分类:
编程语言 时间:
2021-06-30 18:16:53
阅读次数:
0
安装epel [root@localhost ~]# yum -y install epel-release 安装缓存 [root@localhost ~]# yum makecache 安装需要的软件 [root@localhost ~]# yum -y install cobbler cobbl ...
分类:
其他好文 时间:
2021-06-28 20:29:07
阅读次数:
0