Ask Your Question

ashray.malhotra's profile - activity

2015-11-04 10:51:37 -0600 received badge  Student (source)
2015-09-09 01:02:47 -0600 asked a question OpenGL integration with OpenCV

My program requires me to use OpenCV with openGL. To the best of my knowledge, currently only Win32 openCV supports OpenGL integration and not the x64 version. Please correct me if I am wrong. Also is OpenGL interoperatibility coming to the x64 version anytime soon?

Thanks.

2015-09-07 05:15:33 -0600 commented answer Windows linking dll error

A clarification to the second question. We are doing dynamic linking here right? And exactly do the lb files store(because I tried to build it without linking to the .lib files and it fails)

2015-09-07 04:46:19 -0600 received badge  Scholar (source)
2015-09-07 04:46:18 -0600 received badge  Supporter (source)
2015-09-07 02:55:21 -0600 asked a question Windows linking dll error

Hello, I have worked extensively with openCV on my mac but I am having trouble installing it in windows. I am using visual studio 2013 as my IDE and trying to setup it up with openCV. I read this entire article and spent days trying to read up here and on Stack overflow to solve my error but am still stuck.

I have linked .lib files as referred to in the article but whenever I run my program, it says that it cant find the .dll's.

  • Why is it looking for libs? In the article above have we set up for static or dynamic linking?

I tried copying the required dll 's in the exe file of visual studio and it worked. But I dont want to do this for every project that I make hence I want it to be able to find the dll on its own.

  • I have included all the .lib files in the additional dependencies option in VS 2013. But what does it do(assuming we are doing dynamic linking here). Does it contain the address to .dll's(my best guess). In that case why cant it find dll's?

Thanks for your help.