.PFM文件轉Mat格式
阿新 • • 發佈:2019-02-02
The not read sin ads bsp hat load https
起因
因為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格式