加载图片代码为:#includeiostream#include opencv2/core/core.hpp#include opencv2/highgui/highgui.hppusing namespace cv;int main(){Mat img = imread(pic.jpg);namedWindow(游戏原画);imshow(游戏原...
加载图片代码为:
#include<iostream> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> using namespace cv; int main() { Mat img = imread("pic.jpg"); namedWindow("游戏原画"); imshow("游戏原画", img); waitKey(6000); return 0; }
本人项目目录如下:
问题:
运行时出现
解决方案:
1.将项目中图片取出,放于D盘根目录
2.将代码
Mat img = imread("pic.jpg");
改为
Mat img = imread("D:\\pic.jpg");
再次运行,则显示图片成功!
沃梦达教程
本文标题为:OpenCV使用:加载图片时报错 0x00007FFC1084A839 处(位于 test1.exe 中)有未经处理的异常: Microsoft C++ 异常: cv::Exception,位于内存位
基础教程推荐
猜你喜欢
- 详解c# Emit技术 2023-03-25
- C++中的atoi 函数简介 2023-01-05
- C语言基础全局变量与局部变量教程详解 2022-12-31
- C/C++编程中const的使用详解 2023-03-26
- C利用语言实现数据结构之队列 2022-11-22
- 一文带你了解C++中的字符替换方法 2023-07-20
- C++详细实现完整图书管理功能 2023-04-04
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- 如何C++使用模板特化功能 2023-03-05
- C语言 structural body结构体详解用法 2022-12-06