a magic lens for revealing device interactions in …...sa2014.siggraph.org sponsored by a magic...

30
SPONSORED BY SA2014.SIGGRAPH.ORG A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N. Hassan, Gábor Sörös ETH Zurich, Switzerland

Upload: others

Post on 24-Mar-2020

3 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SPONSORED BYSA2014.SIGGRAPH.ORG

A Magic Lens for Revealing Device

Interactions in Smart Environments

Simon Mayer, Yassin N. Hassan, Gábor Sörös

ETH Zurich, Switzerland

Page 2: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

A thousand interacting devices at home…

…humans should stay in control!

Page 3: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

A magic lens for revealing these interactions

Page 4: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Overview

1. Logging Communication Traces

Record application-layer (HTTP) communication

Collect and causally order messages

2. Web Visualization

Network topology

Timeline view and graph view

3. Magic Lens Visualization

Recognize (multiple) devices

AR View

LoggingAgents

Web Visualization

captured

interactionsRESTAPI

Web Sockets

(Storage)Magic Lens

Visualization

instant

updates

smart devices logging user interface

2

3

Inspect

1

Page 5: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

1. Logging Communication Traces

2. Web Visualization

3. Magic Lens Visualization

Page 6: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Web of Things

Internet of Things: Focus on Connectivity

Web of Things: Focus on Interoperability

“Everything is a Web Resource”

Inherit desirable properties of the Web: scalability, caching, addressing,

security, etc.

Simpler usage (and debugging) for humans: the Web browser

Simpler interaction with other devices: Internet Media Types and

Content Negotiation

In this paper: Every device runs an embedded Web server

Grizzly server, based on the Java Non-Blocking IO

REST APIs: Idealized Web Architecture

Page 7: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Recording Device Interactions

Our UbiComp2013 paper

Page 8: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

(Non-intrusive) sniffing on router: Information on the network layer

Only IP-addresses and headers

Or even restricted to layer 2 frames (L2-Switching for WLAN-WLAN)

(Intrusive) logging on clients: Full application-layer information

Content + Media Type (e.g., display transmitted images)

Inspect encrypted traffic (we log after the decryption step)

Use HTTP to piggy-back management information (e.g., vector clocks)

Full URLs: Ability to distinguish devices behind a translation gateway and

differentiate HTTP endpoints (e.g., robot.org/motor2 vs. robot.org/sensor4)

Drawback: Install the logging agent on every device

HTTP packet inspection

Page 9: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Logging Agents

Java Agents modify the bytecode of the classes loaded by the JVM

at runtime without changing its source code

java -javaagent:LoggingClient.jar -jar WoTDevice.jar

Adds logging code to the Java classes URLConnection and HttpServer

Information about recorded packets is sent to the logging server

The server can be any connected device with enough computing resources

Page 10: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Logging Server

Logging agents report through a REST API (1)

Updates are pushed to subscribers using HTML5 WebSockets (2)

History can be queried through another REST API (3)

The server orders incoming messages causally and identifies

interaction chains

LoggingAgents

Visualization Clientcaptured

interactions RESTAPI

WebSocket

(Storage) Visualization Client

instant

updates

smart devices logging

REST API

history

queries

12

3

Page 11: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Causal ordering: messages

An interaction chain is a set of interactions in which all requests and responses are the

consequence of an initial HTTP request.

Record Request/Response

Send/Receive events are logged and reported to the server

Page 12: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Causal ordering: problem

Reports may arrive in a causally incorrect order.

The server must reconstruct the causality chain!

Page 13: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Causal ordering: vector clocks

(1,1)

(1, 2, 1)(1, 3, 2)

(1, 4, 2, 1)

(1, 4, 2, 2, 1)(1, 4, 2, 3, 2)

(1, 5, 2, 4, 2)

(2, 6, 2, 4, 2)

[Mattern1988] „Virtual Time and Global States of Distributed Systems”

Page 14: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Causal ordering: implementation

HTTP header information added to outgoing request:

HTTP header information added to the response:

GET /volume HTTP/1.1

Host: 192.168.1.147

X-Clock-192.168.1.147_9001: 1

HTTP/1.1 200 OK

Content-Type: text/html

X-Clock-192.168.1.147_9002: 4

X-Clock-192.168.1.147_9001: 7

Content-Length: 0

Page 15: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Aggregating interaction chains

HTTP header information added to outgoing requests:

GET /volume HTTP/1.1

Host: 192.168.1.147

X-Interaction: e989eaa6-2689-4c06-9828-bdda2c4eaf23

Page 16: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

3. Magic Lens Visualization

2. Web Visualization

1. Logging Communication Traces

Page 17: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Web Visualization – Graph view

.

Page 18: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Web Visualization – Timeline View

Page 19: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

3. Magic Lens Visualization

1. Logging Communication Traces

2. Web Visualization

