ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
2

libuvc kinetic

asked 2016-07-18 07:34:01 -0500

glagla gravatar image

updated 2016-07-21 08:46:23 -0500

Has anyone tried to install libuvc or libuvc_ros for kinetic distribution? I have no idea how it should be done.

Maybe using https://github.com/ktossell/libuvc_ros

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2017-05-09 12:52:07 -0500

As by today it is not possible to install libuvc_ros via apt-get. Here are the steps to install libuvc_ros manually under ROS kinetic:

# Install dependencies, as I wasn't able to install them via rosdep
sudo apt-get install libusb-1.0-0 libusb-1.0-0-dev

# Clone libuvc_ros and libuvc to your workspace
cd /path/to/your/workspace/src
git clone https://github.com/ktossell/libuvc_ros.git
git clone https://github.com/ktossell/libuvc.git

# The following instructions come from the libuvc's Readme file
mkdir libuvc/build
cd libuvc/build
cmake ..
make && sudo make install

# Run catkin
cd /path/to/your/workspace
catkin_make
edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2016-07-18 07:34:01 -0500

Seen: 2,657 times

Last updated: May 09 '17