-
Notifications
You must be signed in to change notification settings - Fork 37
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
Compiling error: ‘Model::points_’ is not a variable in clause ‘shared’ #1
Comments
@hhhhhli |
Hi @lyp0413 Thank you! |
Hi, Thanks for sharing your inspiring and useful project. 0% 10 20 30 40 50 60 70 80 90 100%
-- Build files have been written to: /home/chao/Vid2Curve/build 0% 10 20 30 40 50 60 70 80 90 100% Have you ever encountered this error? If yes, could you please tell me how to fix it? |
Hi,
Thanks for sharing your inspiring and useful project.
I got an error when compling it (executing
make Display
), and the error message is shown below./home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp: In member function ‘double Model::Score()’: /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:103:140: error: ‘Model::points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:103:140: error: ‘Model::tangs_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:103:140: error: ‘Model::tang_scores_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:103:140: error: ‘Model::hope_dist_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:103:140: error: ‘Model::views_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:103:140: error: ‘Model::spanning_tree_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp: In member function ‘void Model::DeleteOutliers()’: /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:384:92: error: ‘Model::n_points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:384:92: error: ‘Model::points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp: In member function ‘double Model::UpdatePointsSplitAndSolve(bool, Graph*, Graph*)’: /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1151:130: error: ‘Model::points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1151:130: error: ‘Model::tangs_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1151:130: error: ‘Model::tang_scores_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1151:130: error: ‘Model::hope_dist_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1151:130: error: ‘Model::views_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1168:100: error: ‘Model::n_points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1168:100: error: ‘Model::points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1168:100: error: ‘Model::points_feasible_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp: In member function ‘void Model::Update3DRadius(double)’: /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1756:130: error: ‘Model::points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1756:130: error: ‘Model::tangs_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1756:130: error: ‘Model::tang_scores_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1756:130: error: ‘Model::hope_dist_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:1756:130: error: ‘Model::views_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp: In member function ‘void Model::UpdateViews()’: /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:2057:72: error: ‘Model::views_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp: In member function ‘void Model::RecoverUncertainRadius(Graph*)’: /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:2753:130: error: ‘Model::points_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:2753:130: error: ‘Model::tangs_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:2753:130: error: ‘Model::tang_scores_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:2753:130: error: ‘Model::hope_dist_’ is not a variable in clause ‘shared’ /home/hl/3D_reconstruction/Vid2Curve/src/Core/Model.cpp:2753:130: error: ‘Model::views_’ is not a variable in clause ‘shared’ CMakeFiles/Display.dir/build.make:231: recipe for target 'CMakeFiles/Display.dir/src/Core/Model.cpp.o' failed make[3]: *** [CMakeFiles/Display.dir/src/Core/Model.cpp.o] Error 1 CMakeFiles/Makefile2:75: recipe for target 'CMakeFiles/Display.dir/all' failed make[2]: *** [CMakeFiles/Display.dir/all] Error 2 CMakeFiles/Makefile2:82: recipe for target 'CMakeFiles/Display.dir/rule' failed make[1]: *** [CMakeFiles/Display.dir/rule] Error 2 Makefile:118: recipe for target 'Display' failed make: *** [Display] Error 2
Have you ever encountered this error? If yes, could you please tell me how to fix it?
Thank you very much :)
The text was updated successfully, but these errors were encountered: