Cleanup README.md
Change-Id: I61bd7fb79ed49f5def02e82515952da80a9e2e9f
diff --git a/README.md b/README.md
index a5277e3..d04d625 100644
--- a/README.md
+++ b/README.md
@@ -1,44 +1,22 @@
# Person-detection Application
-person-detection is a demo application that runs in the Aether edge and showcases Aether's support for for low-latency, AI/ML driven IOT applications that make use of Aether's support for end-to-end slicing.
+Person-detection-app is a demo application that runs in the Aether edge and showcases Aether's support for for low-latency, AI/ML driven IOT applications that make use of Aether's support for end-to-end slicing.
-## Build base image
-```
-git clone git@github.com:openvinotoolkit/docker_ci.git
-cd docker_ci
-python3 docker_openvino.py build -d cpu -os ubuntu18 --distribution runtime --product_version 2021.4
-```
+The person-detection-app consists of a client component that runs on Raspberry-Pi camera and a server component that runs on a server in the Aether Edge.
-## Build person-detection
-```
-make docker-build
-```
+## Getting started
-## Start RPi camera
-### M-JPEG
-```
-gst-launch-1.0 rpicamsrc bitrate=1000000 ! video/x-raw,width=640,height=480,framerate=25/1,profile=baseline ! jpegenc ! rtpjpegpay ! udpsink host=10.128.99.49 port=5000
-```
+### Raspberry Pi Camera
+The *camera* directory contains scripts that run on the Raspberry Pi camera.
+- *openvino-camera.sh* captures video from the Raspberry Pi's camera module, encodes and transmits it in *low* or *high* resolution to the *host:port* of the person-detection-app
+- *openvino-mqtt.py* listens to *mqtt* commands from the person-detection-app to set the resolution level of the Raspberry Pi camera video.
-### H.264
-```
-gst-launch-1.0 rpicamsrc bitrate=1000000 ! video/x-h264,width=640,height=480,framerate=15/1 ! h264parse ! rtph264pay config-interval=10 pt=96 ! udpsink host=10.128.99.49 port=5000
-```
+It is recommended that these two scripts be started by systemd on startup.
-## Start person-detection-app
-```
-make docker-run
-```
-```
-docker pull registry.aetherproject.org/aether-apps/person-detection-app:<tag>
-docker run -itu root:root --privileged --network host registry.aetherproject.org/aether-apps/person-detection-app:<tag>
-```
+### Person-detection-app
+The person-detection app runs as a docker container.
-## Quick test
```
-./bin/person_detection.sh -i resources/run.mp4
-```
-or
-```
-make run-native-test
+docker pull registry.aetherproject.org/aether-apps/person-detection-app:latest
+docker run -itu root:root --privileged --network host registry.aetherproject.org/aether-apps/person-detection-app:latest
```