Level 3 Extended Diploma Unit 19 Computer Systems Architecture

Slides:



Advertisements
Similar presentations
Multimedia: Digitised Sound Data Section 3. Sound in Multimedia Types: Voice Overs Special Effects Musical Backdrops Sound can make multimedia presentations.
Advertisements

GCSE Computing#BristolMet Session Objectives#10 MUST define the term sample rate COULD explain how sound can be sampled and stored in digital form SHOULD.
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Motivation Application driven -- VoD, Information on Demand (WWW), education, telemedicine, videoconference, videophone Storage capacity Large capacity.
Copyright 2003 Monash University IMS5401 Web-based Information Systems Topic 2: Elements of the Web (d) Digital representation.
Audio & Video Representation CS105. Data Representation Types of data: – Numbers – Text – Images – Audio & Video.
1 A Balanced Introduction to Computer Science, 2/E David Reed, Creighton University ©2008 Pearson Prentice Hall ISBN Chapter 12 Data.
Representing Images. Goals for Image Representation digitization & resolution digitization & resolution representing color representing color color depth.
Nat 4/5 - Software Design and Development – Low Level Operations - 1 National 4/5 – Computing Science Information Systems Design and Development Media.
Media File Formats Jon Ivins, DMU. Text Files n Two types n 1. Plain text (unformatted) u ASCII Character set is most common u 7 bits are used u This.
Fundamentals Rawesak Tanawongsuwan
Year 10 Digital Media.  Analogue data – continuous waveform. The world we live in!  Digital data – exact quantity. Computers use binary data made up.
Higher Computing Data Representation.
Chapter 2, Exploring the Digital Domain
Chapter 8: Digital Media1 Digital Media Chapter 8.
Multimedia Data Video Compression The MPEG-1 Standard
Computers and Scientific Thinking David Reed, Creighton University Data Representation 1.
Chapter 11 Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
3. Multimedia Systems Technology
Higher Computing Computer Systems S. McCrossan 1 Higher Grade Computing Studies 1. Data Representation Data Representation – Why do we use binary? simplicity,
AS LEVEL ICT2 Processing Different Types of Information.
1 CP Lecture 8 PC and Media exchange standards.
Document Formats How to Build a Digital Library Ian H. Witten and David Bainbridge.
Common file formats  Lesson Objective: Understanding common file formats and their differences.  Learning Outcome:  Describe the type of files which.
Chapter 2 : Business Information Business Data Communications, 6e.
Agenda Last class: Memory, Digitizing Numbers Today: Digitizing: Text
How Analog and Digital Recording Works Analog converted to digital via an ADV (Analog to Digital Converter = stream of numbers) On playback: digital converted.
Marr CollegeHigher ComputingSlide 1 Higher Computing: COMPUTER SYSTEMS Part 1: Data Representation – 6 hours.
Marwan Al-Namari 1 Digital Representations. Bits and Bytes Devices can only be in one of two states 0 or 1, yes or no, on or off, … Bit: a unit of data.
Media Types Information Systems can contain the following types of media: Sound, graphics, video & text.
CSCI-100 Introduction to Computing Hardware Part II.
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
Chapter 1 Background 1. In this lecture, you will find answers to these questions Computers store and transmit information using digital data. What exactly.
COMP135/COMP535 Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 2 Lecture 2 – Digital Representations.
Information Systems Design and Development Media Types Computing Science.
1 Part A Multimedia Production Chapter 2 Multimedia Basics Digitization, Coding-decoding and Compression Information and Communication Technology.
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
DATA Unit 2 Topic 2. Different Types of Data ASCII code: ASCII - The American Standard Code for Information Interchange is a standard seven-bit code that.
By the end of this session you should be able to... Understand character sets and why these are used within computer systems. Understand how characters.
National 4 and National 5 Computer Science. National 4 Computing Science 2 units: Software Design and Development Information System Design and Development.
Multimedia Systems Dr. Wissam Alkhadour.
Data Representation.
Image and Sound Representation
GCSE COMPUTER SCIENCE Data 2.2 Characters and Images.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
File Compression 3.3.
Data Representation.
Denary to Binary Numbers & Binary to Denary
Level 3 Extended Diploma Unit 19 Computer Systems Architecture
Computer Systems Nat 4/5 Data Representation Lesson 4:
Introduction To Computer Science
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.
Multimedia: Digitised Sound Data
Intermediate 2 Computing
Folders out, planners out…
Specialised Module 4: Materials
Overview What is Multimedia? Characteristics of multimedia
Data Representation.
Bitmap, Vector, Pixels, Resolution, Metadata.
Representing Images 2.6 – Data Representation.
Web Design and Development
Ch2: Data Representation
Summer Term Year 10 Slides
1. Explain how ASCII is used to represent text in a computer system
Computer Systems – Unit 1
COMS 161 Introduction to Computing
Option: Data Representation
Option: Data Representation
WJEC GCSE Computer Science
Presentation transcript:

Level 3 Extended Diploma Unit 19 Computer Systems Architecture Data Types Level 3 Extended Diploma Unit 19 Computer Systems Architecture

Previously …. We learnt how values can be represented in: Decimal Binary Hexadecimal Now we look at how other things can be represented in a computer  

