当前位置:网站首页>vs studio install opencv environment
vs studio install opencv environment
2022-08-03 03:04:00 【MioeC】
Article table of contents
Download opencv first
https://opencv.org/opencv-4-6-0/
Installation and decompression directly
Configure environment variables
Put D:\soft\opencv\build\x64\vc15\bin into it, and adjust it according to your personal situation.Install vs
Download directly from the official website, select desktop c++
Installation configuration




Next set the linker
- need to setAdditional library directories in general in the linker and additional dependencies in input
Additional library directory: C:\Program Files\opencv\opencv\build\x64\vc15\lib


test;
//Read the picture and display it#include "stdio.h"#include #include #include using namespace cv;int main(){Mat img = imread("C:\\Users\\AC\\Desktop\\A.jpeg");namedWindow("test opencv");imshow("test opencv", img);waitKey(6000);}边栏推荐
- Greenplum database failure analysis, can not listen to the port
- 开发JSP应用的基础知识
- 怎么从零编写一个 v3 版本的 chrome 浏览器插件实现 CSDN 博客网站的暗黑和明亮主题切换?
- “蔚来杯“2022牛客暑期多校训练营4 补题题解(N)
- Guidelines for the use of SVA in UVM
- [Arduino] Reborn Arduino Monk (3)----Arduino function
- FLIR E95 在8层楼看马路上行驶的CAR的热成像形态?
- 什么情况下DigiCert证书会引起发生安全警报?
- 扩展卡尔曼滤波【转】
- 如何准备考pmp?
猜你喜欢
随机推荐
选中按钮上色
10-security登录
45部署LVS-DR群集
粘包与拆包
面试题整理1
236. 二叉树的最近公共祖先
一个循环,两个循环问题的思考及复现
ES6 新特性:Class 的基本语法
.NET深入解析LINQ框架(四:IQueryable、IQueryProvider接口详解)
常用工具链和虚拟环境-TDMGCC
无法启动服务 错误 193 0xc1
numpy PIL tensor之间的相互转换
[Arduino] Reborn Arduino Monk (2)----Arduino Language
pytest:如何调用 pytest
关于提高企业网络安全意识
iNFTnews | 元宇宙的潜力:一股推动社会进步的力量
常用工具链和虚拟环境-Cygwin
Guidelines for the use of SVA in UVM
常见钓鱼手法及防范
Kubernetes:(八)调度约束和故障排查








