c++ - Caffe Installation - NuGet packages for OpenCv 2.4 and OpenBlas 0.2.14 missing - throwing several build errors on Visual Studio 2015 -
i absolute beginner in caffe , trying build caffe solution on windows 10 on visual studio 2015 opencv 3.1.0 on c++. have been following https://www.youtube.com/watch?v=nrzaf2sxhhm youtube link reference.
these steps have followed till now:-
1.i have uninstalled opencv 2.4 nuget packages library , have installed opencv default build (opencv 310) instead.
2.also have enabled nuget packages going tools->options->nuget package manager->package sources , have checked microsoft , dot net option there.
3.just fyi, want run in cpu mode (no gpu) , have changed settings in commonsettings.props follows,
<cpuonlybuild> true </ cpuonlybuild> <usecudnn > false </usecudnn>
4.i have changed blas configuration default (atlas) open since openblas v 0.2.14.1 installed in nuget packages.
# blas configuration (default = atlas) blas ?= open
i still getting following build errors-
severity code description project file line suppression state error project references nuget package(s) missing on computer. enable nuget package restore download them. more information, see http://go.microsoft.com/fwlink/?linkid=322105. missing file ..\..\..\nugetpackages\opencv.2.4.10\build\native\opencv.props. libcaffe c:\users\ad355671\downloads\caffe-master\caffe-master\windows\libcaffe\libcaffe.vcxproj 376 severity code description project file line suppression state error project references nuget package(s) missing on computer. enable nuget package restore download them. more information, see http://go.microsoft.com/fwlink/?linkid=322105. missing file ..\..\..\nugetpackages\openblas.0.2.14.1\build\native\openblas.targets. caffe c:\users\ad355671\downloads\caffe-master\caffe-master\windows\caffe\caffe.vcxproj 100
my questions are:-
why still building opencv2.4 when have uninstalled , used opencv3.10?
how resolve these build errors? missing out setting environment variables or entry on properties of config files(makefile.config , commonsettings.props )?
why not able pick openblas?
please have been stuck long. in advance.
how solve:
- uninstall "opencv default" nugetpackage
from tools-menu, select library package manager , click package manager console.
type "install-package opencv"
- rebuild all
Comments
Post a Comment