ArUco on visual studio 2013

回眸只為那壹抹淺笑 提交于 2019-12-11 17:58:44

问题


opencv2.4.10 was installed on my machine. And it integrates vs2013. Now, I want to create AR app using ArUco and vs2013.

I download ArUco 1.2.4 from here. And I create a console application on vs2013. I do below steps :

1.Menu Project ---- $ProjectName Properties

  1. Choose Configuration Manager... and add x64 platform

  2. At configuration field, choose release configuration

    3.1. At Configuration Properties ---- C/C++ ---- Additional Include Directories, ..\aruco_msvc\include

    3.2. At Configuration Properties ---- Linker ---- Additional Library Directories, ..\aruco_msvc\lib

    3.3 At Configuration Properties ---- Linker ---- Additional dependencies ---- add dependence libraries

aruco124.dll

tbb.dll

(there are some opencvxxx241.dll but I don't add them. Because I added opencvxxx2410.dll before.)

3.4. Add ..\aruco_msvc\bin to System Environment Path

3.5. Restart Visual studio.

Then, I run my project using release mode, it says that cannot open input file aruco124.dll

EDIT !!!

I use only aruco_msvc folder from taken here these steps. I think that I don't need aruco1.2.4 folder. Is that right?


回答1:


I change step 3.3, and it works.

3.3 At Configuration Properties ---- Linker ---- Additional dependencies ---- add dependence libraries

aruco124.lib



来源:https://stackoverflow.com/questions/28543484/aruco-on-visual-studio-2013

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!