ubuntu16.04 在cuda9.0环境下编译安装opencv2.4.13.7 安装步骤: 1.安装cuda9.0:https://blog.csdn.net/zhuangwu116/article/details/81063234 2.安装依赖包: sudo apt get install b ...
分类:
其他好文 时间:
2020-03-02 20:20:01
阅读次数:
69
在数据库中参考:"12、创建mysql用户及赋予用户权限"文件。 ...
分类:
数据库 时间:
2020-02-17 10:38:52
阅读次数:
84
1、在客户端上ping服务器端ip : ping 服务器ip地址 ;#排除线路问题;2、在客户端上telnet服务器端Ip 端口号: telnet 服务器ip地址 端口号:#排除防火墙的影响; 3、在客户端使用wget命令检测: wget 服务器ip地址(请求)(curl -I 服务器ip地址 (响... ...
分类:
Web程序 时间:
2020-02-15 23:42:01
阅读次数:
150
ggplot2绘图系统——几何对象之盒形图 参数: 示例。 卡槽设置。 颜色设置。 ...
分类:
编程语言 时间:
2020-02-14 16:37:41
阅读次数:
99
对于坐标平面的bfs模板题~ #include<bits/stdc++.h> using namespace std; const int maxn=1010; bool visit[1300][130][80]={false}; int adj[1300][130][80]; int n,m,l, ...
分类:
其他好文 时间:
2020-02-12 23:55:18
阅读次数:
101
绘制平行线&线模糊的问题 1. 准备画布 <!-- 1. 画布 --> <canvas width="600" height="400"></canvas> 2. 加边框,让画布凸显出来 <style> canvas { border: 1px solid #ccc; } </style> 3. 获 ...
分类:
其他好文 时间:
2020-02-11 14:21:13
阅读次数:
146
一、技术总结 1. 这一题是BFS广度优先搜索算法,感觉这类题目是首先定义需要的数据结构类型,然后会定义一个数组用于存放数据,还有一个bool类型的数组看是否已经放入队列中了。然后再编写一个判断函数judge()排除数组中超出范围的数字返回false,还有就是不满足条件或者是已经在队列中的,最后就返 ...
分类:
其他好文 时间:
2020-02-07 23:56:59
阅读次数:
127
Canvas基本用法getContext()描边和填充strokeStyle:设置描边样式fillStyle:设置填充样式stroke():描边fill():填充绘制矩形fillRect():填充矩形strokeRect():描边矩形clearRect():清除画布矩形区域绘制路径beginPath... ...
分类:
其他好文 时间:
2020-02-03 16:12:37
阅读次数:
110
1091 Acute Stroke (30分) One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in ...
分类:
其他好文 时间:
2020-01-28 21:34:11
阅读次数:
88
实现功能:1、墨迹绘制,点删,图形删,选中墨迹图形 2、绘制文字,绘制矩形,圆形,椭圆,绘制图片,绘制箭头 3、复制,粘贴功能,撤销功能 4、保存墨迹,读取墨迹 效果图: 实现思路:牵涉定制型墨迹的绘制,比如箭头,图片,需自定义InkCanvas和Stroke,编写鼠标点击移动放下事件逻辑 自定义S ...
分类:
其他好文 时间:
2020-01-28 11:02:26
阅读次数:
111