compile c++ code that uses openCV on Windows

4 ビュー (過去 30 日間)
MatlabUser
MatlabUser 2023 年 2 月 14 日
コメント済み: MatlabUser 2023 年 2 月 14 日
I am trying to run fileName.cpp code that includes opencv2 library
I have opencv installed on my system but I didn't know why when I use:
Mex fileName.cpp
I got this error:
Cannot open include file: 'opencv2/opencv.hpp': No such file or directory
it seems there is a problem in linking opencv library to Matlab so the mex file can find it? how can I do that for windows OS.
thank in advance ...

採用された回答

Walter Roberson
Walter Roberson 2023 年 2 月 14 日
mex does not know that it should link opencv2 if installed, and a lot of the time it would be a mistake to link it just because it is installed.
You should use the mex -I option to indicate the dictionary that contains opencv2, and the mex -L option to indicate the directory that contains the opencv2 DLLs
  1 件のコメント
MatlabUser
MatlabUser 2023 年 2 月 14 日
Thank you,
this is actually worked
from openCV folder: I used
>> mex -I'C:/Users/name/Downloads/opencv/build/include' -L'C:/Users/name/Downloads/opencv/build/x64/vc14/bin' fileName.cpp
and it worked
I also noticed that using
>>mexOpencv fileName.cpp
also worked...

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by