Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Easyspider | 16,826 | 5 days ago | 5 | agpl-3.0 | JavaScript | |||||
A visual no-code/code-free web crawler/spider易采集:一个可视化爬虫软件,可以无代码图形化的设计和执行爬虫任务 | ||||||||||
Rerun | 2,960 | 32 | 11 hours ago | 31 | August 17, 2023 | 586 | apache-2.0 | Rust | ||
Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui. | ||||||||||
Studio | 1,487 | 3 | 2 days ago | 116 | September 06, 2023 | 41 | mpl-2.0 | TypeScript | ||
Robotics visualization and debugging | ||||||||||
Rl | 664 | 8 months ago | 33 | bsd-2-clause | C++ | |||||
The Robotics Library (RL) is a self-contained C++ library for rigid body kinematics and dynamics, motion planning, and control. | ||||||||||
Urdf Viz | 314 | 2 | 3 days ago | 71 | November 17, 2022 | 9 | apache-2.0 | Rust | ||
visualize URDF/XACRO file, URDF Viewer works on Windows/MacOS/Linux | ||||||||||
Fiesta | 226 | 4 years ago | 2 | mit | C++ | |||||
Fast Incremental Euclidean Distance Fields for Online Motion Planning of Aerial Robots | ||||||||||
Xpp | 222 | 2 years ago | 6 | bsd-3-clause | C++ | |||||
Visualization of Motions for Legged Robots in ros-rviz | ||||||||||
Director | 91 | 4 years ago | 58 | bsd-3-clause | Python | |||||
A robotics interface and visualization framework, with extensive applications for working with http://drake.mit.edu | ||||||||||
Ai_for_robotics | 73 | 5 years ago | Python | |||||||
Visualizations of algorithms covered in Sebastian Thrun's excellent Artificial Intelligence for Robotics course on Udacity. | ||||||||||
Robotics Resources | 60 | 2 years ago | mit | |||||||
List of commonly used robotics libraries and packages |
Table of Contents
This README describes how to download and build the Director source code and how to satisfy 3rd party dependencies.
The Director is a robotics interface and visualization framework.
It includes applications for working with Drake, and includes the primary user interface used by Team MIT in the DARPA Robotics Challenge.
Team MIT DRC day-1 visualization
The Director is a collection of C++ and Python libraries and applications. Many components from this repository are usable out-of-the-box, but some require additional components from the greater MIT DRC codebase.
As of this writing, the software is tested on Ubuntu 14.04 and 16.04, and MacOSX 10.11. The build should work on Microsoft Windows with MSVC but it is not continuously tested. In theory it can run on any platform where VTK and Qt are supported.
The source code is stored in a Git repository. To download the source code you may need to first install Git on your system. On Mac, we recommend using Homebrew. On Windows, download the official git package from https://git-scm.com
Download the repository with the git clone
command:
git clone https://github.com/RobotLocomotion/director.git
The required 3rd party dependencies are:
- Qt4 or Qt5 (Qt 4.8.7 recommended)
- VTK 6.2+ (VTK 7.1.1 recommended)
- Python 3.4+ and NumPy
Additionally, you will need CMake 2.8 or greater to configure the source code.
The dependencies can be installed on Mac using Homebrew:
brew tap patmarion/director && brew tap-pin patmarion/director brew install cmake glib libyaml numpy python scipy vtk7 pip2 install lxml PyYAML
The dependencies can be installed on Ubuntu using apt-get:
sudo apt-get install build-essential cmake libglib2.0-dev libqt4-dev \ libx11-dev libxext-dev libxt-dev python-dev python-lxml python-numpy \ python-scipy python-yaml
On Ubuntu the build does not require VTK to be installed. A compatible version of VTK will be downloaded (precompiled binaries) at build time.
make superbuild
This is an alias for:
mkdir build && cd build cmake ../distro/superbuild make
A preliminary Online Help for the Director (currently in preparation) can be found here.
If you wish to cite the director, please use:
@misc{director, author = "Pat Marion", title = "Director: A robotics interface and visualization framework", year = 2015, url = "http://github.com/RobotLocomotion/director" }