在Matlab中使用OS X编译/ mexing imrender函数时出错

时间:2015-04-25 16:36:54

标签: c++ macos matlab mex

我试图在Matlab中使用Oliver Woodford的imrender_v2.4.zip(http://www.robots.ox.ac.uk/~ojw/software.htm)中的特定函数,特别是vgg_qpbo函数。

相关文件应该识别出mex文件不存在并编译一个。

然而,在运行startup.m并尝试类似

之后

>> vgg_qpbo(1,1,1)

我得到了

Warning: Missing MEX-file: vgg_qpbo. Will attempt to compile and run. 
 > In vgg_mexcompile_script at 25
  In vgg_qpbo at 84 
mex -O -I"/Users/.../imrender/vgg" "-Iqpbo/" "vgg_qpbo.cxx" "qpbo/QPBO.cpp" "qpbo/QPBO_maxflow.cpp" "qpbo/QPBO_extra.cpp" "qpbo/QPBO_postprocessing.cpp"
Building with 'Xcode Clang++'.
In file included from /Users/.../imrender/vgg/vgg_qpbo.cxx:11:
In file included from qpbo/QPBO.h:116:
qpbo/block.h:124:56: warning: conversion from string literal to 'char *' is deprecated [-Wc++11-compat-deprecated-writable-strings]
                            if (!next) { if (error_function) (*error_function)("Not enough memory!"); exit(1); }
                                                                               ^
qpbo/block.h:223:56: warning: conversion from string literal to 'char *' is deprecated [-Wc++11-compat-deprecated-writable-strings]
                    if (!first) { if (error_function) (*error_function)("Not enough memory!"); exit(1); }
                                                                        ^
2 warnings generated.

ERROR while compiling vgg_qpbo
Error using vgg_mexcompile_script (line 30)
Unable to compile vgg_qpbo.

Error in vgg_qpbo (line 84)
vgg_mexcompile_script; % Compilation happens in this script

我一直试图找出问题所在。 主要的嫌疑人是我正在运行的Mac OS X(Yosemite 10.2),因为它可以在Linux版本上编译(不知道哪个,但我可以发现你认为它是否相关)我的主管使用了。它并不是我的计算机所独有的,因为我们在另一台Mac上尝试了完全相同的结果。

我相信这些警告是可以忽略的,因为它们只是警告(我在C ++中并不精明,但我认为它是一个相对较新的警告,但不应该影响编译本身。)

我也尝试弄清楚错误发生在脚本中的位置,但是mexing-part肯定是开始的,而且我感觉不舒服。

我之前在这台计算机上使用了其他脚本,我可以运行

>> mex -setup
没错。

所以有人知道问题可能是什么吗?谢谢你的时间!

顺便说一句,我正在运行Matlab R2014B。

修改

所以我遵循了lilbill39的建议并在调用mexing的行(在vgg_mexcompile中的第74行)放置了一个断点,然后运行

eval(cmd)
从命令行

这导致36个新警告,23个笔记和4个错误。

错误完全相同,但在不同的方面:

qpbo/instances.inc:19:29: error: explicit specialization of 'get_type_information' after instantiation
    inline void QPBO<int32_t>::get_type_information(char*& type_name, char*& type_format)

在这4个错误中的每一个之后,都会出现相同类型的注释:

/Users/.../imrender/vgg/qpbo/QPBO.cpp:277:3: note: implicit
instantiation first required here
            get_type_information(type_name, type_format);
            ^

还有另外一种说明(总共29种):

qpbo/instances.inc:15:16: note: in instantiation of member function  'QPBO<float>::Save' requested here
template class QPBO<float>;
           ^

箭头中有不同的类。

大多数警告都是相同的

conversion from string literal to 'char *' is deprecated
像以前一样警告。而有些属于

类型
format specifies type 'int' but the argument has type 'long long'

采用混合数字格式。

因此,似乎在QPBO.cpp文件中的四个位置需要“隐式实例化”(假设所有警告都可以再次被忽略)。通过快速谷歌搜索,我收集到它与文件的“链接”有关,但是它已经很晚了,将来必须继续搜索。在此之前的更多帮助当然会非常感谢!

1 个答案:

答案 0 :(得分:0)

我无法验证这是一个解决方案,因为它在我的机器上使用VS2012编译得很好,但我的建议是将实例化移动到专业化的声明和定义之下。编辑instances.inc并移动以下行:

// Instantiations
template class QPBO<int32_t>;
template class QPBO<int64_t>;
template class QPBO<float>;
template class QPBO<double>;

到文件的底部(专业化下面)。

请参阅this answer for an explanation