图像遍历

来源:互联网 发布:照片打印软件 编辑:程序博客网 时间:2024/03/29 10:23

图像遍历主要有三种方法,本节主要介绍和比较这三种方法。

一:简单存取像素值

       首先介绍一个名词—椒盐噪点:它是一种特殊的噪点,它随机的将图像中的部分像素设置为白色或者黑色。

Code:

[cpp] view plaincopyprint?
  1. #include <opencv2\highgui\highgui.hpp>  
  2. #include <opencv2\imgproc\imgproc.hpp>  
  3. #include <opencv2\core\core.hpp>  
  4. #include <iostream>  
  5.   
  6. using namespace std;  
  7. using namespace cv;  
  8.   
  9. void salt(Mat &image, int n)  
  10. {  
  11.     for(int k = 0; k < n; k++)  
  12.     {  
  13.         rand();  
  14.         int i = rand() % image.cols;  
  15.         int j = rand() % image.rows;  
  16.         if(image.channels() == 1)  
  17.         {  
  18.             image.at<uchar>(j,i) = 255;  
  19.         }  
  20.         else if(image.channels() == 3)  
  21.         {  
  22.             image.at<Vec3b>(j,i)[0] = 255;  
  23.             image.at<Vec3b>(j,i)[1] = 255;  
  24.             image.at<Vec3b>(j,i)[2] = 255;  
  25.         }  
  26.     }  
  27. }  
  28. void salt2(Mat_<Vec3b> image, int n)    // 这个只针对彩色三通道的图片  
  29. {  
  30.     for(int k = 0; k < n; k++)  
  31.     {  
  32.         rand();  
  33.         int i = rand() % image.cols;  
  34.         int j = rand() % image.rows;  
  35.         if(image.channels() == 3)  
  36.         {  
  37.             image(j,i)[0] = 255;  
  38.             image(j,i)[1] = 255;  
  39.             image(j,i)[2] = 255;  
  40.   
  41.         }  
  42.     }  
  43. }  
  44. int main()  
  45. {  
  46.     Mat image = imread("F:\\huangrong.jpg", 1);  
  47.     salt(image, 3000);  
  48.     namedWindow("image");  
  49.     imshow("image", image);  
  50.     waitKey(0);  
  51.     return 0;  
  52.   
  53. }  

Explaination:

(1)  rand()是随机数生成函数。

(2)image.at<Vec3b>(j,i)[0] = 255;

成员函数at(inty, int x)可以用来存取图像元素,但必须在编译时期知道它的数据类型,这样的函数被称为模板函数,即需要指定操作成员的类型at<uchar>(y,x)

Opencv 中的类型Vec3b是由三个uchar组成的向量,可以通过操作符[]来获取。

(3)Mat_<Vec3b> image; image(j,i)[0] =255;

Mat_是Mat的一个模板子类。在事先知道矩阵类型的情况下,使用Mat_可以带来一些便利。这个类定义了一些额外的成员方法,但没有定义成员变量。它重载了操作符(),允许我们可以通过它直接存取矩阵元素。

Result:

 

二:通过指针遍历图像

需要说明的是:一个宽为W,高为H的三通道图像需要填补一个大小由W*H*3个uchar构成的内存块。但是,出于效率的考虑,图像会在每行行尾填补一些额外的像素。这是因为,如果行的长度是4或8的倍数,一些多媒体处理芯片可以更高效的处理图像。

Mat中的成员函数isContinuous()可以判断这幅图像是否对行进行了填补。如果为真,则没有填补。

Code:

