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.

Slides:



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

Copyright 2003 Monash University IMS5401 Web-based Information Systems Topic 2: Elements of the Web (d) Digital representation.
Graphics in the web Digital Media: Communication and Design
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
1 Internet Graphics. 2 Representing Images  Raster Image: Images consist of “dots” of color, not lines  Pixel: Picture element-tiny rectangle  Resolution:
Bitmapped Images. Bitmap Images Today’s Objectives Identify characteristics of bitmap images Resolution, bit depth, color mode, pixels Determine the most.
Digital Images The digital representation of visual information.
Chpater 3 Resolution, File Formats and Storage. Introduction There are two factors that determine the quality of the picture you take; The resolution.
Higher Computing Data Representation.
Faculty of Sciences and Social Sciences HOPE Website Development Graphics Stewart Blakeway FML 213
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.
Objective Understand concepts used to create digital graphics. Course Weight : 15% Part Three : Concepts of Digital Graphics.
Image Storage Bitmapped Graphics – in which an image is represented as a collection of dots Vector Graphics – in which an image is represented as a set.
Vector vs. Bitmap
Foundations of Web Design I Photoshop CS5 Michael Daniel
Department of Information Technology Chapter 8 - Creating Hypertext links Lecturer: Ms Melinda Chung.
Higher Computing Computer Systems S. McCrossan 1 Higher Grade Computing Studies 1. Data Representation Data Representation – Why do we use binary? simplicity,
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.
Image Representation. Objectives  Bitmaps: resolution, colour depth and simple bitmap file calculations.  Vector graphics: drawing list – objects and.
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.
44212: Web-site Development Optimising Images for Web-pages Ian Perry Room:C49 Extension:7287
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
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.
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.
Image File Formats Harrow Computer Club – Wed, 1 Dec 2010 Bob Watson MA CMath MIMA MBCS.
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
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
Guilford County SciVis V104.03
Information Systems Design and Development Media Types Computing Science.
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
Data Representation Images.
Data Representation.
Representing images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Vector vs. Bitmap.
Intermediate 2 Computing
A computer display is made up of small squares, called pixels.
Learning Intention I will learn how a computer stores graphics.
Images in Binary.
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
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

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 for metadata to be included in the file such as height, width and colour depth (m) discuss the effect of colour depth and resolution on the size of an image file. N Martin Jan 2011

Representing pictures in binary Bitmap images The page is divided into an invisible grid and each pixel is assigned a colour Vector images Drawn by following a set of mathematical instructions Draw a circle radius: 6 pixels centre: 10, 10 line thickness: 1 pixel

Bitmap images Certain information must be defined for the bitmap image, this is called METADATA (or data about data) Size of grid Width: 20 pixels Height: 20 pixels

Bitmap images Resolution depth How many pixels will there be per unit of length 10 pixels per inch 72 pixels per inch The greater the resolution depth: The sharper the image The more data needs to be stored and the larger the file size on disk

Bitmap images Colour depth How many bits will be used to store the colour for each pixel in the grid 1 bit allows 2 different values 2 different colours 2 bit allows 4 different values 4 different colours 3 bit allows 8 different values 8 different colours ... 8 bit allows 256 different values 256 different colours 24 bit allows 16,777,216 different values 6,777,216 different colours The greater the colour depth: The more realistic colours The more data needs to be stored and the larger the file size on disk

L- Meta Data When an application such as a web browser or word processor wants to open a picture, it needs to know more than the information held about each pixel. For example, it needs to know: the height and width of the image how many pixels there should be in a square inch (the resolution) how many bits are being used to define the colour of each pixel (colour depth).

Meta Data The application needs to know this information so that it can display the picture properly. In addition, however, there may be other information held as part of the image file, other metadata. These might include: who owns the copyright to the image so that someone knows who to contact if they want to use the image when the image was created so that a user can see if the image is up-to-date keywords (tags) so that the image can be easily searched for on the Internet what software was used to create the image so someone can try the software for themselves if they were impressed with the image.

Bitmap Images

Bitmap Images Low resolution so very ‘pixelated’

Bitmap Images

Indexed Colour A colour palette is stored inside the image file as part of the meta data. Advantages Indexed colour saves a lot of memory, storage space, and transmission time Disadvantages Has a limited set of simultaneous colours per image, ok for 4 or 16 colour palettes but not for real life images.

Direct Colour Every colour can be made up from the correct mix of RED, GREEN and BLUE

Direct Colour By mixing the appropriate amount from each of the three colour channels you can get a variety of colours There is a 4th channel, called the alpha channel which handles transparency R G B α   FF 00 80 96 What gets stored for each pixel is just a combination of each channel Eg FFFFFF00 means the pixel is white 96008000 means the pixel is lilac 8 bit gives 256 colours Real life colour needs 15 or 16 bits 24-bit or “truecolor “gives over 16.7 million colours