栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

OpenCV读取图片路径的几种写法

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

OpenCV读取图片路径的几种写法

比如用 imread() 读取这个文件夹下的test.jpg

可以有下面几种方法

#include
#include
#include
#include
#include
#include
#include   

using namespace cv;

int main(int argc, char* argv[])
{
	Mat img;

	//-- 1 --双右斜线法  
	//string imgpath = "D:\Study\Picture\test2.jpg";  
	//-- 2 --双左斜线法  
	//string imgpath = "D://Study//Picture//test2.jpg";  
	//-- 3 --单左斜线法  
	//string imgpath = "D:/Study/Picture/test2.jpg";  
	//-- 4 --以上三种混合法  
	//string imgpath = "D: /Study//Picture\test2.jpg";  
	//-- 5 --相对路径法  把图片放在本文件的当前目录下
	//string imgpath = "test2.jpg";  
	//-- 6 --命令行参数法  
	string imgpath = argv[1];

	img = imread(imgpath, 1);
	imshow("img", img);

	waitKey(0);
	return 0;
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/330701.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号