3

I am using cpp files in matlab to get images from Kinect. It gives the following error:

Error using mex (line 206)
Unable to complete successfully.

Error in compile_cpp_files (line 47)
mex('-v',['-L' MicrosoftSDKPathLib],'-lMSRKinectNUI',['-I'
MicrosoftSDKPathInclude],Filename);

I don't know about this error and please let me know how to solve this error?

4

1 回答 1

1

首先,您需要使用配置您的 mex 编译器

>> mex -setup

Matlab 将扫描您的 PC 以查找已安装的编译器并建议您使用哪一个。
我强烈建议你使用 Visual Studio 编译器(你得到的最新版本)。

然后尝试重新运行compile_cpp_files脚本。

于 2013-03-05T07:38:00.923 回答