问题描述
我在具有ROS indigo和python3的Ubuntu 14.04上有一个计算机视觉项目,然后我不得不在具有ROS动力学的Ubuntu 16.04上进行了开发.在这里,我遇到了多个问题:
I had a computer vision project on Ubuntu 14.04 with ROS indigo and python3, then I had to move on Ubuntu 16.04 with ROS kinetic. Here I ran into multiple issues:
1)我安装了opencv,但无法将其导入python3中,错误消息是:
1) I installed opencv, but couldn't import it in python3, the error message was:
Traceback (most recent call last):
File "test.py", line 2, in <module>
import cv2
ImportError: /opt/ros/kinetic/lib/python2.7/dist-packages/cv2.so:
undefined symbol: PyCObject_Type
我发现只是重命名cv2.so
What I figured out is just rename cv2.so
cd /opt/ros/kinetic/lib/python2.7/dist-packages/
sudo mv cv2.so cv2_ros.so
然后我能够导入cv2并使用它
Then I was able to import cv2 and use it
2)然后我无法导入rospy,但是安装python3-catkin-pkg-modules和python3-rospkg-modules解决了该问题
2) Then I couldn't import rospy, but installation of python3-catkin-pkg-modules and python3-rospkg-modules fixed that problem
3)最后,我遇到了cv_bridge的问题,它说:
3) Finally I ran into an issue with cv_bridge it says:
[ERROR] [1520780674.845066]: bad callback: <bound method ViewsBuffer.update of <__main__.ViewsBuffer object at 0x7f5f45a07f28>>
Traceback (most recent call last):
File "/opt/ros/kinetic/lib/python2.7/dist-packages/rospy/topics.py", line 750, in _invoke_callback
cb(msg)
File "test.py", line 48, in update
im = self.bridge.imgmsg_to_cv2(im, "bgr8")
File "/opt/ros/kinetic/lib/python2.7/dist-packages/cv_bridge/core.py", line 163, in imgmsg_to_cv2
dtype, n_channels = self.encoding_to_dtype_with_channels(img_msg.encoding)
File "/opt/ros/kinetic/lib/python2.7/dist-packages/cv_bridge/core.py", line 99, in encoding_to_dtype_with_channels
return self.cvtype2_to_dtype_with_channels(self.encoding_to_cvtype2(encoding))
File "/opt/ros/kinetic/lib/python2.7/dist-packages/cv_bridge/core.py", line 91, in encoding_to_cvtype2
from cv_bridge.boost.cv_bridge_boost import getCvType
ImportError: dynamic module does not define module export function (PyInit_cv_bridge_boost)
我相信问题出在cv_bridge_boost.so文件中.我还尝试从 https://github.com/ros-perception/vision_opencv 构建cv_bridge ,但它会自动为python2.7生成,我试图在其中修改CMakeLists.txt以便在其中指定python3,但是我对CMakeLists经验不足,因此无法正常工作.我也尝试将cv_bridge模块复制到我的项目文件夹中,但是它并没有太大变化,仍然指向该cv_bridge_boost.so文件.还要提到的另一件事是cv_bridge在python2.7上可以正常工作,但是我的项目需要python3.5.
I believe the problem is in the cv_bridge_boost.so file.I also tried to build cv_bridge from https://github.com/ros-perception/vision_opencv, but it automatically builds for python2.7, I was trying to modify CMakeLists.txt a little bit to specify python3 there, but I don't have much experience with CMakeLists, so it didn't work. I also tried to copy cv_bridge module to my project folder, but it didn't change much and it still points on that cv_bridge_boost.so file.Another thing to mention is that cv_bridge works fine with python2.7, but my project requires python3.5.
推荐答案
是的,您应该使用python3构建cv_bridge.
You are right, you should build cv_bridge with python3.
您可以通过传递
-DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.5m -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.5m.so
args进行cmake.或者,如果您使用柳絮来构建软件包,则可以执行以下步骤:
args to cmake.Or, if you are using catkin to build packages, you can do next steps:
# `python-catkin-tools` is needed for catkin tool
# `python3-dev` and `python3-catkin-pkg-modules` is needed to build cv_bridge
# `python3-numpy` and `python3-yaml` is cv_bridge dependencies
# `ros-kinetic-cv-bridge` is needed to install a lot of cv_bridge deps. Probaply you already have it installed.
sudo apt-get install python-catkin-tools python3-dev python3-catkin-pkg-modules python3-numpy python3-yaml ros-kinetic-cv-bridge
# Create catkin workspace
mkdir catkin_workspace
cd catkin_workspace
catkin init
# Instruct catkin to set cmake variables
catkin config -DPYTHON_EXECUTABLE=/usr/bin/python3 -DPYTHON_INCLUDE_DIR=/usr/include/python3.5m -DPYTHON_LIBRARY=/usr/lib/x86_64-linux-gnu/libpython3.5m.so
# Instruct catkin to install built packages into install place. It is $CATKIN_WORKSPACE/install folder
catkin config --install
# Clone cv_bridge src
git clone https://github.com/ros-perception/vision_opencv.git src/vision_opencv
# Find version of cv_bridge in your repository
apt-cache show ros-kinetic-cv-bridge | grep Version
Version: 1.12.8-0xenial-20180416-143935-0800
# Checkout right version in git repo. In our case it is 1.12.8
cd src/vision_opencv/
git checkout 1.12.8
cd ../../
# Build
catkin build cv_bridge
# Extend environment with new package
source install/setup.bash --extend
还有
$ python3
Python 3.5.2 (default, Nov 23 2017, 16:37:01)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from cv_bridge.boost.cv_bridge_boost import getCvType
>>>
如果遇到下一个错误
CMake Error at /usr/share/cmake-3.5/Modules/FindBoost.cmake:1677 (message):
Unable to find the requested Boost libraries.
Boost version: 1.58.0
Boost include path: /usr/include
Could not find the following Boost libraries:
boost_python3
No Boost libraries were found. You may need to set BOOST_LIBRARYDIR to the
directory containing Boost libraries or BOOST_ROOT to the location of
Boost.
Call Stack (most recent call first):
CMakeLists.txt:11 (find_package)
这是因为CMake试图找到libboost_python3.so库,但是在ubuntu中它是libboost_python-py35.so
(/usr/lib/x86_64-linux-gnu/libboost_python-py35.so
),因此您应该更改行
It is because CMake tries to find libboost_python3.so library, but in ubuntu it is libboost_python-py35.so
(/usr/lib/x86_64-linux-gnu/libboost_python-py35.so
), so you should change line
find_package(Boost REQUIRED python3)
到
find_package(Boost REQUIRED python-py35)
在文件src/vision_opencv/cv_bridge/CMakeLists.txt
中并重新生成程序包.
in file src/vision_opencv/cv_bridge/CMakeLists.txt
and rebuild package.
这篇关于无法将cv_bridge与ROS Kinetic和Python3一起使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!