日期:2014-05-17 浏览次数:21017 次
由于最近有需求对OpenEXR格式的图片进行处理,而Matlab本身并不支持OpenEXR格式的图片读写。发现在网上有一个插件,使用该插件可以在Matlab中直接使用exrread/exrwrite对OpenEXR格式的图片进行处理:
网址为:
http://www.mit.edu/~kimo/software/Matlabexr/
为了防止该网址失效,我将该插件放在了资源里:http://download.csdn.net/detail/lqhbupt/4508152
1)Windows下安装编译IlmBase,Zlib,OpenEXR
http://blog.csdn.net/lqhbupt/article/details/7859034
2)解压MatlabEXR.zip到指定目录,并将该目录加入Matlab路径中。
cd到该目录
mex exrwrite.cpp -lHalf -lIlmImf -IC:\Deploy\include -LC:\Deploy\lib\Win32\Release
mex exrinfo.cpp -lIlmImf -lHalf -IC:\Deploy\include -LC:\Deploy\lib\Win32\Release
mex exrwrite.cpp -lIlmImf -lHalf -IC:\Deploy\include -LC:\Deploy\lib\Win32\Release
遇到问题及解决方案:
1)exrread.obj: error LNK2019: unresolved external symbol "private: static unionhalf::uif const * const half::_toFloat" (?_toFloat@half@@0QBTuif@1@B)referenced in function "public: __thiscall half::operator float(void)const" (??Bhalf@@QBEMXZ)
exrread.mexw32: fatal error LNK1120: 1 unresolved externals
解决方法:在exrread.cpp,exrinfo.cpp和exrwrite.cpp前加上一行
#define OPENEXR_DLL
2)Invalid MEX-file'C:\Users\IMI_User\Documents\MATLAB\MatlabEXR\MatlabEXR\exrread.mexw32': The specified module could not be found.
解决方法:将OpenEXR的dll路径添加到系统环境变量。