.PFM文件转Mat格式

Posted cvwyh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.PFM文件转Mat格式相关的知识,希望对你有一定的参考价值。

起因

因为OpenCV不支持.pfm文件格式的操作,而middlebury提供的groundtruth一般为.pfm格式,为避免重复造轮子,就去github上找了大神提供的开源代码分享给大家。

轮子

github链接:https://github.com/antoinetlc/PFM_ReadWrite

例子

/**
 * Example of how to read and save PFM files.
 */

#include <iostream>
#include <string>

#include "PFMReadWrite.h"

using namespace std;
using namespace cv;

int main(void)
{
    //Example that loads an image and stores it under another name
    Mat image = loadPFM(string("image.pfm"));

    //Display the image
    imshow("Image", image);
    waitKey(0);

    savePFM(image, "image_saved.pfm");

    return 0;
}

 

以上是关于.PFM文件转Mat格式的主要内容,如果未能解决你的问题,请参考以下文章

Mat 图像和 BMP格式图像的相互转换

Opencv和Qt QImage格式转Mat

LIBTIFF 16位灰度tif图像转成OpenCV中的Mat格式并显示

php-pfm指定配置文件

scikit-image:遥感图像geotiff格式转mat格式

matlab将txt格式转成wav格式