1、二值图像边界提取、轮廓提取 如果一个点的8邻域都是1,则可以认为这个点是内部的点而不是边界上的点,可以删除这类点,剩下的就是边界上的点。根据腐蚀的特性,使用3*3的结构元素对图像进行腐蚀,可以得到内部的点,那么再用原图减去腐蚀图,就得到了图像的边界。 imgPath = 'E:\opencv_p ...
分类:
其他好文 时间:
2020-01-31 17:21:10
阅读次数:
200
实验二的2 模拟图形绘制 object test { def main(args: Array[String]) { val p=new Point(10,30) p.draw; val line1 = new Line(Point(0,0),Point(20,20)) line1.draw lin ...
分类:
其他好文 时间:
2020-01-31 14:28:23
阅读次数:
72
until与while对比 while语句结构 while 条件测试 do 循环体 done 当条件测试成立(条件测试为真),执行循环体 until语句结构 until 条件测试 do 循环体 done 当条件测试不成立(条件测试为假),执行循环体 while适合写下线的例子;until适合写上线的 ...
分类:
其他好文 时间:
2020-01-30 21:20:43
阅读次数:
85
for_while_until_ping.sh #!/usr/bin/bash #for while until ping #v1 by xfeng 2019.02.30 for i in {2..254} do { ip=192.168.8.$i ping -c1 -W1 $ip &>/dev/n ...
分类:
其他好文 时间:
2020-01-30 20:49:48
阅读次数:
53
一、挂载数据盘下面以新买的服务器为例介绍挂载数据盘的操作过程。参考资料 https://help.aliyun.com/document_detail/25426.html [root@iZ2ze41df2mogmrk6x6e5jZ ~]# df -hlFilesystem Size Used Av ...
分类:
其他好文 时间:
2020-01-30 12:27:55
阅读次数:
91
synchronized与lock的区别 1. 原始构成 synchronized是关键字属于JVM层面 monitorenter(底层是通过monitor对象来完成,其实wait/notify等对象也依赖于monitor独享只有在同步块或方法中才能调wait/notify等方法) monitore ...
分类:
编程语言 时间:
2020-01-24 23:45:12
阅读次数:
151
函数重做的装饰器 # attempt尝试次数 def retry_times(attempt): def decorator(func): def wrapper(*args, **kw): att = 0 while att < attempt: try: return func(*args, * ...
分类:
其他好文 时间:
2020-01-20 17:31:40
阅读次数:
70
一、Docker 1、清理垃圾 # 清理 docker 垃圾数据,释放空间 docker system prune# 清理 docker 镜像docker image prune -a -f --filter "until=24h" 2、查看容器 IP docker inspect <contain ...
分类:
其他好文 时间:
2020-01-20 11:20:22
阅读次数:
107
原题链接在这里:https://leetcode.com/problems/campus-bikes-ii/ 题目: On a campus represented as a 2D grid, there are N workers and M bikes, with N <= M. Each wo ...
分类:
其他好文 时间:
2020-01-17 09:23:42
阅读次数:
104
建2块 linux lvm 格式的 分区 fdisk /dev/vdb Welcome to fdisk (util-linux 2.23.2). Changes will remain in memory only, until you decide to write them. Be caref ...
分类:
系统相关 时间:
2020-01-13 22:06:57
阅读次数:
130