二值化的图像转化成QImage

之前还做过GIGE相机的raw格式转换为OpenCV格式,一开始觉得很不好下手,但其实图像都会遵循标准的,,不要慌,仔细看文档,看清楚是什么格式后就能发现转换的办法

       代码如下

[cpp]  view plain  copy
  1. void MainWindow::on_pushButton_clicked()  
  2. {  
  3.     Mat image;  
  4.     image = imread("test.bmp", CV_LOAD_IMAGE_COLOR);   // Read the file  
  5.     if(! image.data )                              // Check for invalid input  
  6.     {  
  7.         cout <<  "Could not open or find the image" << std::endl ;  
  8.     }  
  9.     Mat rgb;  
  10.     cvtColor(image, rgb, CV_BGR2RGB);  
  11.     QImage img = QImage((const unsigned char*)(rgb.data), rgb.cols, rgb.rows, QImage::Format_RGB888);  
  12. }  



      补充,如果图像在opencv层面已经是二值化图像了,那么QImage那一行相应要改写方能正常显示

[cpp]  view plain  copy
  1. QImage img = QImage((const unsigned char*)(rgb.data), rgb.cols, rgb.rows, QImage::Format_Indexed8);  
  2. QVector colorTable;   
  3. for(int k=0;k<256;++k)   
  4. {   
  5.     colorTable.push_back( qRgb(k,k,k) );   
  6. }  
  7. img.setColorTable(colorTable);  

出处:https://blog.csdn.net/lt66ds/article/details/24647205

你可能感兴趣的:(视觉slam)