© GCSE Computing Candidates should be able to:  explain the representation of an image as a series of pixels represented in binary  explain the need.

Slides:



Advertisements
Similar presentations
Lecture 2 Concepts, Terms and Definitions. Display Devices They are divided into a lot of small squares called pixels (“PICture ELements”). Each pixel.
Advertisements

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
Bits are Not just for Numbers Computers store characters as bits or binary digits. Characters from the English-language keyboard are represented in ASCII.
2.01 Understand Digital Raster Graphics
Vector vs. Bitmap SciVis V
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
V Obtained from a summer workshop in Guildford County July, 2014
An Introduction to Scanning and Storing Photographs and Graphics Bryn Jones Aug 2002
Bitmapped Images. Bitmap Images Today’s Objectives Identify characteristics of bitmap images Resolution, bit depth, color mode, pixels Determine the most.
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.
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.
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
Bit-Mapped Graphic Data: Input (Capture) Hardware Multimedia – Section 2.
1 Ethics of Computing MONT 113G, Spring 2012 Session 10 HTML Tables Graphics on the Web.
Agenda Last class: Memory, Digitizing Numbers Today: Digitizing: Text
Graphics. Graphic is the important media used to show the appearance of integrative media applications. According to DBP dictionary, graphics mean drawing.
Chapter 4: Representation of data in computer systems: Images OCR Computing for GCSE © Hodder Education 2011.
Which is the Pink Pen? Here is the Pink Pen (Example taken from
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.
Lecture 7: Intro to Computer Graphics. Remember…… DIGITAL - Digital means discrete. DIGITAL - Digital means discrete. Digital representation is comprised.
CS1033 Pixel and Resolution
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
Color Web Design Professor Frank. Color Displays Based on cathode ray tubes (CRTs) or back- lighted flat-screen Monitors transmit light - displays use.
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.
COMPUTER GRAPHICS. Once you scan an image or take a picture with your digital camera, it becomes digitized. Made up of hundreds of thousands of pixels.
CS 101 – Sept. 14 Review Huffman code Image representation –B/W and color schemes –File size issues.
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.
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
Guilford County SciVis V104.03
Multimedia and weBLOGging Grade 7-9 | Cahaya Bangsa Classical School (C) 2010 Digital Media Production Facility 03 - Still Picture 01 – Basics.
OBJECTIVE AND OUTCOMES Objective: To be able to create images in binary format and understand the part metadata plays in recreating images. Outcomes:
Vector vs. Bitmap. Vector Images Vector images (also called outline images) are images made with lines, text, and shapes. Test type is considered to be.
Text and Images Key Revision Points.
Computer Systems Nat 5 Computing Science Data Representation
Unit 2.6 Data Representation Lesson 3 ‒ Images
Lesson Objectives Aims You should be able to:
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.
Representing images.
Binary Notation and Intro to Computer Graphics
Computer Systems Nat 4/5 Data Representation Lesson 4:
2.01 Understand Digital Raster Graphics
Binary Representation in Audio and Images
Vector vs. Bitmap.
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
Multimedia System Image
Computer Systems Nat 4.5 Computing Science Data Representation
Do it now activity Use the coloured pencils to complete the do it now activity. Stick in your book.
Computer Systems Nat 4/5 Data Representation Lesson 4:
WJEC GCSE Computer Science
Presentation transcript:

© GCSE Computing Candidates should be able to:  explain the representation of an image as a series of pixels represented in binary  explain the need for metadata to be included in the file such as height, width and colour depth  discuss the effect of colour depth and resolution on the size of an image file. Slide 1

© GCSE Computing  Bitmap images are made up of individual pixels (picture elements).  The colour of each pixel is represented as a binary number.  The image is therefore stored as a series of binary numbers.  The program loading the image needs to know things like the image resolution and colour depth before it can convert the binary back into an image and display it. Slide 2

© GCSE Computing  The colour depth describes how many memory bits are used to store the colour of the pixel.  If only 1 bit is used (1 bit colour depth) then 2 colours can be stored (0 = the 1 st colour and 1 = the 2 nd colour).  This would result in a monochrome image such as that used by early computer monitors.  Little memory was needed to store the screen because:  Screens were low resolution (used few pixels).  Each pixel only used 1 bit of memory. Slide 3

© GCSE Computing  If only 1 bit is used per pixel then 2 colours can be stored.  If 2 bits are used per pixel then 4 colours can be stored.  00 = colour 1  01 = colour 2  10 = colour 3  11 = colour 4  This means the amount of memory needed to store an image with 2 bit colour depth is twice that needed to store the same 1 bit image. Slide 4

© GCSE Computing  Up to 8 bit colour depth it is possible to have a code for each colour. This is called direct colour.  Beyond 8 bits it is easier to define a colour by how much RED, GREEN and BLUE (RGB) it is made up of.  This is called true colour. Modern computer displays use 24 bit colour depth. 8 bits are used for the amount of Red, Green and Blue. Pure yellow would be stored as Slide 5 Colour depthNumber of coloursNotes 12Monochrome 2400, 01, 10, 11 etc , 001, 010, 011 etc , 0001, 0010, 0011 etc. 8256Direct colour , etc. 2416,777,216True colour - 8 bits for Red/Green/Blue

© GCSE Computing  Resolution is a measure of how much detail there is in an image.  A high resolution image can be magnified and still stay sharp.  A low resolution image will appear pixelated (the individual pixels will be clearly visible) if it is magnified too much.  The resolution depends on the pixel density, the number of pixels per unit of distance (not the total number of pixels in the image).  It is usually measured in pixels per inch (PPI).  SUMMARY: A bitmap image with a high resolution will have a greater the file size than the equivalent low resolution depth image because more memory is used to store the colour data of the extra pixels. Slide 6

© GCSE Computing  Metadata is needed in a bitmap image file because the software that displays an image needs to know:  The height and width of the image  so each line of the image starts in the correct place.  The resolution  so the image displays at the correct size.  The colour depth  so the correct number of bits are used to represent the colour of each pixel. Slide 7 The correct width metadata. The wrong width metadata.