Ask Your Question

knox's profile - activity

2016-06-04 23:11:33 -0600 received badge  Notable Question (source)
2015-10-10 13:40:22 -0600 received badge  Popular Question (source)
2014-10-22 16:22:14 -0600 commented question OpenCV3.0 missing headers and libraries.

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

2014-10-22 14:04:25 -0600 commented question OpenCV3.0 missing headers and libraries.

BUILD_PACKAGE is ON by default and I never changed it. I tried to ON and OFF the INSTALL_CREATE_DISTRIB but both the times I get that error where its not building INSTALL Project

2014-10-22 13:47:40 -0600 commented question OpenCV3.0 missing headers and libraries.

I get this message when I build the OpenCV.sln file :

7>------ Skipped Build: Project: PACKAGE, Configuration: Release x64 ------ 7>Project not selected to build for this solution configuration

8>------ Skipped Build: Project: INSTALL, Configuration: Release x64 ------ 8>Project not selected to build for this solution configuration ========== Build: 2 succeeded, 0 failed, 51 up-to-date, 6 skipped ==========

2014-10-22 12:46:14 -0600 commented question OpenCV3.0 missing headers and libraries.

Do I need to select the INSTALL_CREATE_DISTRIB option in the cmake config step ?

2014-10-21 18:45:15 -0600 asked a question OpenCV3.0 missing headers and libraries.

Hi Guys, Iam trying to build opencv 3.0 from source. I downloaded the source code and using cmake I generated the OpenCV.sln file. I built the visual studio sln file in both debug and release modes. And I was able to run the samples. So far everything went well.

Now, I try to create a sample application in Visual Studio. I include the header files from "build/include" but unfortunately, there are no header files in this folder. I only see some cmake files, but no header files. Also build/x64 is supposed to have vc10,11,and 12 folders with respective lib,bin and statlib folders in it. But they are all missing. I only have some cmake files in the build/x64 folder. No libraries.

I also tried using the pre-built libraries by downloading and extracting from the sourceforge.net. build/include folder has the header files. But build/x64/vc12/lib doesn't have all the libraries. Its having only world300 and ts300 libraries, all the other libraries are missing.

I never had these issues with opencv 2.49. Any help in what I missing would be highly appreciated.