我想在GPU中运行我的代码。
我有两个OpenCV版本:
cv_bridge
....................................... ......仅在CPU中cv_bridge
........>在运行代码时,系统会考虑ros-kinetic-opencv3 default
。因此,我通过以下方式删除了ros-kinetic-opencv3:sudo apt remove ros-kinetic-opencv3
,我使用this这样的GPU增强功能为OpenCV构建了cv_bridge(我在catkin_ws / src中下载vision_opencv,然后使用catkin_make
和source ./devel/setup.bash
)
我尝试运行两台相机:
1)相机名称:ASUS xtion
当我运行相机时:roslaunch openni_launch openni.launch
,出现此错误[openni.launch] is neither a launch file in package [openni_launch] nor is [openni_launch] a launch file name The traceback for the exception was written to the log file
。
[使用此命令时:sudo apt-get install ros-kinetic-openni-launch
,它可以工作但是用CPU而不是GPU运行,为什么?由于已安装ros-kinetic-opencv3
,因此我需要使用第一步(删除ros-kinetic-opencv3),这意味着一个封闭的循环
[2)摄像机名称:Orbbec Astra
我做了ASUS xtion之类的第一步和第二步。当我运行相机时:roslaunch astra_camera astra.launch
出现此错误:
WARNING: Package name "cvTest" does not follow the naming conventions. It should start with a lower case letter and only contain lower case letters, digits, underscores, and dashes. ... logging to /home/redhwan/.ros/log/aa3b63a6-eeea-11e9-880f-1c1b0d1de755/roslaunch-redhwan-8176.log Checking log directory for disk usage. This may take awhile. Press Ctrl-C to interrupt Done checking log file disk usage. Usage is <1GB. Traceback (most recent call last): File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/__init__.py", line 306, in main p.start() File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/parent.py", line 268, in start self._start_infrastructure() File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/parent.py", line 217, in _start_infrastructure self._load_config() File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/parent.py", line 132, in _load_config roslaunch_strs=self.roslaunch_strs, verbose=self.verbose) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/config.py", line 451, in load_config_default loader.load(f, config, verbose=verbose) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 749, in load self._load_launch(launch, ros_config, is_core=core, filename=filename, argv=argv, verbose=verbose) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 721, in _load_launch self._recurse_load(ros_config, launch.childNodes, self.root_context, None, is_core, verbose) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 655, in _recurse_load default_machine, is_core, verbose) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 685, in _recurse_load val = self._include_tag(tag, context, ros_config, default_machine, is_core, verbose) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 95, in call return f(*args, **kwds) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 589, in _include_tag inc_filename = self.resolve_args(tag.attributes['file'].value, context) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/xmlloader.py", line 183, in resolve_args return substitution_args.resolve_args(args, context=context.resolve_dict, resolve_anon=self.resolve_anon) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/substitution_args.py", line 370, in resolve_args resolved = _resolve_args(resolved, context, resolve_anon, commands) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/substitution_args.py", line 383, in _resolve_args resolved = commands[command](resolved, a, args, context) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/substitution_args.py", line 151, in _find source_path_to_packages=source_path_to_packages) File "/opt/ros/kinetic/lib/python2.7/dist-packages/roslaunch/substitution_args.py", line 197, in _find_executable full_path = _get_executable_path(rp.get_path(args[0]), path) File "/usr/lib/python2.7/dist-packages/rospkg/rospack.py", line 203, in get_path raise ResourceNotFound(name, ros_paths=self._ros_paths) ResourceNotFound: rgbd_launch ROS path [0]=/opt/ros/kinetic/share/ros ROS path [1]=/home/redhwan/catkin_ws/src ROS path [2]=/opt/ros/kinetic/share
我使用了
sudo apt install ros-kinetic-rgbd-launch
修复了此错误,但是可以用CPU而不是GPU运行为什么?由于已安装ros-kinetic-opencv3
,因此我需要使用第一步(删除ros-kinetic-opencv3),这意味着一个封闭的循环
请帮助我或有任何建议吗?
我想在GPU中运行我的代码。我有两个OpenCV版本:ros-kinetic-opencv3包括cv_bridge ............................... .........仅在具有GPU增强功能的CPU OpenCV中使用...
似乎正在运行