[cpp] view plaincopyprint?
  1. /*通过指针遍历图像*/  
  2.   
  3. #include <opencv2\highgui\highgui.hpp>  
  4. #include <opencv2\imgproc\imgproc.hpp>  
  5. #include <opencv2\core\core.hpp>  
  6. #include <iostream>  
  7.   
  8. using namespace std;  
  9. using namespace cv;  
  10.   
  11. void colorReduce(Mat &image, int div = 64)  // 颜色缩减函数  
  12. {  
  13.     /*if(image.isContinuous()) 
  14.     { 
  15.         image.reshape(3, image.cols *image.rows); 
  16.         cout << image.rows << endl; 
  17.         cout << image.cols << endl; 
  18.     }*/  
  19.   
  20.     int n1 = image.rows;  
  21.     int nc = image.cols * image.channels();  
  22.     if(image.isContinuous())  
  23.     {  
  24.         nc = n1 * nc;  
  25.         n1 = 1;  
  26.     }  
  27.     for(int j = 0; j < n1; j++)  
  28.     {  
  29.         uchar *data = image.ptr(j);  
  30.         //uchar *data = image.data + j * image.step;       // 得到指向第i行的地址有两种方法 ptr是成员函数,而data是成员变量,不推荐使用data,易出错  
  31.         for(int i = 0; i < nc; i++)  
  32.         {  
  33.             data[i] = data[i]/div *div + div/2;  
  34.         }  
  35.     }  
  36.     cout << "一行含有的字节数:" << image.step << endl;  
  37.     cout << "一个像素所含有的字节:" << image.elemSize() << endl;  
  38.     cout << "通道数:" << image.channels()<< endl;  
  39.     cout << "总像素个数:" << image.total() << endl;  
  40.     cout << "width:" << image.size().width << endl;  
  41.     cout << "width:" << image.cols << endl;  
  42.     cout << "height:" << image.rows << endl;  
  43. }  
  44. void colorReduce2(const Mat &image, Mat &result, int div = 64)  
  45. {  
  46.     int n1 = image.rows;  
  47.     //int nc = image.cols * image.channels();  
  48.     int nc = image.cols ;  
  49.     for(int j = 0; j < n1; j++)  
  50.     {  
  51.         //uchar *data = image.ptr(j);  
  52.         //uchar *data_in = image.data + j * image.step;       // 得到指向第i行的地址有两种方法 ptr是成员函数,而data是成员变量  
  53.         //uchar *data_out = result.data + j * result.step;  
  54.         for(int i = 0; i < nc; i++)  
  55.         {  
  56.             uchar *data = image.data + j * image.step + i * image.elemSize();    //  这种方式不推荐使用,一方面容易出错,还不适用于带有"感兴趣区域"  
  57.             //data_out[i] = data_in[i]/div *div + div/2;  
  58.             data[0] = 0;  
  59.             data[1] = 0;  
  60.             data[2] = 0;  
  61.         }  
  62.     }  
  63.       
  64. }  
  65.   
  66. int main()  
  67. {  
  68.     Mat image = imread("F:\\huangrong.jpg", 1);  
  69.     Mat result;  
  70.     result.create(Size(image.cols, image.rows),image.type()); // create函数为result创建一个与输入图像的尺寸和类型完全相同的矩阵  
  71.     //colorReduce2(image, result);  
  72.     colorReduce(image);  
  73.     namedWindow("image");  
  74.     imshow("image", image);  
  75.     //namedWindow("result");  
  76.     //imshow("result", result);  
  77.     waitKey(0);  
  78.     return 0;  
  79. }  

Explaination:

(1)  得到指向第j行的地址有两种方法: image.ptr(j)是成员函数,而data是成员变量image.data+ j * image.step;但后面一种方法复杂点,推荐使用前者。

(2)成员变量step,rows,cols,成员函数elemSize,channels,total,size,create等解释见代码注释。

Result:

三:通过迭代器遍历图像

C++中迭代器不熟的可以看看我转载的一篇blog: http://blog.csdn.net/lu597203933/article/details/16357317

Code:

