我想了解如何保存类型的图像float
:
float * image;
以这种方式分配:
int size = width * height;
image = (float *)malloc(size * sizeof(float));
我尝试使用 CImg 库,但不直接接受浮点数。事实上,我只用它来捕捉图像浮动,因为我只需要浮动图像。
CImg<float> image("image.jpg");
int width = image.width();
int height = image.height();
int size = width*height
float * image = image.data();
如何将此图片保存为float
从.jpg
或.bmp
可读。我想打开一个写缓冲区,但没有保存任何东西,我无法从文件中读取!