mex 编译错误 C2440: 'initializing': 无法从 'const mwSize *' 转换为 'const int32_t *'
mex compilation error C2440: 'initializing': cannot convert from 'const mwSize *' to 'const int32_t *'
我没有使用 C/C++ 语法的经验,我正面临调整此语法更改的问题。我正在尝试为 libvisio2 生成 mex 文件。我有 visual studio 2017 和 matlab 2018a。
完整的错误是
D:\Libraries\libviso2\matlab\matcherMex.cpp(101): error C2440: 'initializing': cannot convert from 'const mwSize *' to
'const int32_t *'
D:\Libraries\libviso2\matlab\matcherMex.cpp(101): note: Types pointed to are unrelated; conversion requires
reinterpret_cast, C-style cast or function-style cast
文件 matcherMex.cpp 中的行是:
99: // get pointer to left image
100: uint8_t* I1 = (uint8_t*)mxGetPr(prhs[1]);
101: const int32_t *dims1 = mxGetDimensions(prhs[1]);
102:
103: // transpose
104: uint8_t* I1_ = transpose<uint8_t>(I1,dims1);
105: int32_t dims1_[] = {dims1[1],dims1[0],dims1[1]};
任何帮助将不胜感激,谢谢
编译时需要将-compatibleArrayDims
传递给mex
函数。
默认情况下,MEX 文件在数组索引和大小以 64 位整数存储的模式下编译(这是 MATLAB 本地存储它们的方式)。回到过去,大概在编写代码时,它们是 32 位整数。给定的编译器标志将使 MATLAB 自动为您转换这些变量的类型(如果数组大小太大而无法放入 32 位整数,则有望抛出错误)。
我没有使用 C/C++ 语法的经验,我正面临调整此语法更改的问题。我正在尝试为 libvisio2 生成 mex 文件。我有 visual studio 2017 和 matlab 2018a。
完整的错误是
D:\Libraries\libviso2\matlab\matcherMex.cpp(101): error C2440: 'initializing': cannot convert from 'const mwSize *' to
'const int32_t *'
D:\Libraries\libviso2\matlab\matcherMex.cpp(101): note: Types pointed to are unrelated; conversion requires
reinterpret_cast, C-style cast or function-style cast
文件 matcherMex.cpp 中的行是:
99: // get pointer to left image
100: uint8_t* I1 = (uint8_t*)mxGetPr(prhs[1]);
101: const int32_t *dims1 = mxGetDimensions(prhs[1]);
102:
103: // transpose
104: uint8_t* I1_ = transpose<uint8_t>(I1,dims1);
105: int32_t dims1_[] = {dims1[1],dims1[0],dims1[1]};
任何帮助将不胜感激,谢谢
编译时需要将-compatibleArrayDims
传递给mex
函数。
默认情况下,MEX 文件在数组索引和大小以 64 位整数存储的模式下编译(这是 MATLAB 本地存储它们的方式)。回到过去,大概在编写代码时,它们是 32 位整数。给定的编译器标志将使 MATLAB 自动为您转换这些变量的类型(如果数组大小太大而无法放入 32 位整数,则有望抛出错误)。