OpenRTiST utilizes Gabriel, a platform for wearable cognitive assistance applications, to transform the live video from a mobile client into the styles of various artworks. The frames are streamed to a server where the chosen style is applied and the transformed images are returned to the client.
Copyright © 2017-2019 Carnegie Mellon University
This is a developing project.
Unless otherwise stated, all source code and documentation are under the Apache License, Version 2.0. A copy of this license is reproduced in the LICENSE file.
Portions from the following third party sources have been modified and are included in this repository. These portions are noted in the source files and are copyright their respective authors with the licenses listed.
Project | Modified | License |
---|---|---|
pytorch/examples | Yes | BSD |
OpenRTiST using PyTorch (including the pre-built image) has been tested on Ubuntu 18.04 LTS (Bionic) using several nVidia GPUs (GTX 960, GTX 1060, GTX 1080 Ti, Tesla K40).
Alternatively, OpenRTiST can also use the Intel® OpenVINO toolkit for accelerated processing on CPU and processor graphics on many Intel processors. We have tested OpenVINO support using Ubuntu 18.04 LTS (Bionic) and OpenVINO releases 2018.5 and 2019.3 on an Intel® Core™ i7-6770HQ processor.
The OpenRTiST server can run on CPU alone. See below on installing from source for details.
OpenRTiST supports Android and standalone Python clients. We have tested the Android client on Nexus 6, Samsung Galaxy S7, and Essential PH-1.
The quickest way to set up an OpenRTiST server is to download and run our pre-built Docker container. This build supports execution on NVIDIA GPUs, Intel integrated GPUs, and execution on the CPU. All of the following steps must be executed as root. We tested these steps using Docker 19.03.
If you do not already have Docker installed, install it using the steps in this Docker install guide or use the following convenience script:
curl -fsSL get.docker.com -o get-docker.sh
sh get-docker.sh
The cuda downloads page allows you to select your distribution and provides instructions on how to install the CUDA toolkit and NVIDIA drivers.
If you think you may already have an NVIDIA driver installed, run nvidia-smi
. The driver version will be listed at the top of the table that gets printed.
Follow these instructions.
docker pull cmusatyalab/openrtist:stable
For NVIDIA GPU support, run:
docker run --gpus all --rm -it -p 9099:9099 cmusatyalab/openrtist:stable
For Intel iGPU support, run:
docker run --device /dev/dri:/dev/dri --rm -it -p 9099:9099 cmusatyalab/openrtist:stable
For CPU support only, run:
docker run --rm -it -p 9099:9099 cmusatyalab/openrtist:stable
Note: With OpenVINO using an integrated GPU, it may take up to a minute to preload all of the style models.
If you wish to compare between running the server on a cloudlet versus a cloud instance, you can launch the following instance type/image from your Amazon EC2 Dashboard:
Instance Type - p2.xlarge (can be found by filtering under GPU compute instance types)
Image - Deep Learning Base AMI (Ubuntu) - ami-041db87c
Ensure that port 9099 is open in your security group rules so that traffic to/from the mobile client will pass through to the server.
Once the server is running in AWS, you can follow the steps above to setup the server.
Note : If using vanilla Ubuntu Server 16.04 Image, install the required Nvidia driver and reboot.
wget http://us.download.nvidia.com/tesla/375.51/nvidia-driver-local-repo-ubuntu1604_375.51-1_amd64.deb
sudo dpkg -i nvidia-driver-local-repo-ubuntu1604_375.51-1_amd64.deb
sudo apt-get update
sudo apt-get -y install cuda-drivers
sudo reboot
The docker image for the server component also includes the Python client which can be run on a non-Android machine. The python client requires that a USB webcam is connected to the machine.
If you do not already have Docker installed, install as follows:
apt-get update
apt-get upgrade
apt-get install docker.io
Alternatively, you can follow the steps in this Docker install guide or use the following convenience script:
curl -fsSL get.docker.com -o get-docker.sh
sh get-docker.sh
docker pull cmusatyalab/openrtist
xhost +local:docker
docker run --entrypoint /bin/bash --env DISPLAY=$DISPLAY --env="QT_X11_NO_MITSHM=1" --device /dev/video0:/dev/video0 -v /tmp/.X11-unix:/tmp/.X11-unix:ro --rm -it cmusatyalab/openrtist
cd /openrtist/python-client
./ui.py <server ip address>
You can download the client from the Google Play Store.
Alternatively, you can build the client yourself using Android Studio. The source code for the client is located in the android-client
directory. You should use the standardDebug build variant.
Servers can be added by entering a server name and address and pressing the + sign button. Once a server has been added, pressing the 'Play' button will connect to the OpenRTiST server at that address. Pressing the trash can button will remove the server from the server list.
Once the camera is active, the application will be set to 'Clear Display' by default. This will show the frames of the camera without a particular style. You can use the drop-down menu at the top to select a style to apply. Once selected, the frames from the camera will be sent to the server and the style will be applied. The results will be shipped back to the client and displayed. If the 'Iterate Styles Periodically' option is enabled, the dropdown menu will not be shown, and styles will change automatically based upon the interval defined.
Once connected to a server, an icon is displayed in the upper right hand corner which allows one to toggle between front- and rear-facing cameras.
The OpenRTiST server can use PyTorch or OpenVINO to execute style transfer networks. You may want to install CUDA or OpenVINO (or both). However, you can run OpenRTiST using pytorch on the CPU without CUDA or OpenVINO.
OpenRTiST has been tested with pytorch versions 0.2.0, 0.3.1, 1.0, and 1.2 with CUDA support. As the APIs and layer names have been changed in newer releases, model files for both pre-1.0 and post-1.0 versions have been provided. NOTE: Even if you do not have a CUDA-capable GPU, you can install pytorch with CUDA support and run OpenRTiST on CPU only.
Follow NVIDIA's instructions.
We recommend Ubuntu 18.04 for a painless install. We have had success with Ubuntu 18.10 and Ubuntu 16.04, but setupvars.sh
may not set up the environment correctly, and on the older distro, a new Linux kernel will be needed to use the integrated GPU.
You can find and download the latest OpenVINO release from https://software.intel.com/en-us/openvino-toolkit. Full installation instructions are available at https://software.intel.com/en-us/articles/OpenVINO-Install-Linux.
For Ubuntu 16.04 / 18.04, you can install using apt
by adding the custom repository as follows:
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2019.PUB
echo "deb https://apt.repos.intel.com/openvino/2019/ all main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2019.list
sudo apt-get update
and then search for available packages using:
apt-cache search openvino-dev
Finally, install a version matching your distro (ubuntu16 or ubuntu18, e.g.):
sudo apt-get install intel-openvino-dev-ubuntu18-2019.3.344
To utilize integrated Processor Graphics on Intel processors, the following are required:
sudo apt install ocl-icd-libopencl1
sudo add-apt-repository ppa:intel-opencl/intel-opencl
sudo apt-get update
sudo apt-get install intel-opencl-icd
Setup environment variables and paths to use OpenVINO in the current shell:
source /opt/intel/openvino/bin/setupvars.sh
OpenRTiST requires Python 3.5 or later. We recommend using a virtual environment to better control the Python environment and keep your distribution defaults clean.
To install dependencies for Openrtist, navigate to the server directory, activate a Python 3 virtual environment, then run:
pip install -r requirements.txt
With your virtual environment activated, start the server like this:
cd <openrtist-repo>/server/
python main.py
Note: With OpenVINO using an integrated GPU, it may take up to a minute to preload all of the style models. This is not the case for OpenVINO on CPU, or with PyTorch. Once initialized, the server is ready for clients at this point.
With either PyTorch or OpenVINO, you can run the server in CPU-only mode by passing the --cpu CLI flag. By default, OpenRTiST tries to detect and use OpenVINO, and fails over to PyTorch. To force it to use one system, pass the --openvino or --torch CLI flags.
To run the python client:
cd <openrtist-repo>/python-client
./ui.py <server ip address>
You can edit the config.py file to change webcam capture parameters.
The prebuilt Android client from the Google Play Store provides an interface to add a server with a custom IP address.
We use COCO 2014 Train Images as our default training dataset.
An Amazon Machine Image with the model training frontend and training dataset configured out of the box is publicly available to deploy on Amazon EC2.
ami-0d9512927124b3c3a
g4dn.xlarge
(or alternatively any instance with an Nvidia GPU)After startup, connect to port 5000 of your machine to access the model training frontend.
Prequisites: A machine with an installed Nvidia driver and an accessible redis instance
To start the model training web frontend, first install the requisite python dependencies:
cd <openrtist-repo>/model-app
pip install -r requirements.txt
Then download the training data and point model-app/config.py accordingly:
wget http://images.cocodataset.org/zips/train2014.zip
unzip train2014.zip -d coco-data/
Install OpenVINO or set CONVERT_TO_OPEN_VINO=false
in model-app/config.py
And then launch the web frontend:
cd <openrtist-repo>/model-app
flask run --host=0.0.0.0
And finally launch a celery worker in a separate terminal:
cd <openrtist-repo>/model-app
celery worker -A model-app.app.celery --loglevel=info
wget http://images.cocodataset.org/zips/train2014.zip
unzip train2014.zip -d coco-data/
cd <openrtist-repo>
python model-app/train_style.py --dataset <coco-data> --style-image <style-image> --save-model-dir models/ --epochs 2
To disable flicker-loss which removes flicker for temporal consistency in real-time image stream, set --noise-count 0
An additional script can convert from the generated PyTorch model to OpenVINO:
python model-app/openvino_convert.py <path_to_pytorch_model>
The Extras proto is defined in android-client/app/src/main/proto/openrtist.proto
.
If you make changes to this proto, it will be recompiled for both Python and Android the next time you start the Android client from Android Studio.
Please see the CREDITS file for a list of acknowledgments.