All Projects → RoboJackets → igvc-software

RoboJackets / igvc-software

Licence: MIT License
The code base for the RoboNav team's IGVC robot.

Programming Languages

Jupyter Notebook
11667 projects
C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language
CMake
9771 projects
shell
77523 projects

Projects that are alternatives of or similar to igvc-software

Cupoch
Robotics with GPU computing
Stars: ✭ 225 (+188.46%)
Mutual labels:  robotics, pathfinding, ros
2019-UGRP-DPoom
2019 DGIST DPoom project under UGRP : SBC and RGB-D camera based full autonomous driving system for mobile robot with indoor SLAM
Stars: ✭ 35 (-55.13%)
Mutual labels:  robotics, ros
linorobot2
Autonomous mobile robots (2WD, 4WD, Mecanum Drive)
Stars: ✭ 97 (+24.36%)
Mutual labels:  robotics, ros
erwhi-hedgehog
Erwhi Hedgehog main repository
Stars: ✭ 31 (-60.26%)
Mutual labels:  robotics, ros
piper
No description or website provided.
Stars: ✭ 50 (-35.9%)
Mutual labels:  robotics, ros
smart grasping sandbox
A public sandbox for Shadow's Smart Grasping System
Stars: ✭ 69 (-11.54%)
Mutual labels:  robotics, ros
RoboticsAcademy
Learn Robotics with JdeRobot
Stars: ✭ 160 (+105.13%)
Mutual labels:  robotics, ros
FusionAD
An open source autonomous driving stack by San Jose State University Autonomous Driving Team
Stars: ✭ 30 (-61.54%)
Mutual labels:  robotics, ros
erdos
Dataflow system for building self-driving car and robotics applications.
Stars: ✭ 135 (+73.08%)
Mutual labels:  robotics, ros
ROS-GPS
GPS Localization with ROS, OSM and rviz
Stars: ✭ 19 (-75.64%)
Mutual labels:  robotics, ros
aerial autonomy
Easily extendable package for interacting with and defining state machines for autonomous aerial systems
Stars: ✭ 22 (-71.79%)
Mutual labels:  robotics, ros
bio ik
MoveIt kinematics_base plugin based on particle optimization & GA
Stars: ✭ 104 (+33.33%)
Mutual labels:  robotics, ros
interbotix ros manipulators
ROS Packages for Interbotix Arms
Stars: ✭ 32 (-58.97%)
Mutual labels:  robotics, ros
direct lidar odometry
Direct LiDAR Odometry: Fast Localization with Dense Point Clouds
Stars: ✭ 202 (+158.97%)
Mutual labels:  robotics, ros
Ros robotics projects
Example codes of new book ROS Robotics Projects
Stars: ✭ 240 (+207.69%)
Mutual labels:  robotics, ros
aruw-vision-platform-2019
ARUW's vision code from the 2019 season. Published here, read-only, for public reference.
Stars: ✭ 37 (-52.56%)
Mutual labels:  robotics, ros
Gqcnn
Python module for GQ-CNN training and deployment with ROS integration.
Stars: ✭ 216 (+176.92%)
Mutual labels:  robotics, ros
Mcl 3dl
A ROS node to perform a probabilistic 3-D/6-DOF localization system for mobile robots with 3-D LIDAR(s). It implements pointcloud based Monte Carlo localization that uses a reference pointcloud as a map.
Stars: ✭ 221 (+183.33%)
Mutual labels:  robotics, ros
trac ik
ROS 2 port of `trac_ik`, an alternative Inverse Kinematics solver to the popular inverse Jacobian methods in KDL.
Stars: ✭ 14 (-82.05%)
Mutual labels:  robotics, ros
ROS-TCP-Connector
No description or website provided.
Stars: ✭ 123 (+57.69%)
Mutual labels:  robotics, ros

RoboJackets IGVC Build Status

Welcome to the RoboJackets IGVC software repo! This document will give you a brief description of the repo's layout and an overview of the repo. For more detailed information, check out the github wiki or the RoboJackets wiki.

Software Lead

Folder Structure

The repo is comprised of multiple ROS packages and one sandbox folder for miscellaneous resources.

  • igvc_description URDF files for our robot and gazebo meshes used for simulation
  • igvc_gazebo Helper nodes used for simulation purposes
  • igvc_msgs Custom ROS messages used in the various ROS packages
  • igvc_navigation Collection of nodes that form our navigation stack
  • igvc_perception Collection of nodes that form our perception stack, most notably the line detector
  • igvc_platform Nodes that are platform specific and used to communicate with the hardware, ie. IMU, joystick and motor controller
  • igvc_rviz_plugins RVIZ plugins that provide visualization for our stack.
  • igvc_utils A collection of utility nodes and classes
  • igvc_sandbox Miscellaneous resources, including the models used by the neural network, udev rules, and waypoints files
  • documents Research and design documents.

Building Code

For an installation guide for ROS, check out the installation guide on the RoboJackets wiki.

  1. Clone the repository (with the git submodules) into the src directory of a catkin workspace:

    git clone https://github.com/RoboJackets/igvc-software --recursive
  2. Install dependencies:

    cd igvc-software
    ./install_dependencies.sh
  3. Use catkin_make in the workspace to build all the packages:

    catkin_make
  4. Make sure the devel/setup.bash is sourced before using any of the nodes in this package:

    source devel/setup.bash

Common Errors

  • Could not find a package configuration file provided by "parameter_assertions" with any of the following names:
    • parameter_assertions comes from a git submodule. Initialize the submodules by doing git submodule update --init --recursive
  • Could not find a package configuration file provided by "XXXX" with any of the following names:"
    • Make sure you have ran rosdep install --from-paths src --ignore-src in the catkin_ws folder already
    • If you still get this error after installing all dependencies, then that means that we forgot to include that package in our dependencies list. File an issue with the error message.

Running Gazebo

You can get started with the IGVC code base right away by launching our simulator!

Load up Jessii: The following command will load our platform into a simulated IGVC qualifications course:

roslaunch igvc_gazebo qualification.launch

Navigation the course: To launch the navigation stack for simulation:

roslaunch igvc_navigation navigation_simulation.launch

Alternatively, you can control the robot manually with a USB gamepad with this command:

roslaunch igvc_platform joystick_driver.launch

Contributing

Join the chat here!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].