Cstring到string
要利用mfc,然后接受一个图片。
imread只能读const string& filename 的东西。
imread 原型:
CV_EXPORTS_W Mat imread( const string& filename, int flags= );
它的参数:
filename —— 文件的位置。如果只提供文件名,那么文件应该和C++文件在同一目录,否则必须提供图片的全路径。
flags —— 有5个可能的输入。
CV_LOAD_IMAGE_UNCHANGED – 在每个通道中,每个像素的位深为8 bit,通道数(颜色)保持不变。
CV_LOAD_IMAGE_GRAYSCALE – 位深=8 bit 通道数=1(颜色变灰)
CV_LOAD_IMAGE_COLOR -位深=?, 通道数=3
CV_LOAD_IMAGE_ANYDEPTH – 位深不变 ,通道数=?
CV_LOAD_IMAGE_ANYCOLOR – 位深=?, 通道数不变
上面的值还可以组合使用,比如:
CV_LOAD_IMAGE_ANYDEPTH | CV_LOAD_IMAGE_ANYCOLOR – 位深不变,通道数比便
CV_LOAD_IMAGE_COLOR | CV_LOAD_IMAGE_ANYDEPTH – 位深不变,通道数=3
如果你不确定使用哪个,就是用CV_LOAD_IMAGE_COLOR 。
复制的,我都忘了从哪里复制的了。。。笑哭
然后我在包壳的过程中发现,并不能传一个cstring。用到mfc就还是要用cstring的。
所以就遇到了问题:怎么由cstring到string。
问题学名:
错误 1 error C2664: “std::basic_string<char,std::char_traits<char>,std::allocator<char>>::basic_string(std::initializer_list<_Elem>,const std::allocator<char> &)”: 无法将参数 1 从“wchar_t *”转换为“const std::basic_string<char,std::char_traits<char>,std::allocator<char>> &” f:\code4vs\打开文件\打开文件\打开文件dlg.cpp 199 1 打开文件
如何将CString 的一个字符串转换成一个string 类型的
方式一:
然后从cstring到 string发生了一些问题。
解决方案有这么几种:
CString str(_T("xxxxxxx"));
#ifdef _UNICODE
wstring s = str;
#else
string s = str;
#endif
这倒是没问题。
WString s = fileNames;
不过imread依然不识别。所以可能需要把wstring转到string。
std::string WStringToString(const std::wstring &wstr) { std::string str(wstr.length(), ' '); std::copy(wstr.begin(), wstr.end(), str.begin()); return str; }
快捷键格式化代码
也就是俗称的:Ctrl+K,Ctrl+F 快捷键
方式2:
#inlcude <sstream> //专门用来进行类型转换的C++类 //用法
stringstream ss;//需要使用std namespace。
int a = ;
ss<<a;
string s;
ss>>s; s中为""
貌似语法上是可以的,但是好像依然有bug,在读取宽字符的时候,传出来的地址依然不能有效检索。说明在转码的时候还是有问题。
还是会报错
方式3:
Cstring acstring = L“asdf”;
Std::string astring = (acstring.getbuffer());
也不行。这个根本就跑不通
方式4:
如果是unicode工程
USES_CONVERSION;
CString str1;
std::string str2(W2A(str1));
如果是多字节工程
CString str1;
std::string str2(str1.Getbuffer());
str1.ReleaseBuffer();
所以发现我的是unicode工程而并非 多字节工程,所以getbuffer使不了。
所以我的方法是使用w2a方式
中途遇到:
未定义的标识符:_lpw
然后解决方案是:
1、增加头文件 #include <atlconv.h>
2、并且在T2A,W2A,A2W之前加上 USES_CONVERSION
http://blog.csdn.net/educast/article/details/11798695
方式五:
在头文件下面定义这两个方法//其实定义一个就够了,因为我只想做把wsting转成string。但是只是针对非汉字的字符有效,比如数字字母下划线仅此而已。所以为了程序的可以适配的更广,也就是包含汉字字符,就舍弃了这种方法。
std::string WStringToString(const std::wstring &wstr)
{
std::string str(wstr.length(), ' ');
std::copy(wstr.begin(), wstr.end(), str.begin());
return str;
}
std::wstring StringToWString(const std::string &str)
{
std::wstring wstr(str.length(), L' ');
std::copy(str.begin(), str.end(), wstr.begin());
return wstr;
}
关于cstring到string 的blog:
http://bbs.csdn.net/topics/320044813
代码尝试:
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv; std::string WStringToString(const std::wstring &wstr)
{
std::string str(wstr.length(), ' ');
std::copy(wstr.begin(), wstr.end(), str.begin());
return str;
}
std::wstring StringToWString(const std::string &str)
{
std::wstring wstr(str.length(), L' ');
std::copy(str.begin(), str.end(), wstr.begin());
return wstr;
} #include <sstream>
#include<atlconv.h>
using namespace std; void CCstring到stringDlg::OnBnClickedButton1()
{
// TODO: 在此添加控件通知处理程序代码
TCHAR szFilterforpic[] = _T("JPEG(*.JPG;*.JPEG;*.JPE)|*.JPG;*.JPEG;*.JPE|PNG(*.PNG;*.PNS)|*.PNG;*.PNS||");
CFileDialog dlg(true, _T(".png"), NULL, OFN_ALLOWMULTISELECT | OFN_ENABLESIZING, szFilterforpic, this);
dlg.m_ofn.nMaxFile = * MAX_PATH;
dlg.m_ofn.lpstrFile = new TCHAR[dlg.m_ofn.nMaxFile];
ZeroMemory(dlg.m_ofn.lpstrFile, sizeof(TCHAR)*dlg.m_ofn.nMaxFile);
int retval = dlg.DoModal();
if (retval == IDCANCEL)
return;
POSITION pos_file;
pos_file = dlg.GetStartPosition();
CArray<CString, CString> ary_filename;
while (pos_file != NULL){
ary_filename.Add(dlg.GetNextPathName(pos_file));
}
CString fileNames;
CString buf;
CString content;
//string s;
int fileCount = ; for (int i = ; i<ary_filename.GetSize(); i++)
{
content.Format(_T("%s"), ary_filename.GetAt(i));
buf.Format(_T("第%d张图:%s\r\n"), i + , ary_filename.GetAt(i)); fileNames += buf; }
//一:256个字符以内没有问题
//WString s = content;
//string s1 = fileNames;
//Mat img = imread(WStringToString(s));//而且只能打开英文名的图片。这也是个问题。 //二:
//转码错误,猜测。因为没有办法把这个中间过程输出
//stringstream ss;//这个也是要用到 std namespace的。
//ss << content;
//string s;
//ss >> s;
//printf("%s",s);转码错误,猜测。因为没有办法把这个中间过程输出 //三是:cstring.getbuffer(); //四:
USES_CONVERSION;
string s(W2A(content)); Mat img = imread(s);//是支持的 我转码的时候不支持。 //imread()
//MessageBox(s, ); imshow("游戏原画", img);//有办法改变图片大小么?
selected = fileNames;
UpdateData(false); }
然后新建一个:作为完整打开的范式:
#include <iostream>
using namespace std; #include <opencv2/highgui/highgui.hpp>
using namespace cv; void Cmfc完整打开Dlg::OnBnClickedButton1()
{
TCHAR szFilterForPic[] = _T("PNG(*.PNG;*.PNS)|*.PNG;*.PNS|JPEG(*.JPG;*.JPEG;*.JPE)|*.JPG;*.JPEG;*.JPE||");
CFileDialog dlg(true, _T(".png"), NULL, OFN_ALLOWMULTISELECT | OFN_ENABLESIZING, szFilterForPic, this);
dlg.m_ofn.nMaxFile = * MAX_PATH;
dlg.m_ofn.lpstrFile = new TCHAR[dlg.m_ofn.nMaxFile];
ZeroMemory(dlg.m_ofn.lpstrFile, sizeof(TCHAR)*dlg.m_ofn.nMaxFile);
int retval = dlg.DoModal();
if (retval == IDCANCEL)
return;
POSITION pos_file;
pos_file = dlg.GetStartPosition();
CArray<CString, CString> array_filename;
while (pos_file != NULL){
array_filename.Add(dlg.GetNextPathName(pos_file));
}
CString fileNames;
CString buf;
CString content;
for (int i = ; i < array_filename.GetSize(); i++){
content.Format(_T("%s"), array_filename.GetAt(i));
//先把基本的跑出来,然后再改。
USES_CONVERSION;
string s(W2A(content));//iostream;namespace
Mat img = imread(s);//imread 在 opencv2/highgui/highgui.hpp里面。Mat 需要using namespace cv f imshow(s, img);//这个地方可以改换成文章标题 buf.Format(_T("第%d张图:%s\r\n"), i + , array_filename.GetAt(i));
fileNames += buf;
}
selected = fileNames;
UpdateData(false); }
这份代码就十分简洁了。
可以打开多幅图片。
Cstring到string的更多相关文章
- CString转string
如题,找了半天... //CString转string USES_CONVERSION; CString temp; temp = _T("kjdsaflkjdlfkj"); ch ...
- CString和string
CString和string(一) 概述 string和CString均是字符串模板类,string为标准模板类(STL)定义的字符串类,已经纳入C++标准之中: CString(typedef CS ...
- unicode下各种类型转换CString、string
把最近用到的各种unicode下类型转换总结了一下: 1.string转CString string a=”abc”; CString str=CString(a.c_str()); 或str.for ...
- unicode下各种类型转换,CString,string,char*,int,char[]
把最近用到的各种unicode下类型转换总结了一下,今后遇到其他的再补充: 1.string转CString string a=”abc”; CString str=CString(a.c_str() ...
- stringstream转换CString为string出错
使用stringstream转换CString为string时,调试时发现是CString赋给stringstream没有问题,stringstram赋给string就不行,倒也不是没有赋成功,只是赋 ...
- C++———库函数cstring及string方法解读
1.string与cstring区别 <string>是C++标准库头文件.包含了拟容器class std::string的声明(不过class string事实上只是basic_stri ...
- CString与string、char*的区别和转换
转自:http://blog.csdn.net/luoweifu/article/details/20232379 我们在C++的开发中经常会碰到string.char*以及CString,这三种都表 ...
- Cpp读文件、CString转String、String转CString
场景 C++读取文件 技术点 读取文件 fstream提供了三个类,用来实现c++对文件的操作.(文件的创建.读.写). ifstream -- 从已有的文件读入 ofstream -- 向文件写内容 ...
- 【转】CString与string、char*的区别和转换
我们在C++的开发中经常会碰到string.char*以及CString,这三种都表示字符串类型,有很多相似又不同的地方,常常让人混淆.下面详细介绍这三者的区别.联系和转换: 各自的区别 char*: ...
随机推荐
- HDU 5965 Gym Class 贪心+toposort
分析:就是给一些拓补关系,然后求最大分数,所以贪心,大的越靠前越好,小的越靠后越好 剩下的就是toposort,当然由于贪心,所以使用优先队列 #include <iostream> #i ...
- hive内部表与外部表区别
1.在Hive里面创建一个表: hive> create table wyp(id int, > name string, > age int, > tele ...
- hive的使用和深化理解
1.hive中的数据最终是存放在hdfs上的 2.hive本身不是关系型数据库,hive执行sql语句时会把sql语句翻译成mapreduce程序,然后将mapreduce程序提交到hadoop集群中 ...
- bzoj 3131 [Sdoi2013]淘金(数位DP+优先队列)
Description 小Z在玩一个叫做<淘金者>的游戏.游戏的世界是一个二维坐标.X轴.Y轴坐标范围均为1..N.初始的时候,所有的整数坐标点上均有一块金子,共N*N块. 一阵风吹 ...
- java基础程序设计学习
java使用System.out来表示标准输出设备,使用System.in来表示标准输入设备.java并不直接支持控制台输入,但是可以使用Scanner类创建它的对象,以读取来自System.in的输 ...
- HDU-4687 Boke and Tsukkomi 带花树,枚举
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4687 题意:给一个无向图,求所有的最大匹配的情况所不包含的边.. 数据比较小,直接枚举边.先求一次最大 ...
- elecworks 报表----按线类型的电线清单
按线类型的电线清单中:列Wire number指的是线标注,不是电位标注 section:截面积
- hdoj 1234 开门人和关门人
开门人和关门人 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) #include ...
- Spring Data JAP 多个不是必填的查询条件处理
简单的介绍一下使用场景,DAO层用Spring Data实现,dao 只有接口,实现类是容器启动时动态字节码生成,接口里定义方法,方法上@Query 里写JPQL查询语句. 基于以上的限制,如果对一个 ...
- mysql之union
今天来写写union的用法及一些需要注意的. union:联合的意思,即把两次或多次查询结果合并起来. 要求:两次查询的列数必须一致 推荐:列的类型可以不一样,但推荐查询的每一列,想对应的类型以一样 ...