首页 > 其他 > 详细

.PFM文件转Mat格式

时间:2019-02-01 23:17:26      阅读:218      评论:0      收藏:0      [点我收藏+]

起因

因为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格式

原文:https://www.cnblogs.com/cvwyh/p/10347255.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!