Data analysis and visualization topics

Size: px
Start display at page:

Download "Data analysis and visualization topics"

Transcription

1 10/23/12 Data analysis and visualization topics Sergei MAURITS, ARSC HPC Specialist Schedule - Visualization of 3-D data, visualization package Vis5D, conversion of user data to.v5d format (viewable with Vis5D and IDV) 101: Introduction to animation, making frames with Vis5D, basic animation (Linux) animation & composing review (Mac OSX) 3-D Data Visualization - isosurfaces (close to natural appearance) - cross-sections (3-D ==> 2-D) - probes/sounding (convenience tools) - vectors, streamlines, particles paths - volume rendering (mix of all above) - time dependence (animation) - multi-variable sets (clutter problem) - miscellaneous contexts (CFD objects, terrain, geographical maps, etc.) - discrete (molecules) vs. continuous fields ==> NO UNIVERSAL SOLUTION A Few Popular Visualization Packages - AVS & AVS Express - IDL & IDL itools - Matlab - TecPlot - NCAR Graphics + NCL (semi-free) - Paraview/VTK (free) - IDV (free) - Vis5D (free) 1

2 10/23/12 Vis5D - developed in mid-90es, NASA grant (freeware) by Bill Hibbard and team for meteo data - classic Vis5D has been developed up to v.5.2 (v.4.7 is particularly stable) - NCAR extensions for SGI (stereo, >2GB sets) - GNU team took over in , brought Vis5D+ to v.1.2 (1.3 beta), Linux + OSX (some) support - new: autoconfig compilation, misc. extensions - still actively used package (10-20 downloads/month) - WWW pages, documentation (Vis5D & Vis5D+), mail list, fan clubs, pretty developed user base Vis5D (cont.) - Vis5D (3D+time+multi-variable = 5D) is a full suite of volumetric visualization tools, created originally for meteorological data (somewhat defines Vis5D context) - multi-scalars + two (at the time) vector field, + stream lines, trajectories, + customizable map & terrain - exists as a stand-alone GUI and/or API suite (advanced) - some customization (although, limited in terms of new graphics) is possible through Tcl-scripting (screen shots, spinning, etc.) and custom user functions - new variables: (array syntax) and user functions Vis5D (cont.) - data I/O: conversion Fortran or C codes to Vis5D-format data base.v5d, commented templates are available at ( /projects/classes/vis5d/linux/arsc_vis5d_help/ convert/ -.v5d - cross-platform, effectively compressed (up to 1 byte/node/variable) 3-D format of semi-standard status - upon conversion,.v5d files can be rendered immediately - /Vis5D/doc and /Vis5D/man - on-line documentation in PDF, SGML, HTML (in the ARSC Linux environment search, e.g. for INDEX.HTM at /usr/local/pkg/vis5d/current/doc/... Vis5D: Hands-on Tutorial 1. Find directory /projects/classes/vis5d/linux/arsc_vis5d_help 2. Review README-files (README.first -general, README.environment - your Vis5D environment at ARSC, README.tutorial hands-on step-by-step tutorial) 3. Copy the entire content of the directory above to local HD under unique name (/scratch/vis5d_youruid) (see README.tutorial for details) 4. Proceed with step-by-step tutorial described in Section 2 in README.tutorial 2

3 10/23/12 Schedule - Visualization of 3-D data, visualization package Vis5D, conversion of user data to.v5d format (viewable with Vis5D and IDV) 101: Introduction to animation, making frames with Vis5D, basic animation (Linux) animation & composing (OSX) - consists of pixels, usually squares - resolution number of pixels, N x M - color = R,G,B [+ Alpha] - generally you need N*M*3 [*4] numbers to store graphical info a lot! - in majority of applications space saving is desired (or highly desired) - savings are possible either - by limiting the number of colors (discretization of R,G,B-space and intro of the color tables: R'G'B' => color #n) or - by limiting the shapes and departing from simple but costly NxM model 1. Compression by limiting colors to 2,4,8,16,..., 128, 256 (pseudocolor) - GIF, (also PNG-8) small file size, limiting color space - WEB, science, supports transparency, animation 2. Compression by limiting shapes JPEG, JPEG2000 flexible compression level ==> variable file size, lossy compression loss of graphics quality,artefacts Widely used in photo, video 3. No compression TIFF, XWD, BMP,..., PNG-24 highest image quality, LARGE file sizes formats of choice in professional graphics (cont.) 4. Both types of compressions (color, shape) are irreversible, (keeping uncompressed archival copy is a reasonable approach 5. Worst case scenario second pass of compression of already compressed JPEG. This way compression artefacts will be preserved (stealing file size) and magnified (stealing quality). 6. Better way keep uncompressed archival copy and compress it to different levels of quality. 7. Surprise 30% of JPEG compression is not so bad, sometimes (photo for Web) 10% is sufficient. Photoshop SAVE_FOR_WEB utility is very useful for visual determination of compression level 3

4 10/23/12 Example of compression levels (using Save_for_Web in Photoshop) for scientific graph with uniform background of 1700x1000 resolu- tion (close to HDTV, 1080p), just 16 colors were used to draw it TIFF JPEG B or 5.15 MB - no compression B (max = 100%), subjectively, no artefacts B (mid = 50%), subjectively, minor artefacts B (min = 10%), GIF - subjectively, a lot of artefacts (256 colors) - no artefacts, adequate colors (64 colors) - no artefacts, adequate colors (16 colors) - no artefacts, adequate colors ( 8 colors) - color distortion starts here (16) From Wikipedia: is the rapid display of a sequence of images of 2D or 3-D artwork or model positions in order to create an illusion of movement. It is an optical illusion of motion due to the phenomenon of persistence of vision, and can be created and demonstrated in a number of ways. Standard frequency of TV-based animation is 30 frames per second (or fps). All software interfaces adopt it as a base rate. By simple repetition of your frames, you can depart from this rate, but not dramatically fps is the practical limit. This means, you can repeat your frames or 5 (may be) times, but not much more. (Duration example: 45 frames x 3 = /30 = 4.5 sec) From the compression standpoint, the animation frequency of 30 fps means that your graphics compression problem is 30 times worse than in case of the static graphics From Full HD uncompressed (4:4:4): 1920W x1080h x24bit x30 fr = or 2MP x24bit x30 fr = Mbps

5 10/23/12 The good news animated stream has a lot of redundancy, its compression can be dramatically more effective than compression of the static graphics. Earlier coding techniques used singly predicted (P) frames depended only on previous independently coded frames (I) and bipredicted (B) frames, which are depended on a past and a future I or P frames. The current advanced codecs (H.264) are much more flexible, which improves quality and decreases bitrate for the given resolution Compression ratio 1:200 or increases resolution for the given bitrate 5

6 10/23/12 Schedule - Visualization of 3-D data, visualization package Vis5D, conversion of user data to.v5d format (viewable with Vis5D and IDV) 101: Introduction to animation, making frames with Vis5D, basic animation (Linux) animation & composing (OSX) practical approach - Make frames in sufficient quantities (30 fps) with any viz package, use large fonts and thick lines, to make the sequence UNIX-friendly for scripting, number without leading zeros (f_0001.png vs. f_1001.png) - Linux utilities animate+convert can crop, change formats & quality fast results, see READMEs in directory.../movies) - Vi Vis5D, - Mac OS (ARSC-supported) QuickTime 7 (compression, timing,outputs) - Final Cut Pro (industry standard) - Shake advanced composing - Windows DviX Pro (was AVI, uses the same codec H.264) basically the same functionality as in QuickTime Pro, DviX free player A is available for Mac, QuickTime 7 is available for Windows 6

Data analysis and visualization topics

Data analysis and visualization topics Data analysis and visualization topics Sergei MAURITS, ARSC HPC Specialist maurits@arsc.edu Content Day 1 - Visualization of 3-D data - basic concepts - packages - steady graphics formats and compression

More information

MMGD0203 Multimedia Design MMGD0203 MULTIMEDIA DESIGN. Chapter 3 Graphics and Animations

MMGD0203 Multimedia Design MMGD0203 MULTIMEDIA DESIGN. Chapter 3 Graphics and Animations MMGD0203 MULTIMEDIA DESIGN Chapter 3 Graphics and Animations 1 Topics: Definition of Graphics Why use Graphics? Graphics Categories Graphics Qualities File Formats Types of Graphics Graphic File Size Introduction

More information

Digital Messages GUIDELINES

Digital Messages GUIDELINES A NEW era of Digital Advertising 2015 Digital Messages GUIDELINES DIGITAL BILLBOARD CONTENTS GUIDELINES & TIPS Introdution 01 Intro Maximize the Potential Text, graphics and backgrounds will need good

More information

Links. Blog. Great Images for Papers and Presentations 5/24/2011. Overview. Find help for entire process Quick link Theses and Dissertations

Links. Blog. Great Images for Papers and Presentations 5/24/2011. Overview. Find help for entire process Quick link Theses and Dissertations Overview Great Images for Papers and Presentations May 26, 2011 Web Tips Definitions Using the Michigan Tech logo Photography 101 Great images from others Great images you create PDF conversion Final words

More information

Reviewer s Guide. Morpheus Photo Animation Suite. Screenshots. Tutorial. Included in the Reviewer s Guide:

Reviewer s Guide. Morpheus Photo Animation Suite. Screenshots. Tutorial. Included in the Reviewer s Guide: Morpheus Photo Animation Suite Reviewer s Guide The all-in-one animation suite includes Morpheus Photo Morpher, Morpheus Photo Warper, Morpheus Photo Mixer, as well as all 15 sample morphs, warps, and

More information

Ad Unit Dimensions / Ad sizes Max File Size GIF / JPEG Max File Size HTML 5 / Flash 40 KB 40 KB 40 KB 40 KB 40KB 40KB 40KB. 50KB *Premium ad formats

Ad Unit Dimensions / Ad sizes Max File Size GIF / JPEG Max File Size HTML 5 / Flash 40 KB 40 KB 40 KB 40 KB 40KB 40KB 40KB. 50KB *Premium ad formats Ad Specifications Standard HTML 5 / GIF / JPEG & Flash Dimensions / Ad sizes Max File GIF / JPEG Max File HTML 5 / Flash Banner 468 x 60 Medium Rectangle Skyscraper 120 x 600 Wide Skyscraper 160 x 600

More information

Video compression: Performance of available codec software

Video compression: Performance of available codec software Video compression: Performance of available codec software Introduction. Digital Video A digital video is a collection of images presented sequentially to produce the effect of continuous motion. It takes

More information

Comparison of different image compression formats. ECE 533 Project Report Paula Aguilera

Comparison of different image compression formats. ECE 533 Project Report Paula Aguilera Comparison of different image compression formats ECE 533 Project Report Paula Aguilera Introduction: Images are very important documents nowadays; to work with them in some applications they need to be

More information

Recommended codecs: MJPEG, Apple ProRes, H264 (bitrate if possible) > 2MBit/s and uncompressed (very large file)

Recommended codecs: MJPEG, Apple ProRes, H264 (bitrate if possible) > 2MBit/s and uncompressed (very large file) How to prepare a film file for the upload Technical Sepcifications Accepted formats:.mp[e]g /.vob /.avi /.mov /.mp4 (m4v) Recommended codecs: MJPEG, Apple ProRes, H264 (bitrate if possible) > 2MBit/s and

More information

Develop Computer Animation

Develop Computer Animation Name: Block: A. Introduction 1. Animation simulation of movement created by rapidly displaying images or frames. Relies on persistence of vision the way our eyes retain images for a split second longer

More information

To be productive in today s graphic s industry, a designer, artist, or. photographer needs to have some basic knowledge of various file

To be productive in today s graphic s industry, a designer, artist, or. photographer needs to have some basic knowledge of various file An Artist s Digital Toolkit Allan Wood, for educational use only Understanding File Formats File Formats To be productive in today s graphic s industry, a designer, artist, or photographer needs to have

More information

Compression techniques

Compression techniques Compression techniques David Bařina February 22, 2013 David Bařina Compression techniques February 22, 2013 1 / 37 Contents 1 Terminology 2 Simple techniques 3 Entropy coding 4 Dictionary methods 5 Conclusion

More information

Ad Unit Dimensions / Ad sizes Max File Size. 468 x 60. 300 x 250. 120 x 600. 160 x 600. 728 x 90. 300 x 600. 970 x 250

Ad Unit Dimensions / Ad sizes Max File Size. 468 x 60. 300 x 250. 120 x 600. 160 x 600. 728 x 90. 300 x 600. 970 x 250 Ad Specifications Standard HTML 5 / GIF / JPEG Dimensions / Ad sizes Max File Size Banner Medium Rectangle Skyscraper Wide Skyscraper Leaderboard Half Page Ad* Billboard* *Premium ad formats 468 x 60 300

More information

Audiovisual Asset Deliverables Standards

Audiovisual Asset Deliverables Standards Audiovisual Asset Deliverables Standards. Vendor Deliverables: Video Program Deliverables Standard Digital Interactive Presentations Deliverables Standard Photo/Artwork Deliverables Standard Project Archive

More information

Anime Studio Debut vs. Pro

Anime Studio Debut vs. Pro vs. Animation Length 2 minutes (3000 frames) Unlimited Motion Tracking 3 Points Unlimited Audio Tracks 2 Tracks Unlimited Video Tracks 1 Track Unlimited Physics No Yes Poser scene import No Yes 3D layer

More information

News. Ad Specifications July 2016

News. Ad Specifications July 2016 News Ad Specifications July 2016 About Advertising on News News runs across iphone, ipod touch and ipad devices. Ad options include a variety of inline and interstitial display banners and pre-roll video

More information

Introduction... Learn to insert event sounds and streaming sounds and to change the effects for a sound... 69

Introduction... Learn to insert event sounds and streaming sounds and to change the effects for a sound... 69 1997 1999 Macromedia, Inc. All rights reserved. Macromedia, the Macromedia logo, Dreamweaver, Director, Fireworks, Flash, Fontographer, FreeHand, and Xtra are trademarks or registered trademarks of Macromedia,

More information

Copyright 2002-2003 Kinoma Inc. All rights reserved.

Copyright 2002-2003 Kinoma Inc. All rights reserved. Kinoma Producer 2 Version 2.0 Copyright 2002-2003 Kinoma Inc. All rights reserved. Before using this software, please read the End User License Agreement that is supplied together with this software. http://www.kinoma.com

More information

Electronic Records Management Guidelines - File Formats

Electronic Records Management Guidelines - File Formats Electronic Records Management Guidelines - File Formats Rapid changes in technology mean that file formats can become obsolete quickly and cause problems for your records management strategy. A long-term

More information

Advertising Specifications V2.0

Advertising Specifications V2.0 1 Advertising Specifications V2.0 This document contains the specifications for all Shazam Advertising Formats. It covers the basic dimensions and rules for all placements. SECTION 1 Standard: Ad-served

More information

Advertising Specifications, Standards and Guidelines

Advertising Specifications, Standards and Guidelines Advertising Specifications, Standards and Guidelines www.sitomobile.com MOBILE AD FORMATS Formats and functionality by device type Standard Banners Dimensions File Format Expansion MOBILE LEADERBOARD 320x50

More information

Quick start guide! Terri Meyer Boake

Quick start guide! Terri Meyer Boake Film Editing Tutorial Quick start guide! Terri Meyer Boake 1. Preparing yourself and your files: This information is valid for all film editing software: FCP, Premiere (the version of FC being used is

More information

Useful Utilities. Here are links to free third party applications that we use and recommend.

Useful Utilities. Here are links to free third party applications that we use and recommend. Useful Utilities Here are links to free third party applications that we use and recommend. Ad-Aware This is an amazingly useful free product from Lavasoft. Ad-Aware is a multi spyware removal utility

More information

VIDEO PRODUCTION- COURSE OVERVIEW TECHNOLOGY EDUCATION DEPARTMENT BALDWIN HIGH SCHOOL

VIDEO PRODUCTION- COURSE OVERVIEW TECHNOLOGY EDUCATION DEPARTMENT BALDWIN HIGH SCHOOL VIDEO PRODUCTION- COURSE OVERVIEW TECHNOLOGY EDUCATION DEPARTMENT BALDWIN HIGH SCHOOL VIDEO PRODUCTION COURSE DESCRIPTION This course will allow students to develop professional skills in video, film,

More information

Advertising on Onet.pl. Ad products specification

Advertising on Onet.pl. Ad products specification Advertising on Onet.pl Ad products specification August 16, 2013 2 S t r o n a General rules... 3 Mobile Rich Media...... 4 General rules for Rich Media ads... 4 Rich Media top... 5 Cube 3D... 9 Formats

More information

Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity

Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity Copyright 2011 Pearson Education, Inc. Publishing as Prentice Hall 1 All rights reserved. No part of this

More information

SMART TV AD FORMATS SPECIFICATIONS VERSION 1.9 SMART TV AD FORMATS SPECIFICATIONS. Version 1.9 Last update 11/2014 Page 1 / 19

SMART TV AD FORMATS SPECIFICATIONS VERSION 1.9 SMART TV AD FORMATS SPECIFICATIONS. Version 1.9 Last update 11/2014 Page 1 / 19 SMART TV AD FORMATS SPECIFICATIONS VERSION 1.9 Version 1.9 Last update 11/2014 Page 1 / 19 Table of contents 1. Smart TV Platform Ads (First Creative)... 3 1.1 Basic ad package... 3 1.2 PIP format (LG)...

More information

WAYNESBORO AREA SCHOOL DISTRICT CURRICULUM INTRODUCTION TO GRAPHICS

WAYNESBORO AREA SCHOOL DISTRICT CURRICULUM INTRODUCTION TO GRAPHICS COURSE NAME: Introduction to Graphics UNIT: Introduction to Mac OS NO. OF DAYS: 5 KEY LEARNING(S): Understanding basic operations on a Mac computer UNIT : thinking Logging in Classroom rules and regulations

More information

Introduction to BrightSign, BrightAuthor, and BrightSign Network (BSN)

Introduction to BrightSign, BrightAuthor, and BrightSign Network (BSN) Introduction to BrightSign, BrightAuthor, and BrightSign Network (BSN) www.symphonyinteractive.com BrightAuthor/BrightSign/BSN General Information BrightAuthor BrightAuthor is a PC software application

More information

Managing video content in DAM How digital asset management software can improve your brands use of video assets

Managing video content in DAM How digital asset management software can improve your brands use of video assets 1 Managing Video Content in DAM Faster connection speeds and improved hardware have helped to greatly increase the popularity of online video. The result is that video content increasingly accounts for

More information

QuickTimePro creating movies from frames

QuickTimePro creating movies from frames Biochem 660 2008 179 QuickTimePro creating movies from frames Appleʼs QuickTime Pro is available on Macintosh and Windows platforms. The free version is downloadable from http://www.apple.com/quicktime/

More information

SCANNING, RESOLUTION, AND FILE FORMATS

SCANNING, RESOLUTION, AND FILE FORMATS Resolution SCANNING, RESOLUTION, AND FILE FORMATS We will discuss the use of resolution as it pertains to printing, internet/screen display, and resizing iamges. WHAT IS A PIXEL? PIXEL stands for: PICture

More information

TEXT FILES. Format Description / Properties Usage and Archival Recommendations

TEXT FILES. Format Description / Properties Usage and Archival Recommendations TEXT FILES Format Description / Properties Usage and Archival Recommendations.txt.doc.docx.rtf.odt.pdf PDF/A Text file Simple plain text document Compatible across software packages Supports very little

More information

Video, film, and animation are all moving images that are recorded onto videotape,

Video, film, and animation are all moving images that are recorded onto videotape, See also Data Display (Part 3) Document Design (Part 3) Instructions (Part 2) Specifications (Part 2) Visual Communication (Part 3) Video and Animation Video, film, and animation are all moving images

More information

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013

MassArt Studio Foundation: Visual Language Digital Media Cookbook, Fall 2013 INPUT OUTPUT 08 / IMAGE QUALITY & VIEWING In this section we will cover common image file formats you are likely to come across and examine image quality in terms of resolution and bit depth. We will cover

More information

Ad Creative Best Practices

Ad Creative Best Practices Ad Creative Best Practices CREATIVE GUIDE FOR CINEMA ADVERTISING MESSAGE A simple and concise message is the key to an effective cinema advertising campaign. Your message should be focused on a single

More information

Reduce File Size. Compatibility. Contents

Reduce File Size. Compatibility. Contents Reduce File Size Revu provides a mechanism for reducing the size of some PDFs to make them more suitable for email or a Document Management System. This tool works by compressing bitmap images and removing

More information

BASIC VIDEO EDITING: IMOVIE

BASIC VIDEO EDITING: IMOVIE IMOVIE imovie comes with Apple Mac computers and lets you assemble audio, video and photos to create your own movies. This tip sheet was compiled using imovie 11 so you may notice some differences if using

More information

Acquire Video Wall. Revolutionising digital interaction.

Acquire Video Wall. Revolutionising digital interaction. Revolutionising digital interaction. Create an immersive experience with Full HD Digital Signage Video Walls. Video Walls are increasing in popularity and are commonly being used in stores, restaurants,

More information

Adobe Certified Expert Program

Adobe Certified Expert Program Adobe Certified Expert Program Product Proficiency Exam Bulletin Adobe Photoshop CS4 Exam # 9A0-094 ACE Certification Checklist The checklist below will help guide you through the process of obtaining

More information

Technical Specifications Digital

Technical Specifications Digital Newsletter Mobile Technical Specifications Digital page 1-5 Mobile page 6 WebTV page 7 The campaign material must be delivered at least 2 working days before the campaign start date. Send campaign material

More information

Using Text & Graphics with Softron s OnTheAir CG and OnTheAir Video

Using Text & Graphics with Softron s OnTheAir CG and OnTheAir Video OnTheAir CG (OTACG) and OnTheAir Video Express (OTAVE) are two very different Softron products that are used to overlay text and graphics onto a live video source. Elements as diverse as still logos, clocks,

More information

Digital Imaging and Image Editing

Digital Imaging and Image Editing Digital Imaging and Image Editing A digital image is a representation of a twodimensional image as a finite set of digital values, called picture elements or pixels. The digital image contains a fixed

More information

File Formats. Summary

File Formats. Summary Summary Rapid changes in technology mean that file formats can become obsolete quickly and cause problems for your records management strategy. A long-term view and careful planning can overcome this risk

More information

GRC 119 Assignment 7 Create a Flash Animation Banner Ad

GRC 119 Assignment 7 Create a Flash Animation Banner Ad GRC 119 Assignment 7 Create a Flash Animation Banner Ad 1. Brainstorm your Ad Concept and identify the 5 components 2. Storyboard your ad concept 3. Develop the visual components 4. Develop banner ad web

More information

Lesson 1 Quiz. 3. The Internet is which type of medium? a. Passive b. Broadcast c. One-to-one d. Electronic print

Lesson 1 Quiz. 3. The Internet is which type of medium? a. Passive b. Broadcast c. One-to-one d. Electronic print Lesson 1 Quiz 1. Which technology trend in Web development can be defined as a group of XMLbased technologies that enable computers using different operating systems and software to easily exchange information

More information

VTrak G1100 Application and Performance Notes

VTrak G1100 Application and Performance Notes VTrak G1100 Application and Performance Notes Version 1.0 Date: 11/5/2014 Copyright 2014, Promise Technology, Inc. All Rights Reserved Revision History Revision Date Author Description 0.69 10/20/14 Gary

More information

Within minutes you can transform your high-resolution digital image in to a DVquality movie that pans, zooms and rotates the once-still image.

Within minutes you can transform your high-resolution digital image in to a DVquality movie that pans, zooms and rotates the once-still image. Slick Motion gives you a simple and easy way to make your still images come alive. Within minutes you can transform your high-resolution digital image in to a DVquality movie that pans, zooms and rotates

More information

Flash Is Your Friend An introductory level guide for getting acquainted with Flash

Flash Is Your Friend An introductory level guide for getting acquainted with Flash Flash Is Your Friend An introductory level guide for getting acquainted with Flash by Tom Krupka A Brief History: Adobe Flash, which was previously called Macromedia Flash, is a set of multimedia technologies

More information

How to Preserve Your Own Digital Materials

How to Preserve Your Own Digital Materials How to Preserve Your Own Digital Materials By the Digital Preservation Office at the University of Michigan Library. Links to web sites and prices current as of May 2014 Our personal photos, letters, movies

More information

Smithsonian Institution Archives Guidance Update SIA. ELECTRONIC RECORDS Recommendations for Preservation Formats. November 2004 SIA_EREC_04_03

Smithsonian Institution Archives Guidance Update SIA. ELECTRONIC RECORDS Recommendations for Preservation Formats. November 2004 SIA_EREC_04_03 SIA Smithsonian Institution Archives Guidance Update November 2004 ELECTRONIC RECORDS Recommendations for s SIA_EREC_04_03 Highlights Highlights of SIA_EREC_04_03, an update on electronic record preservation

More information

Color management workflow in Adobe After Effects CS4

Color management workflow in Adobe After Effects CS4 Color management workflow in Adobe After Effects CS4 Technical paper Table of contents 1 Getting started 3 High-definition video workflow 7 Digital cinema workflow 14 Animation/Flash export workflow 19

More information

Best practices for producing quality digital video files

Best practices for producing quality digital video files University of Michigan Deep Blue deepblue.lib.umich.edu 2011-03-09 Best practices for producing quality digital video files Formats Group, Deep Blue http://hdl.handle.net/2027.42/83222 Best practices for

More information

ENVISION TM WEB HOSTING CHECKLIST

ENVISION TM WEB HOSTING CHECKLIST APPENDIX D ENVISION TM WEB HOSTING CHECKLIST This document provides a summary of Computershare s Web hosting solution for online meeting materials, along with a list of information that you must provide

More information

Q. Can an Exceptional3D monitor play back 2D content? A. Yes, Exceptional3D monitors can play back both 2D and specially formatted 3D content.

Q. Can an Exceptional3D monitor play back 2D content? A. Yes, Exceptional3D monitors can play back both 2D and specially formatted 3D content. FAQ Content Playback Q. What kind of computer do I need to run an Exceptional 3D display? A. Processor: Intel Core Duo Processor 2.5+GHz, 3M, 1066 Operating System: Windows 7 Memory: 4GB, DDR3, 1066MHz,

More information

College Archives Digital Preservation Policy. Created: October 2007 Last Updated: December 2012

College Archives Digital Preservation Policy. Created: October 2007 Last Updated: December 2012 College Archives Digital Preservation Policy Created: October 2007 Last Updated: December 2012 Introduction The Columbia College Chicago Archives Digital Preservation Policy establishes a framework to

More information

Outside In Image Export Technology SDK Quick Start Guide

Outside In Image Export Technology SDK Quick Start Guide Reference: 2009/02/06-8.3 Outside In Image Export Technology SDK Quick Start Guide This document provides an overview of the Outside In Image Export Software Developer s Kit (SDK). It includes download

More information

Image Resolution. Color Spaces: RGB and CMYK. File Types and when to use. Image Resolution. Finding Happiness at 300 dots-per-inch

Image Resolution. Color Spaces: RGB and CMYK. File Types and when to use. Image Resolution. Finding Happiness at 300 dots-per-inch Image Resolution Color Spaces: RGB and CMYK File Types and when to use Image Resolution Finding Happiness at 300 dots-per-inch Rules to remember Text should be 400dpi at the final size in the layout. Images

More information

GRC 119 Assignment 6 Create a Flash Animation Banner Ad

GRC 119 Assignment 6 Create a Flash Animation Banner Ad GRC 119 Assignment 6 Create a Flash Animation Banner Ad 1. Brainstorm your Ad Concept and identify the 5 components 2. Storyboard your ad concept 3. Develop the visual components 4. Develop banner ad web

More information

500,000. A whole new world of engagement with your products and services through Rogers tablet audiences. over. tablet downloads to date

500,000. A whole new world of engagement with your products and services through Rogers tablet audiences. over. tablet downloads to date CANADA S TOP 100 ARE YOU READY FOR A DANI REISS FEMALE ENTREPRENEURS P.48 RECESSION? P.75 BIG DECISION P.38 YOUR GUIDE TO BUSINESS SUCCESS HIGHER SALES! BIGGER PROFITS! MORE SMILES! HOW TO CUT THROUGH

More information

designed and prepared for california safe routes to school by circle design circledesign.net Graphic Standards

designed and prepared for california safe routes to school by circle design circledesign.net Graphic Standards Graphic Standards Table of Contents introduction...2 General Usage...2 Logo lockups: color...3 LOGO LOCKUPS: GRAYSCALE...4 Minimum Staging Area...5 Minimum Logo Size...6 Type Family...7 Color Palettes...8

More information

TECHNICAL SPECIFICATION OF GAZETA.PL PORTAL'S ADVERTISING PRODUCTS

TECHNICAL SPECIFICATION OF GAZETA.PL PORTAL'S ADVERTISING PRODUCTS TECHNICAL SPECIFICATION OF GAZETA.PL PORTAL'S ADVERTISING PRODUCTS Contents 1. Formats, Sizes and Weights of Standard Advertising Products... 3 2. General Requirements for Advertisements... 3 2.1. GIF,

More information

Visualizing molecular simulations

Visualizing molecular simulations Visualizing molecular simulations ChE210D Overview Visualization plays a very important role in molecular simulations: it enables us to develop physical intuition about the behavior of a system that is

More information

Technical Specifications for Advertising

Technical Specifications for Advertising Welcome to Crackle! We appreciate your inquiry to advertise with us. Please contact us to learn about advertising opportunities. James M Smith (James_Smith@spe.sony.com) Senior Vice President Digital Media

More information

VisIt Visualization Tool

VisIt Visualization Tool The Center for Astrophysical Thermonuclear Flashes VisIt Visualization Tool Randy Hudson hudson@mcs.anl.gov Argonne National Laboratory Flash Center, University of Chicago An Advanced Simulation and Computing

More information

STANDARD BANNER: Ad Specs

STANDARD BANNER: Ad Specs 3 Ad Specs 1 Ad Specs STANDARD BANNER: Ad Specs Dimensions Max LOAD Size Devices Operating System Feature Various OS Blackberry Android ios Kindlefire Windows 120x20 168x28 216x36 * 300x50; 600x100 320x48;

More information

Epiphan Frame Grabber User Guide

Epiphan Frame Grabber User Guide Epiphan Frame Grabber User Guide VGA2USB VGA2USB LR DVI2USB VGA2USB HR DVI2USB Solo VGA2USB Pro DVI2USB Duo KVM2USB www.epiphan.com 1 February 2009 Version 3.20.2 (Windows) 3.16.14 (Mac OS X) Thank you

More information

Preparing Images for PowerPoint, the Web, and Publication

Preparing Images for PowerPoint, the Web, and Publication What is Resolution?... 2 How Resolution Affects File Memory Size... 2 Physical Size vs. Memory Size... 3 Thinking Digitally... 4 What Resolution is Best For Printing?... 5 Professional Publications...

More information

COMPUTERS ARE YOUR FUTURE CHAPTER 5 APPLICATION SOFTWARE: TOOLS FOR PRODUCTIVITY

COMPUTERS ARE YOUR FUTURE CHAPTER 5 APPLICATION SOFTWARE: TOOLS FOR PRODUCTIVITY COMPUTERS ARE YOUR FUTURE CHAPTER 5 APPLICATION SOFTWARE: TOOLS FOR PRODUCTIVITY Answers to End-of-Chapter Questions Matching _e 1. slide Microsoft Powerpoint 2010 _d 2. group An Overview of Microsoft

More information

Digital Video: A Practical Guide

Digital Video: A Practical Guide Digital Video: A Practical Guide Lucid Communications Ltd Prepared by Neil Turner January 2006 Document History Version Author Comments v1.0 Neil Turner Initial Release 1. Executive Summary From time to

More information

Optimizing Courses for Online Learning

Optimizing Courses for Online Learning Optimizing Courses for Online Learning Best Practices Guide OutStart, Inc. 745 Atlantic Avenue 4 th Floor Boston, MA 02111 617.897.6800 www.outstart.com 2006 OutStart, Inc. All rights reserved. No part

More information

Scenarist SD DVD Authoring Software

Scenarist SD DVD Authoring Software Scenarist SD DVD Authoring Software Scenarist SD is the worldwide standard for professional DVD authoring software. Combining industry-leading power with field-proven player compatibility, this DVD authoring

More information

Introduction to image coding

Introduction to image coding Introduction to image coding Image coding aims at reducing amount of data required for image representation, storage or transmission. This is achieved by removing redundant data from an image, i.e. by

More information

Essential Graphics/Design Concepts for Non-Designers

Essential Graphics/Design Concepts for Non-Designers Essential Graphics/Design Concepts for Non-Designers presented by Ana Henke Graphic Designer and Publications Supervisor University Communications and Marketing Services New Mexico State University Discussion

More information

ACE: After Effects CC

ACE: After Effects CC Adobe Training Services Exam Guide ACE: After Effects CC Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation as

More information

General Ad Guidelines and Specs

General Ad Guidelines and Specs General Ad Guidelines and Specs www.vervemobile.com General Ad Guidelines Development and delivery specifications PROVIDING FINAL ADS TO VERVE Ad creatives should be sent in one of the following formats:.png,.jpg,

More information

Adobe Dreamweaver Exam Objectives

Adobe Dreamweaver Exam Objectives Adobe Dreamweaver audience needs for a website. 1.2 Identify webpage content that is relevant to the website purpose and appropriate for the target audience. 1.3 Demonstrate knowledge of standard copyright

More information

Digital Image Fundamentals. Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr

Digital Image Fundamentals. Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr Digital Image Fundamentals Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr Imaging process Light reaches surfaces in 3D. Surfaces reflect. Sensor element receives

More information

FAV-5130-01 CMPTR ANIMATION: INSTRUCTOR GINA KAMENTSKY

FAV-5130-01 CMPTR ANIMATION: INSTRUCTOR GINA KAMENTSKY COURSE INFORMATION: Thursday 01:10PM - 06:10PM, Auditorium, Room 525 Instructor email: gkaments@risd.edu Class Website: Pixeltoon.com In addition to computer assisted animation (using a computer to shoot

More information

Each figure of a manuscript should be submitted as a single file.

Each figure of a manuscript should be submitted as a single file. Introduction This page provides general information for authors creating figures to maximize the quality of those illustrations and to prepare artwork for submission to the Brazilian Journal of Medical

More information

Adjusting Digitial Camera Resolution

Adjusting Digitial Camera Resolution Adjusting Digitial Camera Resolution How to adjust your 72 ppi images for output at 300 ppi Eureka Printing Company, Inc. 106 T Street Eureka, California 95501 (707) 442-5703 (707) 442-6968 Fax ekaprint@pacbell.net

More information

Creating a Web Page in Flash

Creating a Web Page in Flash Creating a Web Page in Flash Introduction Animation is becoming one of the critical components of Web site design, and the demand for animation on Web sites is getting higher. Flash, which integrates audio

More information

Display Ad Unit Guidelines

Display Ad Unit Guidelines Display Ad Unit Guidelines Page 1 Page 4 Page 5 Pages 6-7 SuperStore Sale superstore.com Save 25% on your entire purchase this weekend only! Universal Ad Package including Standard & Rich Media BORDERS

More information

Certificate Courses in Animation

Certificate Courses in Animation UNIVERSITY OF PUNE Certificate Courses in Animation 1) Certificate Course in Animation using Flash 2) Certificate Course in Animation Using Photoshop 3) Certificate Course of Animation using Maya (To be

More information

Optimizing graphic files

Optimizing graphic files Optimizing graphic files Introduction As soon as I started using web-authoring tools, I realized that I should be careful to use graphics on the web. Well-designed graphics usually make the web site more

More information

Online video is changing the face of digital advertising.

Online video is changing the face of digital advertising. Online video is changing the face of digital advertising. Take advantage of this impactful digital format with Video Pre-Roll or In-Banner Video opportunities on Cox.com and Cox Digital Ad Network Solutions.

More information

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art)

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art) JOURNAL OF Periodontology Digital Art Guidelines In order to meet the Journal of Periodontology s quality standards for publication, it is important that authors submit digital art that conforms to the