Text We need a method of coding the alphabet and other characters This has to be recognised across all computers ASCII (American Standard Code for Information Interchange) is a method of doing this Standardises binary codes eg: 01000001 is uppercase A

ASCII code Char Hex Binary A 41 01000001 N 4E 01001110 a 61 01100001 n 01101110 B 42 01000010 O 4F 01001111 b 62 01100010 o 6F 01101111 C 43 01000011 P 50 01010000 c 63 01100011 p 70 01110000 D 44 01000100 Q 51 01010001 d 64 01100100 q 71 01110001 E 45 01000101 R 52 01010010 e 65 01100101 r 72 01110010 F 46 01000110 S 53 01010011 f 66 01100110 s 73 01110011 G 47 01000111 T 54 01010100 g 67 01100111 t 74 01110100 H 48 01001000 U 55 01010101 h 68 01101000 u 75 01110101 I 49 01001001 V 56 01010110 69 01101001 v 76 01110110 J 4A 01001010 W 57 01010111 j 6A 01101010 w 77 01110111 K 4B 01001011 X 58 01011000 k 6B 01101011 x 78 01111000 L 4C 01001100 Y 59 01011001 l 6C 01101100 y 79 01111001 M 4D 01001101 Z 5A 01011010 m 6D 01101101 z 7A 01111010

Text One bit to switch between upper and lower case No information about font, size, colour (this is the job of scripting languages – HTML etc, or word processors) Similar values for punctuation etc

Exercise Write out your surname in binary and hex Decode this message (x20 is a space) 537475666620666F722073747564656E7473 What are the ASCII codes for ? @ # £ $

Graphics 2 ways to represent graphics Bitmaps Vectors

Bit maps Resolution – horizontal x vertical pixels or bits 640 x 480, 1280 x 1024 etc 1

Colour bit maps Images made up of coloured pixels

Colour bit maps Colour depth – number of colour bits per pixel 1 bit – monochrome 0 = white 1 = black 8 bit – grey scale – 256 shades 00000000 = black 00001111 = mid grey 11111111= white

Colour 24 bit = 8 bits per red/green/blue = 16 million colours Exercise – how many colours in 30 bit Deep Colour

Vector graphics Lines are drawn Can be scaled up or down without loss of quality Allows much smaller file sizes than bitmaps

Vector graphics What is going to be drawn (eg line) Start point (x1,y1) End point (x2,y2) Where x and y are co-ordinates on a grid 0 1 2 3 4 5 Y – axis 0 1 2 3 4 5 X – axis

Draw a square // set the starting point for the line graphics.moveTo(10,10); // move the line through a series of coordinates graphics.lineTo(10,100); graphics.lineTo(100,100); graphics.lineTo(100,10); graphics.lineTo(10,10);

Exercise What applications allow you to create and edit bitmaps or vector graphics? What are the advantages of each method of drawing images?

Sound Sound consists of a continuously varying waveform It is an analogue signal

A-D conversion An A-D convertor (analogue to digital) is used to sample the waveform for amplitude at fixed intervals The values are stored digitally Amplitude Sample period

Sampling rates and bits For CD the sampling rate is 44.1kHz Higher sampling rates give better quality HD-DVD uses 192 kHz The bit depth determines the range of amplitude from loudest to softest 16 bits are used for CD quality 24 bits professionally

Bit rate Bit rate = (sampling rate) x (bit depth) x (number of channels) For a recording with a 44.1 kHz sampling rate, a 16 bit depth, and 2 channels (stereo): 44100 x 16 x 2 = 1411200 bits per second, or 1.4112 Mbit/s

Compression Audio can be compressed to reduce file sizes Uncompressed files contain as many bits for silence as for sound Lossless compression replaces the silence with information about how long the silence lasts. Can reduce file size by half Lossy compression eliminates the less audible sounds and can reduce files to one tenth of the original size

File types Uncompressed Lossless Lossy WAV, AVI FLAC, Apple lossless Mp3, mp4, Vorbis, AAC, ATRAC

D-A conversion To convert a digital file back to sound The bits are fed into a D-A converter This produces a voltage with the amplitude proportional to the value of the 16 bits This is played back at the sampling rate

Video Video is encoded by taking a picture (or frame) at regular intervals The frame size is the width times the height in pixels (eg 1280 x 720) Aspect ratio is the width to depth (eg 16:9) The colour depth is in bits (eg 24 bits) The frame rate is the number of frames per second (eg 25)

File size A 1 hour (3600sec) video with a frame size of 640x480 at a colour depth of 24bits and a frame rate of 25fps has: pixels per frame = 640 * 480 = 307,200 bits per frame = 307,200 * 24 = 7.37Mbits bit rate = 7.37 * 25 = 184.25Mbits/sec file size = 184Mbits/sec * 3600sec = 662,400Mbits = 82.8Gbytes

Compression MPEG -2 can compress video by up to 15-30 times Compares each frame with the previous one Only stores the differences Regularly sends a full frame to avoid gradual deterioration When there is a lot of motion, sends full frames H.264 used for Blu-ray, YouTube and iTunes

Video quality The bit rate can be varied, which affects quality and can produce “blocky” pictures Low bit rates can be used to squeeze more channels into a satellite broadcast Transmit video over low capacity media, such as G3 cellular networks