All Projects → openrr → urdf-rs

openrr / urdf-rs

Licence: Apache-2.0 license
URDF parser using serde-xml-rs for rust

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to urdf-rs

Venom
All Terrain Autonomous Quadruped
Stars: ✭ 145 (+590.48%)
Mutual labels:  robot, ros
magni robot
Starting point for Magni Robots. Includes launch files and configuration.
Stars: ✭ 33 (+57.14%)
Mutual labels:  robot, ros
Rosnodejs
Client library for writing ROS nodes in JavaScript with nodejs
Stars: ✭ 145 (+590.48%)
Mutual labels:  robot, ros
Dolly
🤖🐑 It's a sheep, it's a dolly, it's a following robot. Dolly was born to be cloned.
Stars: ✭ 113 (+438.1%)
Mutual labels:  robot, ros
idyntree
Multibody Dynamics Library designed for Free Floating Robots
Stars: ✭ 109 (+419.05%)
Mutual labels:  robot, urdf
Robot blockly
A simple way to program ROS robots using blockly.
Stars: ✭ 115 (+447.62%)
Mutual labels:  robot, ros
Robot calibration
Generic calibration for robots
Stars: ✭ 154 (+633.33%)
Mutual labels:  robot, ros
Robotics setup
Setup Ubuntu 18.04, 16.04 and 14.04 with machine learning and robotics software plus user configuration. Includes ceres tensorflow ros caffe vrep eigen cudnn and cuda plus many more.
Stars: ✭ 110 (+423.81%)
Mutual labels:  robot, ros
Spatio temporal voxel layer
A new voxel layer leveraging modern 3D graphics tools to modernize navigation environmental representations
Stars: ✭ 246 (+1071.43%)
Mutual labels:  robot, ros
Ros robotics projects
Example codes of new book ROS Robotics Projects
Stars: ✭ 240 (+1042.86%)
Mutual labels:  robot, ros
scikit-robot
A Flexible Framework for Robot Control in Python
Stars: ✭ 70 (+233.33%)
Mutual labels:  robot, ros
smacha
SMACHA is a meta-scripting, templating, and code generation engine for rapid prototyping of ROS SMACH state machines.
Stars: ✭ 15 (-28.57%)
Mutual labels:  robot, ros
Awesome Robotic Tooling
Tooling for professional robotic development in C++ and Python with a touch of ROS, autonomous driving and aerospace.
Stars: ✭ 1,876 (+8833.33%)
Mutual labels:  robot, ros
Weloveinterns
中科院软件所智能软件中心实习生社区
Stars: ✭ 143 (+580.95%)
Mutual labels:  robot, ros
Navbot
Using RGB Image as Visual Input for Mapless Robot Navigation
Stars: ✭ 111 (+428.57%)
Mutual labels:  robot, ros
Djim100 People Detect Track
A ros demo for people detection and tracking on DJI M100 drone
Stars: ✭ 150 (+614.29%)
Mutual labels:  robot, ros
Turtlebot3 simulations
Simulations for TurtleBot3
Stars: ✭ 104 (+395.24%)
Mutual labels:  robot, ros
Grl
Robotics tools in C++11. Implements soft real time arm drivers for Kuka LBR iiwa plus V-REP, ROS, Constrained Optimization based planning, Hand Eye Calibration and Inverse Kinematics integration.
Stars: ✭ 105 (+400%)
Mutual labels:  robot, ros
Open manipulator
OpenManipulator for controlling in Gazebo and Moveit with ROS
Stars: ✭ 163 (+676.19%)
Mutual labels:  robot, ros
URDF-Importer
URDF importer
Stars: ✭ 135 (+542.86%)
Mutual labels:  robot, urdf

urdf-rs

Build Status crates.io docs

URDF parser using serde-xml-rs for rust.

Only link and joint are supported.

Example

You can access urdf elements like below example.

let urdf_robo = urdf_rs::read_file("sample.urdf").unwrap();
let links = urdf_robo.links;
println!("{:?}", links[0].visual[0].origin.xyz);
let joints = urdf_robo.joints;
println!("{:?}", joints[0].origin.xyz);

Contributors

Made with contrib.rocks.

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].