Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.

Slides:



Advertisements
Similar presentations
Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
Advertisements

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.
Bitmapped Images 27 th November 2014 With Mrs
Part A Multimedia Production Rico Yu. Part A Multimedia Production Ch.1 Text Ch.2 Graphics Ch.3 Sound Ch.4 Animations Ch.5 Video.
Higher Computing Data Representation.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Storing Graphics EXTENSION.
COMP Bitmapped and Vector Graphics Pages Using Qwizdom.
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.
Welcome Topic: Pixels A.M.Meshkatur Rahman Class: vii Roll: 07.
Objective Understand concepts used to create digital graphics. Course Weight : 15% Part Three : Concepts of Digital Graphics.
Digital Terminology. Bitmap A representation consisting of rows and columns of dots of a graphic image stored in computer memory. To display a bitmap.
Vector vs. Bitmap
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
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.
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.
Graphics and Images Communicating Information : Documents and Publications.
File Sizes & Storage Requirements.  An image has a width in pixels and a height in pixels  Start by calculating the number of pixels all up  640 x.
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.
Computer Graphics An Introduction Jimmy Lam The Hong Kong Polytechnic University.
Representation of Images You need to know: (k) explain the representation of an image as a series of pixels represented in binary (l) explain the need.
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
Data Representation The storage of Text Numbers Graphics.
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.
Resolution The resolution of an image is determined by the number of individually addressable points that make up the image, whether it is the number.
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.
Digital Media Dr. Jim Rowan ITEC 2110 Chapter 3. Roll call.
DATA REPRESENTATION IMAGES GCSE Computing. Learning Objective ■ To understand how an image is represented in Binary ■ To be able to convert a Binary code.
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.
National 4 and National 5 Computer Science. National 4 Computing Science 2 units: Software Design and Development Information System Design and Development.
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.
Images Data Representation.
Data Representation Images.
Data Representation.
Representing images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Binary 4 File Sizes.
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.
GRAPHICS Source:
Computer Systems Nat 4/5 Computing Science Computer Structure:
LET’S LEARN ABOUT GRAPHICS!
Data Representation.
Bitmap, Vector, Pixels, Resolution, Metadata.
Representing Images 2.6 – Data Representation.
What do these words mean to you?
Summer Term Year 10 Slides
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 Nat 4.5 Computing Science Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
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 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION

1.How does a computer system store a black and white image? 2.What storage space is required for a B+W image 300*700 pixels? 3.What storage space is needed for a 3*5 inch image with a resolution of 600 dpi? 4.Explain the difference in the storing of a vector and bitmap graphic. Nat 4/5

Revision : 1.Store as a series of bits, 1’s for black and 0’s for white *700/8/1024=25.63 = 26Kb 3.(3*600)*(5*600)/8/1024= =660Kb 4.Bitmap stored as pixels and Vector stored by it’s attributes. Nat 4/5

Lesson Aims  Pupils at National 5 level will be able to:  Describe how a computer system stores a colour bitmap image.  Calculate the storage requirements of a colour bitmap image  Describe the advantages bitmap graphics have over vector graphics  Describe the advantages vector graphics have over bitmap graphics Nat 4/5

Colour Bitmaps  The colour bitmap method is exactly the same as for black and white with one difference.  Each pixel is not black and white but can represent a variety if colours. National 5

Colour Bitmaps  Each pixel has a binary value representing the colour. The amount of colours is known as the bit depth.  So an image with 8 bit colour depth could have 256 Colours  True Colour is defined as an image with 24bit colour depth. 16,777,216 colours! National 5

True Colour  True Colour is defined as an image with 24bit bit depth.  This means that 16,777,216 colours can be represented.  The colour code for each pixel is constructed of a single 8 bit number for each of the main 3 additive colours.  Redgreenblue  Red, green and blue National 5 RGB Colour Codes

Increasing Bit Depth Higher colour Depth = More Colours File Size Increases National 5

Storage Space Example .  Step 1: (Length x Breadth) * bit depth  (800 * 900) * 24bits = 17,280,000 bits  Step 2: Convert into appropriate units  17,280,000/8 = 2,160,000 bytes  2,160,000 bytes /1024 = 2, Kb  2, Kb/1024 = 2.06 Mb National 5 A true colour image is 800 pixels by 900 pixels. Calculate the storage requirements and express the answer in appropriate units

Alternate Storage Space Example  Sometimes you will be given the size 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 16bit colour image is 4 inches by 6 inches with a resolution of 300dpi.  Step 1: ((Length x dpi) x (Breadth x dpi)) * bit depth  ((4*300) * (6*300))* 16 = 2,160,000 pixels  Step 2: number of pixels * bit depth  2,160,000 * 16 = 34,560,000 bits  Step 2: Convert into appropriate units  34,560,000 /8 = 34,560,000 bytes  34,560,000 bytes /1024/1024 = Mb National 5

Advantages Can be manipulated at pixel level Can create a wide array of graphic effects Can represent photo- realistic images Disadvantages  Requires large storage space  Image becomes jagged when scaled Bitmap Graphics – Pros and Cons National 5

Advantages Do not lose quality when scaled Require less storage space Objects are easily moved/manipulated Resolution independent Disadvantages  Cannot be edited at pixel level  Cannot show photo realistic scenes  Will usually require particular applications to open Vector Graphics – Pros and Cons National 5

Vector Plans Logos Promotional posters Large scale banners Bitmap What Vector and Bitmap graphics are used for National 5 Photo editing Life like pictures Computer drawing Special effects, for example, blurring and texture

Summary  In colour bitmaps the amount of colours in the picture is represented by a binary number  The amount of colour is known as the bit depth  You calculate the storage requirements by multiplying the amount of pixels by the bit depth  Or by using the size of the graphic multiplying it by the dpi and then by the bit depth  Vector and Bitmap graphics are used for different task National 5

Two methods of calculating storage space required  A graphic 300 pixels by 600 pixels and a bit depth of 16 then 300*600*16 = bits / 8 = bytes / 1024 = = 352 Kb  A 16 bit 5*7colour image with dpi of 600  (5*600)*(7*600)*16= bits/8 = /1024 = /1024 = = 24.1 Mb