More information

Table of Contents. I. Banner Design Studio Overview... 4. II. Banner Creation Methods... 6. III. User Interface... 8

Table of Contents. I. Banner Design Studio Overview... 4. II. Banner Creation Methods... 6. III. User Interface... 8 User s Manual Table of Contents I. Banner Design Studio Overview... 4 II. Banner Creation Methods... 6 a) Create Banners from scratch in 3 easy steps... 6 b) Create Banners from template in 3 Easy Steps...

More information

VisCMD: Visualizing Cloud Modeling Data

VisCMD: Visualizing Cloud Modeling Data CPSC-533C Information Visualization Project Report VisCMD: Visualizing Cloud Modeling Data Quanzhen Geng (#63546014) and Jing Li (#90814013) Email: gengqz@hotmail.com larrybcca@yahoo.ca (Master of Software

More information

How to use Adobe Media Encoder CS6

How to use Adobe Media Encoder CS6 How to use Adobe Media Encoder CS6 Adobe Media Encoder CS6 converts sequences and clips into media suited for distribution on the web or on DVDs, ipods, tablets, cell phones, and other mobile devices.

More information

a basic guide to video conversion using SUPER

a basic guide to video conversion using SUPER a basic guide to video conversion using SUPER This is a basic guide to video conversion using the freeware video conversion tool SUPER, from erightsoft. SUPER is a graphic front end to several free, powerful,

More information

Video compression. Contents. Some helpful concepts.

Video compression. Contents. Some helpful concepts. Video compression. Uncompressed video is extremely large, which makes it hard to store and move. In most cases we compress video to manage it. The amount of compression depends on the task at hand. Contents

More information

Quality Estimation for Scalable Video Codec. Presented by Ann Ukhanova (DTU Fotonik, Denmark) Kashaf Mazhar (KTH, Sweden)

Quality Estimation for Scalable Video Codec. Presented by Ann Ukhanova (DTU Fotonik, Denmark) Kashaf Mazhar (KTH, Sweden) Quality Estimation for Scalable Video Codec Presented by Ann Ukhanova (DTU Fotonik, Denmark) Kashaf Mazhar (KTH, Sweden) Purpose of scalable video coding Multiple video streams are needed for heterogeneous

More information

MediaRich for SharePoint User Guide

MediaRich for SharePoint User Guide MediaRich for SharePoint User Guide i 2003-2008 Automated Media Processing Solutions, Inc. dba Equilibrium. All Rights Reserved. U.S. Pat. No. 6,792,575 for automated media processing and delivery. Other

More information

IE Class Web Design Curriculum

IE Class Web Design Curriculum Course Outline Web Technologies 130.279 IE Class Web Design Curriculum Unit 1: Foundations s The Foundation lessons will provide students with a general understanding of computers, how the internet works,

More information

Data Storage 3.1. Foundations of Computer Science Cengage Learning

Data Storage 3.1. Foundations of Computer Science Cengage Learning 3 Data Storage 3.1 Foundations of Computer Science Cengage Learning Objectives After studying this chapter, the student should be able to: List five different data types used in a computer. Describe how

More information

Understanding Megapixel Camera Technology for Network Video Surveillance Systems. Glenn Adair

Understanding Megapixel Camera Technology for Network Video Surveillance Systems. Glenn Adair Understanding Megapixel Camera Technology for Network Video Surveillance Systems Glenn Adair Introduction (1) 3 MP Camera Covers an Area 9X as Large as (1) VGA Camera Megapixel = Reduce Cameras 3 Mega

More information