OpenCV:imread给CV_8UC3,无法转换为CV_8UC4?

时间:2013-09-24 18:09:12

标签: c++ opencv

需要图片帮助我尝试使用OpenCV加载和转换:

这是我的代码:

templ = imread("Template.bmp",-1);
cout<<"templ before convert: "<<type2str(templ.type())<<endl;
templ.convertTo(templ,CV_8UC4);
cout<<"templ after convert: "<<type2str(templ.type())<<endl;

这给了我CV_8UC3!图像不是用于转换为4个通道或类似的东西吗?或者我需要一个比例因子(读到这样的事情)?

感谢您的帮助, 最好的问候!

1 个答案:

答案 0 :(得分:15)

cvtColor( src,dst, CV_BGR2BGRA );