随笔分类 -  openvino

摘要:# 声明要求的 cmake 最低版本 cmake_minimum_required( VERSION 2.8 ) # 声明一个 cmake 工程 project( pro ) # 设置编译模式 set( CMAKE_BUILD_TYPE "Debug" ) #添加OPENCV库 #指定OpenCV版 阅读全文
posted @ 2020-01-10 16:34 浮沉沉浮 阅读(1197) 评论(0) 推荐(0)
摘要:后调试查看发现 vs2015运行时提示未加载vcruntime140.adm64.pb 解决方案:去微软官网下载安装 vc_redist.exe ,安装就可以了。有64位版和32位版,根据计算机配置进行下载 下载链接参考网址中有或者去我的CSDN中下载:https://download.csdn.n 阅读全文
posted @ 2019-12-18 09:56 浮沉沉浮 阅读(3020) 评论(6) 推荐(1)
摘要://获取推断时间 vector<double>layterTimings; double freq = getTickFrequency() / 1000; //得到ms double time = net.getPerfProfile(layterTimings) / freq; //layter 阅读全文
posted @ 2019-12-06 10:11 浮沉沉浮 阅读(666) 评论(0) 推荐(0)