上一页 1 2 3 4 5 6 7 ··· 14 下一页
  2018年6月22日
摘要: Angular测试遇到的小坑 Error: Expected to be running in 'ProxyZone', but it was not found 检查doneFn的写法是否正确,位置是否正确,是否定义为undefined Unhandled Promise rejection: ' 阅读全文
posted @ 2018-06-22 18:41 yoyo002 阅读(579) 评论(0) 推荐(0) 编辑
  2018年5月3日
摘要: Git-1.9.5-preview20141217 1. 安装git,从程序目录打开 "Git Bash" 2. 键入命令:ssh-keygen -t rsa -C "email@email.com" "email@email.com"是gitlab账号 3. 提醒你输入key的名称,输入如id_r 阅读全文
posted @ 2018-05-03 14:29 yoyo002 阅读(532) 评论(1) 推荐(0) 编辑
  2018年4月24日
摘要: 创建proxy配置文件proxy.conf.json 内容如下 { "/api/*": { "target": "https://abc.com", "changeOrigin": true, "secure": false } } 然后在npm的package.json启动的参数--proxy-c 阅读全文
posted @ 2018-04-24 16:06 yoyo002 阅读(251) 评论(0) 推荐(0) 编辑
  2018年4月20日
摘要: "start": "ng serve --host 0.0.0.0 --port 4200 --proxy-config proxy.conf.json", "build": "ng build --base-href=\"/page/\" --output-path=build/page --en 阅读全文
posted @ 2018-04-20 13:51 yoyo002 阅读(291) 评论(0) 推荐(0) 编辑
  2017年11月30日
摘要: Stitcher https://docs.opencv.org/trunk/d8/d19/tutorial_stitcher.html http://blog.csdn.net/czl389/article/details/60767654 阅读全文
posted @ 2017-11-30 16:16 yoyo002 阅读(323) 评论(0) 推荐(0) 编辑
  2017年11月17日
摘要: py_faster_rcnn识别出来的结果好多红框重叠, 可以通过调节demo.py中的NMS_THRESH的值进行限制。 NMS_THRESH表示非极大值抑制,这个值越小表示要求的红框重叠度越小,0.0表示不允许重叠。有时候0.3会有好多重叠 阅读全文
posted @ 2017-11-17 15:57 yoyo002 阅读(1131) 评论(0) 推荐(0) 编辑
  2017年11月15日
摘要: 2-6 A 3-channel color image is a mapping from a 2-dimensional space of locations to a 3-dimensional space of color intensity values. Note that these t 阅读全文
posted @ 2017-11-15 17:26 yoyo002 阅读(191) 评论(0) 推荐(0) 编辑
  2017年11月9日
摘要: Snap Photo 按钮模拟拍照 阅读全文
posted @ 2017-11-09 18:55 yoyo002 阅读(16886) 评论(0) 推荐(0) 编辑
摘要: 是用cv2.QT_NEW_BUTTONBAR和button type通过竖线结合可以在创建一行,如下 cv2.createButton("CV_RADIOBOX2", redraw, buttonType=cv2.QT_RADIOBOX|cv2.QT_NEW_BUTTONBAR) 阅读全文
posted @ 2017-11-09 15:35 yoyo002 阅读(405) 评论(0) 推荐(0) 编辑
  2017年5月16日
摘要: function pipe(src, ...fns){ return fns.reduce(function(fn1, fn2){ return fn2(fn1) }, src); } undefined pipe("aaa",function(p){console.log(p); return p+"bbb"},function(p){console.log(p); return p+"ccc... 阅读全文
posted @ 2017-05-16 15:57 yoyo002 阅读(198) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 14 下一页