panning and zooming cs 7450 - information visualization february 14, 2002 john stasko

41
Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Upload: george-black

Post on 05-Jan-2016

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Panning and Zooming

CS 7450 - Information VisualizationFebruary 14, 2002John Stasko

Page 2: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 2

Fundamental Problem

Scale - Many data sets are too large to visualize on one screen May simply be too many cases May be too many variables May only be able to highlight particular

cases or particular variables, but viewer’s focus may change from time to time

Page 3: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 3

Solutions We’ve Seen

Overview and detail viewsFocus+Context distortion

How about one view in which changing focus is fast and smooth?

Page 4: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 4

Panning and Zooming

Panning Smooth movement of camera across scene

(or scene moves and camera stays still)Zooming

Increasing or decreasing the magnification of the objects in a scene

Useful for changing focal point

Page 5: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 5

Zooming

http://micro.magnet.fsu.edu/primer/java/scienceopticsu/powersof10/index.html

Powers of 10

Page 6: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 6

Space-Scale Diagram

Technique for describing panning and zooming interfaces

Furnas and Bederson ‘95

User’s viewing frame (constant size)Pan

Zoom inZoom out

Page 7: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 7

Space-Scale Diagram

1. Pan2. Zoom3. Pan and zoom

1.

2.3.

Page 8: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 8

Optimal Actions

Sometimes, these kinds of UIs can be disorienting to viewer

Example Long pan isn’t any good Better: Zoom out, pan a little, zoom in

Page 9: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 9

Pad -> Pad++ -> Jazz

Environments for supporting flexible, smooth zooming and panning on structured graphics world Pad - Perlin & Fox, NYU Pad++ - Bederson & Hollan, Bellcore &

New Mexico Jazz - Bederson, Maryland

Page 10: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 10

Support

Pad ???

Pad++ Tcl and C++, GL and X Windows

Jazz Java, Swing

Page 11: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 11

Interface Physics

Creators of the systems talk about them creating a new form of interface physics

One which works a lot like the physical world You can walk around, look at some things

closely, etcBut one that also adds some “magic” of

what the computer does well

Page 12: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 12

Pad++

Support library for building applications

Infinite plane, panning in x-y, zooming in-out

2.5-D, not 3-DBuilt on top of C++, Tcl/Tk and X

Window System

Page 13: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 13

Pad++ Applications

PadDraw Simple graphics editor

File/Directory browser

Page 14: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 14

Applications

Timeline views

Page 15: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 15

Applications

Webtraversalhistory

Video

PadPrints

Page 16: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 16

Important Concepts

PortalsLensesSticky objectsSemantic zooming

Page 17: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 17

Portals

Views onto another place in the world

Implemented typically as separate rectangular region

Zooming, panning, I/O all work independently in there

Can be used to create overviews or focus regions

Page 18: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 18

Lenses

Rectangular regions/objects that can be moved around on display

Objects that alter the appearance and behavior of objects seen through them

Much like Magic Lenses of Xerox

Page 19: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 19

Sticky Objects

Objects in the world that do not respond to the basic zoom/pan interface physics

Objects are “stuck” to the display They never change position They never change size

Page 20: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 20

Semantic Zooming

Zooming that is not simply a change in size or scale like simple magnification

Objects change fundamental appearance/presence at different zoom levels

Zooming is like step function with boundaries where

Page 21: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 21

Jazz

All the stuff from Pad++Implemented in java and swingUtilizes scene graph approach and

minilithic design philosophyHiNote application is simple drawing

editor (like PadDraw)

Page 22: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 22

HiNote Demonstration

Page 23: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 23

UI Operations

Navigation Left mouse button down, drag - Pan Right mouse button down, drag right - Zoom in Right mouse button down, drag left - Zoom out Alternate: Arrow and page keys

Hyperlinks Smoothly move you from one position to

another

Page 24: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 24

Challenges

How the heck do they do that?Must keep rendering speeds up

Page 25: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 25

Efficiency Measures

Spatial indexing Hierarchy of objects based on bounding

boxesClustering

Restructure hierarchy to maintain a balanced tree, speed for indexing

Level of detail Render items depending on how large they

are on screen, don’t draw small ones

Page 26: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 26

Efficiency Measures

Refinement Render fast with low detail while moving,

refine image when stillClipping

Only render portions of objects that are visible

Region management Only update portion of screen that has

been changed

Page 27: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 27

Efficiency MeasuresAdjustable frame rate

Keep animation and zoom rate constant independent of environment

Interruption User input takes precedence, moves

animations to their end state, gets handledOptimized image rendering

Code to render zoomed images has been worked on a lot!

Page 28: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 28

Issues

“Desert fog” - Getting lost and not seeing anything Zoomed too far in Zoomed too far out

Solutions?

VideoJul and Furnas, ‘98

Page 29: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 29

Other Systems...

Page 30: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 30

Continuous Zoom

Bartram et al, Simon FraserSaw video last timeUses smooth zooming in changes of

focus on fisheye viewObjects give/take screen real estateImplemented on graphs with

rectangular nodes

Page 31: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 31

Wing

Another system providing zooming techniques

Provides zooming on an index or table of contents to see more detail

Integrated with multi-window overview and detail multimedia tool

VideoMasui, et al ‘95

Page 32: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 32

DataSplash, VIDA

Keeping information density constant as you zoom in/out on display

May be important for human performance

Woodruff, Landay, Stonebreaker ‘98,’99 Video

Page 33: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 33

Nested UI Components

Use zooming to replace multiple-level hierarchies and property sheets in common UIs

Have small, (semantic) zooming UI widgets that show more details in place

VideoPerlin and Meyer,’99

Page 34: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 34

Browsing Images

PhotoMesa

Uses panning andzooming to browsea photo collection

Demo:www.cs.umd.edu/hcil/fisheyemenu

Bederson ‘01

Page 35: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 35

Presenting Talks

CounterPoint

Uses panning andzooming inPowerPoint

Demo:www.cs.umd.edu/hcil/counterpoint

Bederson ‘01

Page 36: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 36

So?

Is this a different paradigm? Overview and detail Focus + context Distortion

Is this just an assistive technology that can help do those general techniques above?

Page 37: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 37

So?

Is this technique (flexible zoom+pan) useful?

How can it be used in, or how does it compare to? Overview and detail Focus + context, fisheye Distortion techniques

Page 38: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 38

Homework 3

Utilize HiNote to develop a timeline information space on some topic of interest to you

Think of it as a multimedia lessonWhile doing so, consider approach

and tool: critique zooming user interface paradigm

Brief report, screen shot or two

Page 39: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 39

Project Proposals

Comments, hand back

Page 40: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 40

References

Spence and CMS texts

All referred to papers

Page 41: Panning and Zooming CS 7450 - Information Visualization February 14, 2002 John Stasko

Spring 2002 CS 7450 41

Upcoming

Hierarchies and Trees Connectivity methods Space-filling methods