Mat转CImage
生活随笔
收集整理的這篇文章主要介紹了
Mat转CImage
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
uchar *pImg=(uchar *)CI.GetBits();//得到CImage數據區地址
ps=img.ptr<uchar>(i);
?
void MatToCImage( Mat &mat, CImage &cImage) {//create new CImageint width = mat.cols;int height = mat.rows;int channels = mat.channels();cImage.Destroy(); //clearcImage.Create(width, height,8*channels ); //默認圖像像素單通道占用1個字節//copy valuesuchar* ps;uchar* pimg = (uchar*)cImage.GetBits(); //A pointer to the bitmap bufferint step = cImage.GetPitch();for (int i = 0; i < height; ++i){ps = (mat.ptr<uchar>(i));for ( int j = 0; j < width; ++j ){if ( channels == 1 ) //gray {*(pimg + i*step + j) = ps[j];}else if ( channels == 3 ) //color {for (int k = 0 ; k < 3; ++k ){*(pimg + i*step + j*3 + k ) = ps[j*3 + k];} }} } }?
//cImage數據存到pbImage,后再轉換為源灰度圖pbSrciPitch=cImage.GetPitch();iBytePerPixel=(cImage.GetBPP()+7)/8;if(iBytePerPixel==3){for(y=0;y<iHeight;y++){ //load的圖像數據放到pbImagepbImage=(PBYTE)(PBYTE(cImage.GetBits())+iPitch*y);//得到的是圖像初始像素地址for(x=0;x<iWidth;x++){//pbImage轉換為灰度圖pbSrcpbSrc[y*iWidth+x]=(pbImage[3*x]*0.15+pbImage[3*x+1]*0.55+pbImage[3*x+2]*0.3);}}}cImage.Destroy();?
?
【轉載自】
OpenCV中Mat對象轉CImage - 挨踢生涯 - CSDN博客 https://blog.csdn.net/xianglifighter/article/details/38319903
?
轉載于:https://www.cnblogs.com/wxl845235800/p/11237061.html
總結
以上是生活随笔為你收集整理的Mat转CImage的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JS将数字转换为带有单位的中文表示
- 下一篇: jquery ajax error函数和