What is the difference between vc10, vc11 and vc12 libraries in OpenCV?

后端 未结 3 971
我在风中等你
我在风中等你 2020-12-23 14:54

I am using OpenCV 2.4.11 and I have 2 folders x64 and x86 both containing vc10, vc11 and vc12 folders, each containing lib folders with the libraries. The libraries look pre

相关标签:
3条回答
  • 2020-12-23 15:17

    It refers to Visual C++ version used for the build. x64 and x86 is the chip architecture 64 vs 32 bit.

    0 讨论(0)
  • 2020-12-23 15:32

    It refers to MS visual stdio version https://en.wikipedia.org/wiki/Microsoft_Visual_Studio

    0 讨论(0)
  • 2020-12-23 15:38

    They are different builds for each version of Microsoft's Visual Studio compiler.

    • vc16: The compiler packaged with Visual Studio 2019
    • vc15: The compiler packaged with Visual Studio 2017
    • vc14: The compiler packaged with Visual Studio 2015
    • vc12: The compiler packaged with Visual Studio 2013
    • vc11: The compiler packaged with Visual Studio 2012
    • vc10: The compiler packaged with Visual Studio 2010
    0 讨论(0)
提交回复
热议问题