Page 20: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Recognizing Smart Devices

first prototype (non-intrusive sniffing)

AR markers for tracking

QR codes for encoding URLs

current system (intrusive logging)

Visual features, no markers required

URLs registered manually

Page 21: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Object Recognition

ORB Feature Detector and DescriptorOriented FAST (Features from Accelerated Segment Test)

Rotated BRIEF (Binary Robust Independent Elementary Features)[Rosten2005] [Calonder 2010] [Rublee 2011]

Bag of Words (binary version) histograms [Grana 2013]

One binary SVM per class (10 object classes + noise class)

multiscaleFAST9

corners

rank byHarris

cornerness

rotatedBRIEF

binary tests

bag of words

(binary)

finddominant

orientationClassifiers

01101

11101

10101

binary

descriptorsvisual word

histogram

object

classimage

Page 22: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Training

Input: 15-30 snapshots of each device

The method is fast, but limited to the trained objects

Requires re-training when a new class is added

What is a representative noise class?

extractfeatures

buildvocabulary

matchvocabulary

SVM training

descriptorsdescriptors+

vocabulary

bag of words

histograms

extractfeatures

matchvocabulary

trainedclassifier

Figure adapted from Carlos Caetano

descriptors

vocabulary

bag of words

histograms

predicted class

Training

Testing

Page 23: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Multiple Object Detection

FAST feature detector

DBSCAN for spatial clusteringDensity-Based Spatial Clustering of Applications with Noise

number of spatial clusters is not known in advance (as opposed to k-means)

Kalman filter for object centroid tracking

Low-pass filter on each class label

Page 24: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

The magic lens in action

video

Page 25: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Smart electricity meter and smart car

www.cloud-think.comwww.bitstoenergy.ch

real communication

Java VMs in CloudThink

simulated communication

no Java VM on the smart meter

Page 26: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Limitations

Recognition is relatively fast, but limited to the trained objects

Need to re-train if a new device is added

Segmentation requires feature-rich objects and little background clutter

Use (pointing) gestures to select devices?

Scaling with the number of devices

Use context to limit search space (devices in this room)

Logging client uses Java Agents

Java-based smart devices only

Page 27: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Summary

Today, our tool

…recognizes smart devices based on their visual features

…shows their interactions in a magic lens view

…allows users to intuitively monitor information flows

…gives more control over the smart home network

Future work should

…integrate better object recognition techniques

…add networking rules by a flick of a finger

…categorize communication (e.g., „Post image to Facebook”, "Download song”)

Page 28: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

Thank You

Simon Mayer Gábor SörösYassin N. Hassan

Credits

Markus Schalch

Bram Scheidegger

Claude Barthels

Marian George

Christian Beckel

谢谢

Page 29: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY

References

Rosten - Machine Learning for High-Speed Corner Detection (ECCV 2006)

Calonder - BRIEF, Binary Robust Independent Elementray Features (ECCV 2010)

Rublee - ORB, an efficient alternative to SIFT or SURF (ICCV 2011)

Grana - A Fast Approach for Integrating ORB Descriptors in the Bag of Words Model (EI 2013)

Caetano - Representing Local Binary Descriptors with BossaNova for

Visual Recognition (SAC 2014)

Mayer - Uncovering device whispers in smart homes (MUM 2012)

Mayer - Device recognition for intuitive interaction with the web of things (UbiComp 2013)

Guinard - From the Internet of Things to the Web of Things (IoT 2011)

Csurka – Incorporating Geometry Information with Weak Classifiers for Improved Generic Visual

Categorization (ICIAP 2005)

Mattern - Virtual time and global states of distributed systems (WPDA 1988)

Page 30: A Magic Lens for Revealing Device Interactions in …...SA2014.SIGGRAPH.ORG SPONSORED BY A Magic Lens for Revealing Device Interactions in Smart Environments Simon Mayer, Yassin N

SA2014.SIGGRAPH.ORG SPONSORED BY 30|Simon Mayer

http://people.inf.ethz.ch/mayersi

Image Sources

http://andrewbleakley.com

http://www.webmarchand.com

http://www.patentspostgrant.com/

http://www.orkin.com

http://sweetclipart.com

http://la-matrice.org

http://learn.randolph.k12.ma.us

http://theparisreview.org

http://bestclipartblog.com

http://freepik.com

http://http://www.rugdots.com

http://www.productdose.com

http://westwoodblinds.co.uk

http://www.ambientdevices.com

http://www.pats.ua.ac.be

http://www.vesternet.com

http://www.rovingnetworks.com

http://www.qualitymechanicalservices.com

http://chantalteakettle.org

http://blog.eeye.com

http://cartographersguild.com

http://haverford.edu

http://clker.com

http://stickers-addict.fr

http://en.wikipedia.org

http://academycomicalarts.blogspot.com

http://www.websenor.com