-
Notifications
You must be signed in to change notification settings - Fork 318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An error of convert_imageset_and_flow #75
Comments
when I run : make -j 5 all tools pycaffe I get error do you know how to solve it ? Could you help me ? The error like this: tools/convert_imageset_and_disparity.cpp:5:1: warning: multi-line comment [-Wcomment] |
@gyguo You're right, thanks!
There's something about your system that I don't understand. This error should not happen: Does the file |
thanks for your reply. The file /usr/include/limits.h exist on my system. I also change the gcc version to gcc5.4 . I tried a lot of ways,but it still do not work. I think there may be some problems with my system. I will try to reinstall my Ubuntu 16.04,then try it again. |
I am so happy I can run it by reinstall my system . I run it in Ubuntu 16.04 ,gcc 5.4 ,CUDA 8 ,CUDNN 5.1 ,Opencv3.1. And add #include in 'convert_imageset_and_flow.cpp'. |
@strivejin good to hear :) although still a strange issue |
@nikolausmayer Similarly, missing |
flownet2/tools/convert_imageset_and_flow.cpp
Line 135 in 1d72c52
assert(cv_img2.cols==xSize && cv_img1.rows==ySize );
should be changed toassert(cv_img2.cols==xSize && cv_img2.rows==ySize );
The text was updated successfully, but these errors were encountered: