Skip to content

Commit

Permalink
Add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
erksch committed Jan 10, 2020
1 parent b127027 commit 8916813
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Waymo Open Dataset Viewer

A WebGL viewer for pointclouds of the [waymo open dataset](https://waymo.com/open).

![Screenshot](./screenshot.png)

### Prerequisities

- Download the Dataset.
Before using the viewer, you first have to download (parts of) the dataset from the [official download page](https://waymo.com/open/licensing/). Create a directory containing the segments (.tfrecord files) you want to view.
- Install tensorflow (2.0.0).
Consider using tensorflow-gpu since it will speed up reading the segments.
- Install server dependencies:
`pip install -r requirements.txt`
- Install frontend dependecies:
`yarn install`

### Usage

Start the websocket that processes and serves the segment files in a given directory:
```
python websocket.py --segments-dir path/to/segments
```

Build the frontend.
```
yarn build
```

Now, you can open the `index.html` file in the browser or call
```
yarn serve
```
to start a small python server on port 8000 that serves the html file.
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8916813

Please sign in to comment.