Derzu

Results 13 comments of Derzu

Hi Smihael, I think the problem is the OpenCV version, the versions above 3.0 works with the include: `opencv2/.hpp` The versions below 3.0 uses: `opencv2//.hpp` Look at these links: https://docs.opencv.org/3.2.0/db/dfa/tutorial_transition_guide.html...

I think we can check the OpenCV version on the compilation time. Look at this link: https://stackoverflow.com/questions/2422514/how-to-check-for-opencv-on-ubuntu-9-10 So we can do a marco #if like that: `#if CV_VERSION >= 3`...

Hi, it's an opencv error. Try to recompile opencv with this flags: cmake -DWITH_IPP=ON -DINSTALL_CREATE_DISTRIB=ON More info at these links: https://stackoverflow.com/questions/34401117 https://github.com/pjreddie/darknet/issues/290