1

Microsoft Visual Studio 2008 がプリインストールされた Windows 7 (64 ビット) で Matlab コードを実行しようとしています。Matlab コードには、opencv でコンパイルする必要がある .cpp ファイルがあります。

私は使用しています:

system('"C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64\cl.exe"  /I"C:\OpenCV2.1\include\opencv"  camshift_wrapper.c'); 

次のようなエラーが発生します。

Microsoft (R) C/C++ Optimizing Compiler Version 15.00.21022.08 for x64 
Copyright (C) Microsoft Corporation.  All rights reserved. 

camshift_wrapper.c

c:\opencv2.1\include\opencv\cxtypes.h(52) : fatal error C1083: Cannot open include file: 'assert.h': No such file or directory 
4

1 に答える 1

0

/I "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\includeシステム コマンドの引数文字列に追加してみてください。

于 2012-11-12T13:44:24.337 に答える