Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 4 additions & 16 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,12 @@ official [ROS 2 installation guide](https://docs.ros.org/en/galactic/Installatio

### other dependencies

● Install dependencies (be careful with your ROS distribution)
● Install dependencies with rosdep

```bash
Assuming you have sourced the ros environment, same below
sudo apt install libgflags-dev ros-$ROS_DISTRO-image-geometry ros-$ROS_DISTRO-camera-info-manager\
ros-$ROS_DISTRO-image-transport ros-$ROS_DISTRO-image-publisher libgoogle-glog-dev libusb-1.0-0-dev libeigen3-dev

```

● Install libuvc

```bash
git clone https://github.com/libuvc/libuvc.git
cd libuvc
mkdir build && cd build
cmake .. && make -j4
sudo make install
sudo ldconfig # Refreshing the link library
#sudo rosdep init #uncomment, if not done
#rosdep update #uncomment, if not done
sudo apt update && rosdep install --from-paths src --ignore-src -r -y
```

### Getting Started
Expand Down
8 changes: 7 additions & 1 deletion astra_camera/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@
<depend>astra_camera_msgs</depend>
<depend>builtin_interfaces</depend>
<depend>class_loader</depend>
<depend>message_filters</depend>
<depend>camera_info_manager</depend>
<depend>cv_bridge</depend>
<depend>eigen</depend>
<depend>image_geometry</depend>
<depend>image_publisher</depend>
<depend>image_transport</depend>
<depend>libgflags-dev</depend>
<depend>libgoogle-glog-dev</depend>
<depend>libusb-1.0</depend>
<depend>libuvc-dev</depend>
<depend>message_filters</depend>
<depend>nlohmann-json-dev</depend>
<depend>rclcpp_components</depend>
<depend>rclcpp</depend>
<depend>sensor_msgs</depend>
Expand Down