Images, Sound, and Multimedia. No Surprises Images, Sound, Music, and Movies – It’s all numbers – Binary Numbers Today we’ll discuss how multimedia is.

Slides:



Advertisements
Similar presentations
Introduction to Digital Audio
Advertisements

Dale & Lewis Chapter 3 Data Representation Analog and digital information The real world is continuous and finite, data on computers are finite  need.
Chapter 4: Representation of data in computer systems: Sound OCR Computing for GCSE © Hodder Education 2011.
Computer Science 101 RGB Color System. Simplified Introduction to Color Vision Go to How We See: The First Steps of Human Vision or Color Vision for more.
Motivation Application driven -- VoD, Information on Demand (WWW), education, telemedicine, videoconference, videophone Storage capacity Large capacity.
Chapter 5 Light, Sound, Magic: Representing Multimedia Digitally Digitizing is more than letters, numbers, and metadata It is also photos, audio, and video.
Chapter 2 : Business Information Business Data Communications, 5e.
1 The Information School of the University of Washington Nov 6fit more-digital © 2006 University of Washington Digital Information INFO/CSE 100,
Digital Audio, Image and Video Hao Jiang Computer Science Department Sept. 6, 2007.
Chapter 2 : Business Information Business Data Communications, 4e.
Chapter 2 : Business Information Business Data Communications, 5e.
Chapter 11 Light, Sound, Magic: Representing Multimedia Digitally.
Working with Sound CSC 161: The Art of Programming Prof. Henry Kautz 11/11/2009.
CS110: Computers and the Internet Color and Image Representation.
Introduction to Sound Sounds are vibrations that travel though the air or some other medium A sound wave is an audible vibration that travels through.
Light and Color. Light is a form of energy light travels extremely fast and over long distances light carries energy and information light travels in.
Digital Audio What do we mean by “digital”? How do we produce, process, and playback? Why is physics important? What are the limitations and possibilities?
Introduction to Interactive Media 10: Audio in Interactive Digital Media.
Chapter 2 Data Representation. Define data types. Visualize how data are stored inside a computer. Understand the differences between text, numbers, images,
Chapter 11 Light, Sound, Magic: Representing Multimedia Digitally.
Lecture # 22 Audition, Audacity & Sound Editing Sound Representation.
DTC 354 Digital Storytelling Rebecca Goodrich. Wave made up of changes in air pressure by an object vibrating in a medium—water or air.
Computing with Digital Media: A Study of Humans and Technology Mark Guzdial, School of Interactive Computing.
CSCI-235 Micro-Computers in Science Hardware Part II.
© 1999 Rochester Institute of Technology Color. Imaging Science Workshop for Teachers ©Chester F. Carlson Center for Imaging Science at RIT Color Images.
Lab #5-6 Follow-Up: More Python; Images Images ● A signal (e.g. sound, temperature infrared sensor reading) is a single (one- dimensional) quantity that.
TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach.
Lawrence Snyder University of Washington, Seattle © Lawrence Snyder 2004 Adding some light to computing ….
Computer Some basic concepts. Binary number Why binary? Look at a decimal number: 3511 Look at a binary number: 1011 counting decimal binary
Announcements Chapter 11 for today No quiz this week Instructor got behind…. We'll be back in MGH389 on Friday.
THE COLORS OF LIGHT RED, GREEN and BLUE
Chapter 11 Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
CIS-325: Data Communications1 CIS-325 Data Communications Dr. L. G. Williams, Instructor.
Images The Science of Images What is an Image on the computer? The Psychology of Images What do we use images for? What effect color has on our mood and.
Chapter 2 : Business Information Business Data Communications, 6e.
Introduction to SOUND.
More Meaningful Jargon Or, All You Need to Know to Speak Like a Geek Sound.
Encoding and Simple Manipulation
Introduction to Computer Graphics
CSCI-100 Introduction to Computing Hardware Part II.
The Digital Revolution Changing information. What is Digital?  Discrete values used for  Input  Processing  Transmission  Storage  Display  Derived.
Binary! Objectives How sound is stored in digital format What is meant by “sample interval” and how it affects quality The trade off between file size.
CS Spring 2012 CS 414 – Multimedia Systems Design Lecture 4 – Visual Perception and Digital Image Representation Klara Nahrstedt Spring 2012.
TOPIC 4 INTRODUCTION TO MEDIA COMPUTATION: DIGITAL PICTURES Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach.
Image Editing Vocabulary Words Pioneer Library System Norman Public Library Nancy Rimassa, Trainer Thanks to Wikipedia ( help.
Sensation and Perception. Transformation of stimulus energy into a meaningful understanding –Each sense converts energy into awareness.
Physical characteristics of sound Amplitude – The measure of displacement of the air pressure wave Frequency – Represents the number of periods.
CS Spring 2014 CS 414 – Multimedia Systems Design Lecture 4 – Visual Perception and Digital Image Representation Klara Nahrstedt Spring 2014.
Everything is a number Everything in a computer memory and on storages is a number. Number  Number Characters  Number by ASCII code Sounds  Number.
The Physics of Sound.
How to Convert Pictures into Numbers
Vocabulary byte - The technical term for 8 bits of data.
High Resolution Digital Audio
Introduction to Digital Audio
White light is a combination of all of the colors of the rainbow.
Digital Image Processing
Multimedia Fundamentals(continued)
18.1 The Electromagnetic Spectrum
Introduction to Digital Audio
Introduction to Digital Audio
Introduction to Digital Audio
Chapter 2 Data Representation.
Chapter 4: Representing sound
Representing Sound 2.6 – Data Representation.
COMS 161 Introduction to Computing
The first stage of vision
Visuals are analog signals...
Introduction to Digital Audio
Recap In previous lessons we have looked at how numbers can be stored as binary. We have also seen how images are stored as binary. This lesson we are.
Presentation transcript:

Images, Sound, and Multimedia

No Surprises Images, Sound, Music, and Movies – It’s all numbers – Binary Numbers Today we’ll discuss how multimedia is converted to and from numbers, and processed on a computer

Colors In a computer’s memory colors are represented as a combination of three-additive primary colors (red, green, blue) Nearly every color that you perceive can be generated by combining these colors Under normal conditions, humans can discern about 100 shades of a color (Just noticeable differences)

Visual Sensitivity A light sensitive organ; the highest bandwidth channel into the brain.

Trichromatic Sensitivity Two kinds of cells, rods and cones Three types of cones red, green, and blue

Computer Colors Combining what we know – Only 3 colors are needed to stimulate the perception of nearly all others – Roughly 100 shades of each are perceivable Three one-byte channels (r, g, b) each with 256 levels Alternatives: 15-bit color, 5-bits per r, g, b (banding is sometimes noticeable)

Some Preliminaries Download the Python Imaging Library from

Image Compression There are 2 common types of image compression – Lossy - (.jpg) – Higher compression rate (fewer bits/pixel) Good for “Natural images” – Lossless - (.bmp,.png) – Lower compression rate (more bits/pixel – Best for “Graphics Arts Images” – Preserves Sharp lines

Image Compression Example

Sound by Numbers Sound is a result of pressure waves propagating through the air You perceive sound as the intensity and frequency of these pressure waves How are these “waves” represented in a computer

Sound Perception

Some Quick and Dirty Sound

Audio Sampling The sampling rate, defines the number of samples per second taken from a continuous signal to make a discrete (digital) signal. It is measured in hertz (Hz) The inverse of the sampling frequency is the sampling period or sampling interval, which is the time between samples.

Common Sampling Rates The table above gives the common sampling rates used in many audio applications The highest reproducible audible frequency by any format is 1/2 of its sampling rate

Making a Sound

A Square Wave Tone

Noise

More to Come… Digital Sound and other Graphics, images, etc