OpenCV IplImage 数据浮动

发布于 2024-11-15 07:53:37 字数 59 浏览 4 评论 0原文

有没有办法将 IplImage 指针转换为浮点指针?基本上将图像数据转换为浮点数。 感谢对此的任何帮助。

Is there a way to convert IplImage pointer to float pointer? Basically converting the imagedata to float.
Appreciate any help on this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦一生花开无言 2024-11-22 07:53:37

使用cvConvert(src,dst),其中src是源图像,dst是预分配的浮点图像。

例如

dst = cvCreateImage(cvSize(src->width,src->height),IPL_DEPTH_32F,1);
cvConvert(src,dst);

Use cvConvert(src,dst) where src is the source image and dst is the preallocated floating point image.

E.g.

dst = cvCreateImage(cvSize(src->width,src->height),IPL_DEPTH_32F,1);
cvConvert(src,dst);
溺ぐ爱和你が 2024-11-22 07:53:37
// Original image gets loaded as IPL_DEPTH_8U
IplImage* colored = cvLoadImage("coins.jpg", CV_LOAD_IMAGE_UNCHANGED);
if (!colored)
{   
    printf("cvLoadImage failed!\n");
    return; 
}   

// Allocate a new IPL_DEPTH_32F image with the same dimensions as the original
IplImage* img_32f = cvCreateImage(cvGetSize(colored), 
                                  IPL_DEPTH_32F, 
                                  colored->nChannels);
if (!img_32f)
{   
    printf("cvCreateImage failed!\n");
    return;
}   

cvConvertScale(colored, img_32f);

// quantization for 32bit. Without it, this img would not be displayed properly
cvScale(img_32f, img_32f, 1.0/255);

cvNamedWindow("test", CV_WINDOW_AUTOSIZE);
cvShowImage ("test", img_32f);
// Original image gets loaded as IPL_DEPTH_8U
IplImage* colored = cvLoadImage("coins.jpg", CV_LOAD_IMAGE_UNCHANGED);
if (!colored)
{   
    printf("cvLoadImage failed!\n");
    return; 
}   

// Allocate a new IPL_DEPTH_32F image with the same dimensions as the original
IplImage* img_32f = cvCreateImage(cvGetSize(colored), 
                                  IPL_DEPTH_32F, 
                                  colored->nChannels);
if (!img_32f)
{   
    printf("cvCreateImage failed!\n");
    return;
}   

cvConvertScale(colored, img_32f);

// quantization for 32bit. Without it, this img would not be displayed properly
cvScale(img_32f, img_32f, 1.0/255);

cvNamedWindow("test", CV_WINDOW_AUTOSIZE);
cvShowImage ("test", img_32f);
铜锣湾横着走 2024-11-22 07:53:37

您无法通过简单地投射指针来将图像转换为浮动图像。您需要循环每个像素并计算新值。

请注意,大多数浮点图像类型假定范围为 0-1,因此您需要将每个像素除以您想要的最大值。

You can't convert the image to float by simply casting the pointer. You need to loop over every pixel and calculate the new value.

Note that most float image types assume a range of 0-1 so you need to divide each pixel by whatever you want the maximum to be.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文