Faster-RCNN_TF代码错误记录

论文:https://arxiv.org/pdf/1506.01497v3.pdf
代码:https://github.com/smallcorgi/Faster-RCNN_TF
错误记录

sudo apt-get install python-opencv

_ZN10tensorflow7strings6StrCatB5cxx11ERKNS0_8AlphaNumE
在lib中的make.sh中加入-D_GLIBCXX_USE_CXX11_ABI=0:

g++ -std=c++11 -shared -o roi_pooling.so roi_pooling_op.cc \
    roi_pooling_op.cu.o -I $TF_INC  -D GOOGLE_CUDA=1 -fPIC $CXXFLAGS  -D_GLIBCXX_USE_CXX11_ABI=0 \
    -lcudart -L $CUDA_PATH/lib64

rerun make

_tkinter.TclError: no display name and no $DISPLAY environment variable
图形界面下运行或者在demo.py头部加入以下code:

import matplotlib
matplotlib.use('Agg')

查看gcc版本

gcc -v

你可能感兴趣的:(Faster-RCNN_TF代码错误记录)