Skip to content

caomw/director

 
 

Repository files navigation

Director

Table of Contents

Introduction

This README describes how to download and build the Director source code and how to satisfy 3rd party dependencies.

Background

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.

System Requirements

As of this writing, the software is supported on Ubuntu 14.04, MacOSX 10.10, and Microsoft Windows 8 using the system native compilers. It likely also works on similar platforms and OS versions.

Download Instructions

Install Git

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 source code

Download the repository with the git clone command:

git clone https://github.com/RobotLocomotion/director.git

Dependencies

Required Dependencies -----------------

The required 3rd party dependencies are:

  • Qt 4.8
  • VTK 5.8 or 5.10
  • Python 2.7 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 homebrew/science
brew tap homebrew/python
brew install cmake
brew install python numpy
brew install vtk5 --with-qt

The dependencies can be installed on Ubuntu using apt-get:

sudo apt-get install cmake libvtk5-qt4-dev python-dev python-vtk python-numpy

Building

Compiling

make superbuild

This is an alias for:

mkdir build
cd build
cmake ../distro/superbuild

Documentation

A preliminary Online Help for the Director (currently in preparation) can be found here.

Citing

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"
}

About

A robotics interface and visualization framework, with extensive applications for working with http://drake.mit.edu

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.4%
  • C++ 14.5%
  • MATLAB 5.5%
  • C 4.1%
  • CMake 1.7%
  • GLSL 0.5%
  • Other 0.3%