Module opencv_tracking disabled because opencv_dnn dependency can't be resolved!
I run opencv-3.2.0/platforms/ios/build_framework.py with command: ./build_framework.py --contrib ../../opencv_contrib ios
But "opencv2.framework" not generate tracking module, I find follow log: -- Module opencv_sfm disabled because the following dependencies are not found: Glog/Gflags -- Module opencv_tracking disabled because opencv_dnn dependency can't be resolved!
I want to use the KCF and TLD algorithm in opencv_tracking, how to use it on ios ?
In tracking module of opencv_contrib dnn module is needed because I think there is TrackerGOTURN
SFM module needs glog and gflags
Now you can check why dnn module is disabled in cmake for ios.
Thanks!
about opencv_dnn, it is a bug of opencv, look at https://github.com/opencv/opencv_contrib/issues/1036
about opencv_sfm, I have install gflags and glog, but still prompt not found. Then i find the Note on docs: The module is only available for Linux/GNU systems. look at http://docs.opencv.org/3.2.0/db/db8/tutorial_sfm_installation.html
It works too on windows
Oh, I am a beginner, only use KCF module, not use SFM module, thank you!
Any other ways to solve this issue? I need to get OpenCV 3.2 tracking working.