我正在运行需要cpp编译器的脚本。我在Windows和Ubuntu上使用MATLAB。在Windows上,使用:
MEX configured to use 'MinGW64 Compiler (C++)' for C++ language compilation.
我没问题。
在Ubuntu上,我有:
MEX configured to use 'g++' for C++ language compilation.
当我尝试编译.cpp文件时,我收到此错误:
Error using mex
/home/christosandsoren/17gr10409/deformable_models/texture_functions/build_km_tree.cpp: In function ‘void mexFunction(int, mxArray**, int, const mxArray**)’:
/home/christosandsoren/17gr10409/deformable_models/texture_functions/build_km_tree.cpp:380:9: error: cannot convert ‘const size_t* {aka const long unsigned int*}’ to ‘const
int*’ in assignment
dim = mxGetDimensions(prhs[0]);
^
/home/christosandsoren/17gr10409/deformable_models/texture_functions/build_km_tree.cpp:402:68: error: cannot convert ‘int*’ to ‘const size_t* {aka const long unsigned
int*}’ for argument ‘2’ to ‘mxArray* mxCreateNumericArray(size_t, const size_t*, mxClassID, mxComplexity)’
plhs[0] = mxCreateNumericArray(2, dtree, mxDOUBLE_CLASS, mxREAL);
^
Error in compile_mex_functions (line 3)
mex build_km_tree.cpp % based on Euclidean distance
我按sudo apt-get install mingw-w64
安装了mingw-w64,但我仍然得到相同的结果。
答案 0 :(得分:6)
问题是您对维度数组使用int
而非mwSize
:
const int *dim; // image dimensinos
int dtree[2]; // tree dimensions
这些应该是:
const mwSize *dim; // image dimensinos
mwSize dtree[2]; // tree dimensions
MathWorks的描述是:
mwSize是一种表示大小值的类型,例如数组维度。使用此功能可实现跨平台灵活性。默认情况下,mwSize等于C中的int。
使用mex -largeArrayDims开关时,mwSize相当于C中的size_t。
所以问题是在一个平台上使用int*
是合法的,而在其他平台上则可能是size_t*
。但是,始终正确使用mwSize*
,因为这是便携式解决方案。
作为旁注,我会像这样写第一行:
mwSize const* dim; // image dimensinos
这种方式恕我直言,link to examples
答案 1 :(得分:3)
正如Jonas在上面的答案中指出的那样,最好使用mwSize。
在64位和32位系统之间切换时,也可能导致同样的问题。 eg this thread
在这种情况下,您还可以尝试使用32位兼容性标志编译mex:
mex -DMX_COMPAT_32 file.cpp
此解决方案适用于我的情况。