[cpp] view plaincopyprint?
  1. #include <opencv2\core\core.hpp>  
  2. #include <opencv2\imgproc\imgproc.hpp>  
  3. #include <opencv2\highgui\highgui.hpp>  
  4. #include <iostream>  
  5.   
  6. using namespace std;  
  7. using namespace cv;  
  8.   
  9. void colorReduce(Mat &image, int div = 64)  
  10. {  
  11.     //Mat_<Vec3b>::iterator it = image.begin<Vec3b>();  
  12.     //Mat_<Vec3b>::iterator itend = image.end<Vec3b>();  
  13.     MatIterator_<Vec3b> it = image.begin<Vec3b>();    // 第二种迭代器方式  
  14.     MatIterator_<Vec3b> itend = image.end<Vec3b>();  
  15.     for(; it != itend; ++it)  
  16.     {  
  17.         (*it)[0] = (*it)[0]/div * div + div/2;  
  18.         (*it)[1] = (*it)[1]/div * div + div/2;  
  19.         (*it)[2] = (*it)[2]/div * div + div/2;  
  20.     }  
  21. }  
  22. void colorReduce2(Mat_<Vec3b> image, int div = 64)  
  23. {  
  24.     //Mat_<Vec3b>::iterator it = image.begin();  // const_iterator  
  25.     //Mat_<Vec3b>::iterator itend = image.end();  
  26.     MatIterator_<Vec3b> it = image.begin();    // 第二种迭代器方式  
  27.     MatIterator_<Vec3b> itend = image.end();  // 常量迭代器 MatConstIterator_  Mat 实例不能修改  
  28.     for(; it != itend; ++it)  
  29.     {  
  30.         (*it)[0] = (*it)[0]/div * div + div/2;  
  31.         (*it)[1] = (*it)[1]/div * div + div/2;  
  32.         (*it)[2] = (*it)[2]/div * div + div/2;  
  33.     }  
  34. }  
  35.   
  36. int main()  
  37. {  
  38.     Mat image = imread("F:\\huangrong.jpg", 1);  
  39.     if(!image.data){  
  40.         cout << "fail to load image" << endl;  
  41.         return 0;  
  42.     }  
  43.     colorReduce(image);  
  44.     namedWindow("image");  
  45.     imshow("image", image);  
  46.     waitKey(0);  
  47.     return 0;  
  48. }  

Explaination:

(1)定义迭代器有两种方法:

MatIterator_<Vec3b>it ; //它是一个Mat实例的迭代器,是一个模板类

Mat_<Vec3b>::iterator it; // 它是定义在Mat_内部的迭代器

<Vec3b>表明是迭代器的类型,各个颜色分量可以通过操作符[]得到。

(2)获得迭代器开始和结束位置也有两种方法:

image.begin<Vec3b>();  //image 是Mat类型,Mat的方法

       image.begin(); // image是Mat_类型,通过Mat_实例得到的

(3)指向的mat是const类型所对应的迭代器,此时Mat对象不能修改。

MatConstIterator_<Vec3b>it ; //它是一个Mat实例的迭代器,是一个模板类

Mat_<Vec3b>::const_iteratorit; // 它是定义在Mat_内部的迭代器

Result:

四:三种方法的时间效率比较:

   Opencv中提供了两个非常实用的函数getTickCount()和getTickFrequency()可以非常方便的计算一段代码运行的时间;

   代码:

[cpp] view plaincopyprint?
  1. void timeCalc(Mat &image){  
  2.     double duration;  
  3.     duration = static_cast<double>(getTickCount());      // CPU 滴答的次数  
  4.     colorReduce(image);  
  5.     duration = static_cast<double>(getTickCount()) - duration;  
  6.     duration /= getTickFrequency();  // 运行时间,以ms为单位     //CPU 每ms滴答的次数  
  7. }  

首先讲下:

static_case<type_id>(expression)

该运算符把expression转换为type-id类型,但没有运行时类型检查来保证转换的安全性。

通过以上计算代码运行时间的方法我们可以得出上面三种遍历方法的运行时间:其中指针遍历时间最快,而迭代遍历最慢。可以说迭代器遍历代码简单,是一种最安全的遍历方法,出错率低。而简单的存取方法一般用来对随机位置的像素进行读写,并不适合用来遍历图像。遍历一般用指针。最后需要说明的是一次性处理一个像素的三个通道比循环处理每个通道所花费的时间要少,效率要高。

0 0
原创粉丝点击