Computer Systems Nat 4/5 Data Representation Lesson 4:

Slides:



Advertisements
Similar presentations
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Advertisements

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
How Images are Represented Bitmap images (Dots used to draw the image) Monochrome images 8 bit grey scale images 24 bit colour Colour lookup tables Vector.
Lesson Objectives Explain the representation of an image as a series of pixels represented in binary Explain the need for meta data to be included in the.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
Computer Systems Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text.
Higher Computing Data Representation.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Storing Graphics EXTENSION.
Bits & Bytes: How Computers Represent Data
GCSE Computing#BristolMet Session Objectives#9 MUST identify the data needed for a computer to display an image correctly (metadata) SHOULD describe the.
© GCSE Computing Candidates should be able to:  explain the representation of an image as a series of pixels represented in binary  explain the need.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Higher Computing Computer Systems S. McCrossan 1 Higher Grade Computing Studies 1. Data Representation Data Representation – Why do we use binary? simplicity,
Data Representation Int 2 Computing Unit 1 – Computer Systems St Kentigern’s Academy.
Shawlands Academy Higher Computing Data Representation.
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
Graphics A graphics program allows you to combine pictures and text in many different ways. Features – General Level Draw graphics Enter Text Common Tools.
AS LEVEL ICT2 Processing Different Types of Information.
Data Representation The method of data representation in a computer system depends upon the type of data which is being used. Three types of data are considered.
Chapter 4: Representation of data in computer systems: Images OCR Computing for GCSE © Hodder Education 2011.
Marr CollegeHigher ComputingSlide 1 Higher Computing: COMPUTER SYSTEMS Part 1: Data Representation – 6 hours.
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
Int 2/ Higher - Data Representation - 1 Why use Binary? It is a two state system (on/off) which makes it simple to operate Even if degradation of current.
Data Representation The storage of Text Numbers Graphics.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
DATA REPRESENTATION CHAPTER DATA TYPES Different types of data (Fig. 2.1) The computer industry uses the term “MULTIMEDIA” to define information.
COMPUTER GRAPHICS. Can refer to the number of pixels in a bitmapped image Can refer to the number of pixels in a bitmapped image The amount of space it.
Graphics in a computers memory How a picture (i.e. a graphic) is stored in a computers memory A computer screen is made up of little dots, called PICture.
Representation of Data in Computer Systems
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
 Computers are 2-state devices › Pulse – No pulse › On – Off  Represented by › 1 – 0  BINARY.
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.
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
Storage Requirements Computer Systems.
Text and Images Key Revision Points.
Computer Systems Nat 5 Computing Science Data Representation
Unit 2.6 Data Representation Lesson 3 ‒ Images
Image and Sound Representation
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
GCSE COMPUTER SCIENCE Data 2.2 Characters and Images.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
Images Data Representation.
Data Representation Images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Bits & Bytes How Computers Represent Data
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.
Intermediate 2 Computing
Learning Intention I will learn how a computer stores graphics.
Computer Systems Nat 4/5 Computing Science Computer Structure:
Images in Binary.
Data Representation.
Bitmap, Vector, Pixels, Resolution, Metadata.
Representing Images 2.6 – Data Representation.
What do these words mean to you?
Ch2: Data Representation
Summer Term Year 10 Slides
Computer Systems – Unit 1
Chapter 2 Data Representation.
Why use Binary? It is a two state system (on/off) which makes it simple to operate Even if degradation of current occurs (ie a slight drop in voltage)
Computer Systems.
Computer Systems Nat 4.5 Computing Science Data Representation
Option: Data Representation
Option: Data Representation
Computer Systems Nat 4/5 Computing Science Data Representation
WJEC GCSE Computer Science
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics

REVISION What does ASCII mean? Describe how text is stored by a computer system What is a control character?

ANSWERS Int 2 Revision: American Standard Code for Information Interchange Each value has a unique ASCII value and this is stored in binary by the computer A key that has an effect on screen

Lesson Aims Pupils at National 5 level will be able to: Describe how a computer system stores a black and white bitmap image Calculate the storage requirements of a black and white bitmap image. Explain the difference between a vector and bitmap image Explain the terms pixel, dpi and resolution

Lets look at a bitmap picture Nat 4/5 Lets look at a bitmap picture The whole image is made up of individual pixels. Pixel stands for picture element

Bitmap Images A bitmap image stores each individual pixel. Nat 4/5 Bitmap Images A bitmap image stores each individual pixel. First you need to understand black and white images. These are constructed as follows: 0 is stored for a white pixel, 1 is stored for a black pixel Each black and white pixel takes up 1 bit of storage

Nat 4/5 Resolution Resolution is the term given to the amount of pixels that the image is made of Also used for the amount of pixels displayed on the screen Higher resolution = clearer and more detailed picture Pixel Pattern using 8x8 grid Pixel Pattern using 16x16 grid

Calculating Storage Requirements Nat 4/5 Calculating Storage Requirements You are often required to calculate the storage requirements of a black and white bitmap image The steps are as follows: Amount of pixels wide x Amount of pixels high This answer is in bits You then convert the number into appropriate units (Kilobytes/Megabytes) Divide until its in an appropriate unit.

Nat 4/5 Storage Space Example A black and white image is 800 pixels by 900 pixels. Calculate the storage requirements and express the answer in appropriate units. Step 1: Length x Breadth 800 * 900 = 720,000 bits Step 2: Convert into appropriate units 720,000/8 = 90,000 Bytes 90,000 bytes /1024 = 87.89 KB If you already know the amount of pixels in the image then use this method

Alternate Storage Space Example Sometimes you will be given the size of the image and the resolution of the image. One way in which this can be measured is dpi Dots per inch is the amount of pixels in an inch. A black and white image is 4 inches by 6 inches with a resolution of 300dpi. Step 1: (Length x dpi) x (Breadth x dpi) (4*300) * (6*300) = 2,160,000 bits Step 2: Convert into appropriate units 2,160,000/8 = 270,000 Bytes 270,000 bytes /1024 = 263.67 Kb If you are not given the amount of pixels in the image then use this method

Vector Graphics The image below is an example of a vector image. Nat 4/5 Vector Graphics The image below is an example of a vector image. For example attributes for the eyes(ellipses) may be Centre X/Y-co-ordinates Fill Colour Border Style Border Colour etc…

Summary Bitmap images store every single pixel Nat 4/5 Summary Bitmap images store every single pixel 1bit for each pixel 0 for white pixel, 1 for black pixel Resolution is the amount of pixels that make up an image Higher resolution means you have a more detailed image.