OpenCV 3.0 libraries are missing

I am trying to install OpenCV 3.0 Aplha. I am following these instructions http://docs.opencv.org/trunk/doc/tutorials/introduction/windows_install/windows_install.html

After downloading and extracting the package, I should have all the pre-built libraries in the folder: opencv \ build \ x86 \ vc12 \ lib, but I cannot see them in that folder. This folder only has opencv_ts300.lib and opencv_world300.lib. All other libraries seem to be missing. Also there is no DLL in bin folder. But the statlib folder contains all the static libraries.

I was also trying to build libraries from source, and according to the instructions after creating OpeCVALL.sln in visual studio, I should have libraries in x86 \ vc12, but the libraries don't seem to build in that folder. After going through the folders, I can see that the opencv libraries are in the bin / debug and bin / release folders. I thought I would use them for linking in visual studio, but I cannot find the header files in the build / include folder

I don't see any of these problems with Opencv 2.49. Any help on debugging this issue with 3.0 would be much appreciated.

Synopsis: After I have built the source / or off-the-shelf package, I can run the sample applications. But I don't find headers and libraries to create a visual studio project from scratch.

+3


source to share


2 answers


Ok, I figured out what's going wrong here ... Build the INSTALL project manually from OpenCV.sln by right clicking -> build. This will create the libraries in the build / install / x86 / vc12 folder. Here are the lib, bin and staticlib folders. Also included files are in build / install / include.



+2


source


Library files: located in the lib / debug (or release) folder of the cmake folder

DLL files: located in the bin / debug (or release) folder of the cmake folder



Header files: located in the opecv3 build / include directory

-1


source







All Articles