-7

我正在使用 opencv 和 c++ 将图像的像素保存在文件中,现在我想恢复图像以便再次显示它。你能给点建议吗?

[更新:包含来自 OP 评论的代码] 我正在使用这些循环将图像的像素保存在文件中

for(int row=0; row<a;row++) 
    for(int col=0;col<b;col++) { 
        pixel[row][col]= ((uchar *)(img->imageData + row*img->widthStep))[col*img->nChannels +0]; 

现在我试图读取这些像素以显示图像

4

2 回答 2

2

将图像数据存储在磁盘中的标准(推荐)方法是将像素放入图像容器(jpg/png/bmp/tiff/...)并将其保存到文件中。OpenCV 很容易处理这个过程,因为你已经有了imgIplImage*你需要做的就是调用cvSaveImage()并给出文件名:

if (!cvSaveImage("output.png", img))
{
    // print cvSaveImage failed and deal with error
}

然后,要从磁盘读取此文件,请使用cvLoadImage()您可能已经使用过的 can use 。

如果出于某种神秘的原因,您实际上只是将像素存储在文件中,那么您希望将它们读回IplImage结构是完全可以理解的。为此,您正在寻找的功能是cvCreateImage()

IplImage* new_img = cvCreateImage(cvSize(width, height), /*img depth*/, /* nChannels*/);

创建后,new_image您需要mempcy()将像素读取到new_image->imageData.

但是,您需要事先知道图像的实际大小才能使用这种方法。如果您只是将图像的像素存储在文件中,那么我建议您将图像的大小存储为文件名的一部分。

使用 OpenCV 函数处理图像的一个好处是您的系统将能够识别和显示它们(这对于调试目的非常重要)。

于 2012-01-10T12:00:07.147 回答
0
img->imageData = malloc(a*img->widthStep);  //do this if you didnt allocate the memory before. a*img->widthStep shouldbe the right size of memor needed if imn ot wrong.   
for(int row=0; row<a;row++) 
{
     for(int col=0;col<b;col++) 
     { 
  ((uchar*)(img->imageData + row*img->widthStep))[col*img->nChannels +0] = pixel[row][col];
   // you didnt say what is th type of date in imadeData : put other casts if necessary.
        }
    }

您是否将 img->imageData 中的所有信息放入原始代码中的像素中?

所以,karlphillip 的答案是:“你需要 mempcy() 读取到 new_image->imageData 的像素”是我在我的代码中所做的。

于 2012-01-10T01:35:48.843 回答