12

我需要将 8 位 IplImage 转换为 32 位 IplImage。使用来自整个网络的文档,我尝试了以下事情:

// general code
img2 = cvCreateImage(cvSize(img->width, img->height), 32, 3);
int height    = img->height;
int width     = img->width;
int channels  = img->nChannels;
int step1     = img->widthStep;
int step2     = img2->widthStep;
int depth1    = img->depth;
int depth2    = img2->depth;
uchar *data1   = (uchar *)img->imageData;
uchar *data2   = (uchar *)img2->imageData;

for(h=0;h<height;h++) for(w=0;w<width;w++) for(c=0;c<channels;c++) {
   // attempt code...
}

// attempt one
// result: white image, two red spots which appear in the original image too.
// this is the closest result, what's going wrong?!
// see: http://files.dazjorz.com/cache/conversion.png
((float*)data2+h*step2+w*channels+c)[0] = data1[h*step1+w*channels+c];

// attempt two
// when I change float to unsigned long in both previous examples, I get a black screen.

// attempt three
// result: seemingly random data to the top of the screen.
data2[h*step2+w*channels*3+c] = data1[h*step1+w*channels+c];
data2[h*step2+w*channels*3+c+1] = 0x00;
data2[h*step2+w*channels*3+c+2] = 0x00;

// and then some other things. Nothing did what I wanted. I couldn't get an output
// image which looked the same as the input image.

如您所见,我真的不知道自己在做什么。我很想知道,但如果我能正确完成这项工作,我会更喜欢它。感谢我得到的任何帮助!

4

6 回答 6

30

您正在寻找的函数是 cvConvertScale()。它会自动为您进行任何类型转换。您只需指定要按 1/255 的因子进行缩放(将范围 [0...255] 映射到 [0...1])。

例子:

IplImage *im8 = cvLoadImage(argv[1]);
IplImage *im32 = cvCreateImage(cvSize(im8->width, im8->height), 32, 3);

cvConvertScale(im8, im32, 1/255.);

注意1/255.- 中的点以强制进行双重除法。没有它,你得到的比例为 0。

于 2009-01-20T16:24:32.110 回答
6

也许这个链接可以帮助你?

编辑响应OP的第二次编辑和评论

你有没有尝试过

float value = 0.5

代替

float value = 0x0000001;

我认为浮点颜色值的范围是从 0.0 到 1.0,其中 1.0 是白色。

于 2008-12-27T14:37:41.840 回答
2

浮点颜色从 0.0 到 1.0,uchars 从 0 到 255。以下代码修复它:

// h is height, w is width, c is current channel (0 to 2)
int b = ((uchar *)(img->imageData + h*img->widthStep))[w*img->nChannels + c];
((float *)(img2->imageData + h*img2->widthStep))[w*img2->nChannels + c] = ((float)b) / 255.0;

非常感谢Stefan Schmidt帮我解决这个问题!

于 2008-12-27T21:04:30.840 回答
1

如果你不放点 (.),一些编译器会理解为 int 除法,给你一个 int 结果(在这种情况下为零)。

于 2009-04-15T05:07:06.873 回答
1

您可以使用 boost::shared_ptr 和模板元编程创建一个 IplImage 包装器。我已经做到了,我得到了自动垃圾收集,以及从一个深度到另一个深度或从一个通道到多通道图像的自动图像转换。

我已经调用了 API blImageAPI,它可以在这里找到: http ://www.barbato.us/2010/10/14/image-data-structure-based-shared_ptr-iplimage/

它非常快,并且使代码非常可读,(有利于维护算法)

它也可以在 opencv 算法中代替 IplImage 使用,而无需更改任何内容。

祝你好运,写算法玩得开心!!!

于 2010-10-18T16:44:02.530 回答
0

IplImage *img8,*img32;
img8 =cvLoadImage("a.jpg",1);

    cvNamedWindow("Convert",1);
    img32 = cvCreateImage(cvGetSize(img8),IPL_DEPTH_32F,3);
    cvConvertScale(img8,img32,1.0/255.0,0.0);

//用于确认检查像素值(0 - 1之间)

    for(int row = 0; row < img32->height; row++ ){
                float* pt = (float*) (img32->imageData + row * img32->widthStep);
                for ( int col = 0; col < width; col++ )
                            printf("\n %3.3f , %3.3f , %3.3f ",pt[3*col],pt[3*col+1],pt[3*col+2]);                  
            }

    cvShowImage("Convert",img32);
    cvWaitKey(0);
    cvReleaseImage(&img8);
    cvReleaseImage(&img32);
    cvDestroyWindow("Convert");
于 2011-11-06T20:53:56.767 回答