I am trying to install opencv 2.4.13 and in the include folder i've found only vc11 and vc12 indicating visual studio 11 and 12, and unfortunately I've visual studio 2010 so can I use any of them in linker property ? and how can I solve that ?
Asked
Active
Viewed 449 times
0
-
3No, you'll need to compile from source with VS2010, additionally openCV uses STL extensively so even if it didn't complain on linking it will likely crash when it tries to deallocate from a different heap due to incompatible dll versions – EdChum Oct 28 '16 at 10:36
-
1recompile OpenCV for Visual Studio 2010 (vc10) – Miki Oct 28 '16 at 10:37
-
How to recompile ? – Sara Oct 28 '16 at 11:25
-
1compile using cmake – Optimus 1072 Oct 28 '16 at 12:36
-
I've downloaded the appropriate version and it includes vc10 but now I am facing a new issue when testing my first project using opencv error "Error 1 error LNK1123: failure during conversion to COFF: file invalid or corrupt " – Sara Oct 28 '16 at 14:10
-
I've solved the new error by following this post http://stackoverflow.com/questions/10888391/error-link-fatal-error-lnk1123-failure-during-conversion-to-coff-file-inval – Sara Oct 28 '16 at 14:29
1 Answers
0
I've solved this by re downloading earlier version of opencv or recompiling it myself in visual studio 2010 as advised by EdChum Hope this will help anyone has the same issue or inquiry

Sara
- 86
- 2
- 11