当前位置:网站首页>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);}边栏推荐
- 236. 二叉树的最近公共祖先
- 【SQL】—数据库操作、表操作
- 禁用token及无感知更新token功能实现
- 暴力递归到动态规划 07(516. 最长回文子序列)
- .NET in-depth analysis of the LINQ framework (four: IQueryable, IQueryProvider interface details)
- 扩展卡尔曼滤波【转】
- The LVS load balancing cluster and the deployment of the LVS - NAT experiment
- 如何准备考pmp?
- FLIR E95 在8层楼看马路上行驶的CAR的热成像形态?
- monkey 压测
猜你喜欢

vs studio 安装opencv 环境

软件定义网络实验之自定义拓扑开发

【UE4】搭建局域网内VR直播 UE4.27

[Example构造方法增加notNull参数,默认false,允许值为null,值为null的时候不加入到条件中

apache-activemq-5.14.1

有趣简单的M2处理器性能实验:Swift与C代码执行速度的比较

LVS负载均衡群集及部署LVS-NAT实验

Summary of some interviews

The LVS load balancing cluster and the deployment of the LVS - NAT experiment

EasyGBS播放器优化:设备通道视频播放出现跳屏问题的修复
随机推荐
pytest:如何调用 pytest
Greenplum数据库故障分析——can not listen port
【Flink】使用arthas在线诊断flink的那些事
常见钓鱼手法及防范
代码工具推荐
软件定义网络实验之自定义拓扑开发
torchvision.datasets.ImageFolder使用详解
如何准备考pmp?
initramfs详解-----初识initramfs
Usage of permute() function in pytorch
[Example构造方法增加notNull参数,默认false,允许值为null,值为null的时候不加入到条件中
[QNX Hypervisor 2.2用户手册]10 虚拟设备参考
DTD约束和Schema约束
flask-socketio实现websocket通信
个人开发者必备,免费 API 网关工具推荐
Wireshark data capture and analysis of the transport layer protocol (TCP protocol)
数据中台建设(八):数据服务体系建设
List转Map的几种方式
爆款视频怎么做?这里或许有答案
vs studio 安装opencv 环境