Home

Awesome

<div align="center"> <p align="center">

Fiftyone viewer for SOLO Datasets

PyPI version License

</p> </div> <p align="center"> <img src="docs/images/overview_51.png"/> <br><i>Screenshot of the example solo dataset displayed in Voxel51</i><br> </p>

Introduction

pysolotools-fiftyone is a python package for viewing and interacting with solo datasets using the Voxel51 viewer.

This package allows the user to create a new Voxel51 viewer in either a web browser or jupyter notebook.

SOLO datasets are generated by Unity's Perception package. Please see here for more information about the SOLO schema.

It supports the displaying of the following annotations:

Pre-Requisites

Installation

pip install pysolotools-fiftyone

Execution

CLI

The Solo Fiftyone viewer is executed on the command line with the following command line:

pysolotools-fiftyone examples/groceries

This will launch a new fiftyone viewer in your web browser.

Notebooks

SOLO FiftyOne can be executed in Jupyter Notebooks.

To use in a notebook:

from pysolotools_fiftyone.solo_fiftyone import run_in_notebook

path="./groceries"
run_in_notebook(path)

An example notebook has been included in the repository for your convenience.

The fiftyone will create an entry for each frame. Each entry will consist of a group with at least an RGB capture of the Unity game screen. If the dataset was created with Normals or Pixel Position labelers, the image group will also contain a PNG image for each one of them. These 3 types create the background of the frame, and the labels are drawn on to of them. The background image can be changed with the group dropdown located at the upper right of the screen.

<p align="center"> <img src="docs/images/groups_51.png"/> <br><i>Group dropdown</i><br> </p>

Labels are drawn on top of the background group image. These can be toggled on and off via the Labels selector left of the image.

<p align="center"> <img src="docs/images/label_selector_51.png"/> <br><i>Label selector</i><br> </p>

Annotation Types

Bounding Boxes

2D bounding boxes and label type for each visible labeled object in the image. Detailed information includes the amount of visible pixels of the object.

<p align="center"> <img src="docs/images/bb_51.png"/> <br><i>Bounding boxes in Voxel51</i><br> </p>

Semantic Segmentation

Semantic segmentation labels each pixel of an image with a label type.

<p align="center"> <img src="docs/images/semantic_51.png"/> <br><i>Semantic segmentation in Voxel51</i><br> </p>

Instance Segmentation

Each pixel of the image is labeled with the ID of the object that it represents.

<p align="center"> <img src="docs/images/instance_51.png"/> <br><i>Instance segmentation in Voxel51</i><br> </p>

Keypoints

Display keypoint (generally, but not limited to, a human skeleton) information.

<p align="center"> <img src="docs/images/keypoints_51.png"/> <br><i>Keypoints in Voxel51</i><br> </p>

3D Bounding Boxes

3D volume of object in the scene.

<p align="center"> <img src="docs/images/bb3d_51.png"/> <br><i>3D Bounding Boxes in Voxel51</i><br> </p>

Depth

Pixel distance from the camera in the scene displayed in Plotly's virdis scale. The color scale goes from purple to yellow, with purple representing objects closer to the camera.

<p align="center"> <img src="docs/images/depth_51.png"/> <br><i>Depth image in Voxel51, purple pixels are closer to the camera, yellow pixels are farthest away</i><br> </p>

Occlusion

Object occlusion, or the amount of the object you can see, displayed in Plotly's virdis scale. The scale goes from yellow (fully visible) to purple (fully occluded). Hovering over a pixel will give you the exact occlusion value.

<p align="center"> <img src="docs/images/occlusion_51.png"/> <br><i>Occlusion in Voxel51, yellow is fully visible, purple is fully occluded</i><br> </p>

Normals

The normals image displays an object's surface normal in a 3 channel image. The red channel represents the normal's x value, the green channel represents the y channel, and the blue channel represents the normal's z value.

<p align="center"> <img src="docs/images/normals_51.png"/> <br><i>Normals in Voxel51</i><br> </p>

Pixel Position

The pixel position image displays a pixels cartesian coordinate in the camera's space. The red channel represents the pixel position's x value, the green channel represents the y channel, and the blue channel represents the z value. The image displayed is a 8bit per channel representation of a 32bit per channel file format, so some accuracy is lost in the display.

<p align="center"> <img src="docs/images/pixel_position_51.png"/> <br><i>Pixel Position in Voxel51</i><br> </p>

Sample SOLO Datasets

Inside the examples directory there are two sample datasets

Community and Feedback

The Unity Computer Vision tools are open-source, and we encourage and welcome contributions. If you wish to contribute, be sure to review our contribution guidelines and code of conduct.

Support

For feature requests, bugs, or other issues, please file a GitHub issue using the provided templates we will investigate as soon as possible.

License

Apache License 2.0

Know Issues

<p align="center"> <img src="docs/images/label_opacity_51.png"/> </p>