上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 先上代码,注意使用python3运行 #!/usr/bin/env python3 # coding=utf-8 from cv2 import cv2 cap = cv2.VideoCapture(0) while True: ret, frame = cap.read() cv2.imshow( 阅读全文
posted @ 2020-12-04 17:35 广林 阅读(866) 评论(0) 推荐(0) 编辑
摘要: CEF调试符号下载地址,CEF pdb下载地址 https://cef-builds.spotifycdn.com/index.html#windows32 阅读全文
posted @ 2020-12-04 16:17 广林 阅读(277) 评论(0) 推荐(0) 编辑
摘要: const Koa = require('koa') const KoaStatic = require('koa-static') const app = new Koa() app.use(KoaStatic('./')) app.listen(8200,function(){ console. 阅读全文
posted @ 2020-11-16 15:21 广林 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 查看requireJS已经加载的模块 require.s.contexts ._.defined 阅读全文
posted @ 2020-11-16 12:56 广林 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 在前端调用native时,报错Unterminated string at character xxx 查询资料可能有以下原因: 1.json对象字符串可能不完整 将对象字符串使用工具格式化后找问题。 2.json对象中有换行符 将字符串替换为空,xxx.replaceAll("[\b\r\n\t] 阅读全文
posted @ 2020-07-22 12:07 广林 阅读(1578) 评论(0) 推荐(0) 编辑
摘要: 1.在设置里面添加共享文件夹 2.在虚拟机里面执行添加用户权限 sudo usermod -a -G vboxsf 用户名 阅读全文
posted @ 2020-06-27 08:39 广林 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 执行以下指令: sudo apt-get install gcc perl make 阅读全文
posted @ 2020-06-27 08:17 广林 阅读(320) 评论(0) 推荐(0) 编辑
摘要: [assembly: AssemblyVersion("1.1.*")][assembly: AssemblyFileVersion("1.0.0.0")][assembly: AssemblyInformationalVersion("1.2.1.0")] // 用来定义 Product Vers 阅读全文
posted @ 2020-05-21 12:40 广林 阅读(445) 评论(0) 推荐(0) 编辑
摘要: Format Version(解决方案文件版本)和VS版本的对应关系: -Visual Studio 2005 - Format Version 9.00-Visual Studio 2008 - Format Version 10.00-Visual Studio 2010 - Format Ve 阅读全文
posted @ 2020-05-21 12:38 广林 阅读(4125) 评论(0) 推荐(0) 编辑
摘要: 使用nvm use 切换版本后,node命令无法使用 删除C:\Program Files\nodejs后恢复,存在此问题时发现C:\Program Files\nodejs文件夹无法打开,删除此文件夹后切换node版本后,此文件夹可以访问。 阅读全文
posted @ 2020-05-08 13:50 广林 阅读(5470) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页