上一页 1 2 3 4 5 6 7 8 9 10 ··· 33 下一页
摘要: http://www.360doc.com/content/17/0424/21/42201808_648355404.shtml 阅读全文
posted @ 2020-01-13 16:44 sweeeper 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-01-13 16:21 sweeeper 阅读(734) 评论(0) 推荐(0) 编辑
摘要: 在自定义指令中,我们通常要用到在DOM标签中给指令传值@用来读取DOM中传递的属性值,读取的值均以字符串的形式存在,比如类似于像id一样,在指令中直接以字符串的形式来读取=用来实现数据模型的双向绑定,就不用多说了&用来接收回调函数,类似于在标签中写onClick之类的效果 阅读全文
posted @ 2020-01-08 19:00 sweeeper 阅读(197) 评论(0) 推荐(0) 编辑
摘要: https://myphotoshopbrushes.com/ 阅读全文
posted @ 2020-01-08 10:47 sweeeper 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 叠音是从上一个音打,比如只有一个2的话,就吹32。3 2的话,就吹3 32; 打音的话就是从下一个音吹,比如2就吹12。3 2的话,就吹3 12; 颤音就是在本音上松开闭合。 比如2就吹232323232 阅读全文
posted @ 2020-01-01 11:14 sweeeper 阅读(2854) 评论(0) 推荐(0) 编辑
摘要: http://www.zjzxts.gov.cn/wsdt.do?method=suggest&xjlb=1 阅读全文
posted @ 2019-12-27 14:54 sweeeper 阅读(356) 评论(0) 推荐(0) 编辑
摘要: http://www.360doc.com/content/17/0424/21/42201808_648355404.shtml http://www.360doc.com/content/13/1112/15/7920837_328641671.shtml 阅读全文
posted @ 2019-12-26 14:51 sweeeper 阅读(111) 评论(0) 推荐(0) 编辑
摘要: http://ex2tron.wang/ 阅读全文
posted @ 2019-12-18 19:50 sweeeper 阅读(197) 评论(0) 推荐(0) 编辑
摘要: def rgb2hsv(r, g, b): r, g, b = r/255.0, g/255.0, b/255.0 mx = max(r, g, b) mn = min(r, g, b) m = mx-mn if mx == mn: h = 0 elif mx == r: if g >= b: 阅读全文
posted @ 2019-12-18 14:41 sweeeper 阅读(6685) 评论(0) 推荐(0) 编辑
摘要: import cv2 import numpy as np import matplotlib.pyplot as plt cap=cv2.VideoCapture(0) while(1): ret,frame=cap.read() hsv=cv2.cvtColor(frame,cv2.COLOR_BGR2HSV) lower_blue=np.array([110,50,50]) upper_bl 阅读全文
posted @ 2019-12-18 10:21 sweeeper 阅读(394) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 33 下一页