undefined reference to tensorflow::readbinaryproto error
JustWon opened this issue · 5 comments
Hello, I am trying to compile your newer version of segmap which containing the cnn descriptor.
the most of catkin packages were built but I encountered an error while "catkin build segmapper" as below.
I searched for this issue on Google and found out that it's because the dynamic lib of tensorflow is not installed.
mgharbi/hdrnet_legacy#10
so I re-built tensorflow 1.8.0 with the below command and re-installed.
bazel build --config=opt --define framework_shared_object=true tensorflow:libtensorflow_cc.so
However, the same error happens.
Can you guess what is the problem?
Thank you,
Seems to be a tensorflow compilation issue. What you could do is try with a newer version of tensorflow, such as 1.10. Only thing you'd need to do after that is retrain the models which are not compatible across versions of tensorflow.
@smauq Thank you so much!
I successfully built the newer version of Segmap with Tensorflow 1.9.0!
Hi,I also install the Tensorflow 1.9.0,but when I run 'catkin build tensorflow_ros_cpp --cmake-args -DFORCE_TF_PIP_SEARCH="ON"' it turned a error: Tensorflow was not found
What can I do to solve it ?
Thanks
Hi, @JustWon and @smauq . After so many times trying, I solved many issues but still got the exact same problems as this one. I use TF 1.10 and compiled it from the source using command below:
bazel build --config=opt --config=cuda --cxxopt="-D_GLIBCXX_USE_CXX11_ABI=0" --define framework_shared_object=true tensorflow:libtensorflow_cc.so //tensorflow/tools/pip_package:build_pip_package
Could you please give me some details about how to solve this problem?
Hello, I am trying to compile your newer version of segmap which containing the cnn descriptor. the most of catkin packages were built but I encountered an error while "catkin build segmapper" as below.
I searched for this issue on Google and found out that it's because the dynamic lib of tensorflow is not installed. mgharbi/hdrnet_legacy#10
so I re-built tensorflow 1.8.0 with the below command and re-installed. bazel build --config=opt --define framework_shared_object=true tensorflow:libtensorflow_cc.so
However, the same error happens. Can you guess what is the problem?
Thank you,
hi,I encountered the same problem with you,can you tell me the answer?