Bitmap, Vector, Pixels, Resolution, Metadata.

Slides:



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

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
WHAT IS IT AND WHY SHOULD I CARE? 2.0.  GRAPHICS  Draw-type graphics (also called vector graphics) represent an image as a geometric shape made up of.
Data starts with width and height of image Then an array of pixel values (colors) The number of elements in this array is width times height Colors can.
Bitmapped Images. Bitmap Images Today’s Objectives Identify characteristics of bitmap images Resolution, bit depth, color mode, pixels Determine the most.
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.
Module Code: CU0001NI Technical Information on Digital Images Week -2.
Objective Understand concepts used to create digital graphics. Course Weight : 15% Part Three : Concepts of Digital Graphics.
Vector vs. Bitmap
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
Images The Science of Images What is an Image on the computer? The Psychology of Images What do we use images for? What effect color has on our mood and.
Image Representation. Objectives  Bitmaps: resolution, colour depth and simple bitmap file calculations.  Vector graphics: drawing list – objects and.
1 Ethics of Computing MONT 113G, Spring 2012 Session 10 HTML Tables Graphics on the Web.
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.
Introduction to Image Processing. Image Processing is the steps of using image processing tools to covert different kinds of image sources into different.
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.
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.
Digital Graphics for Computer Games Pixels Types of Digital Graphics (Raster and Vector) Compression.
Bitmap Graphics Graphics. Graphics L2 Bitmap Graphics Learning Objectives Understand how a bitmap graphic is made up of individual pixels Understand that.
Representation of Data in Computer Systems
Guilford County SciVis V104.03
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:
Data Representation: Sound
Objective % Explain design concepts used to create digital graphics.
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.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Vector vs. Bitmap.
Pixel, Resolution, Image Size
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.
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.
Representing Images 2.6 – Data Representation.
What do these words mean to you?
Ch2: Data Representation
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:
Non-numeric Data Representation
Objective % Explain design concepts used to create digital graphics.
WJEC GCSE Computer Science
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

Bitmap, Vector, Pixels, Resolution, Metadata. Keywords Bitmap, Vector, Pixels, Resolution, Metadata. Data Representation Images

Type of Digital Image Objectives ADVANCED: Understand how a digital image is made up and be able to recognise the affect changing the resolution has on an image. EXPERT: Understand how a computer displays coloured images using binary and rgb values. BITMAP: The page is divided into an invisible grid and each pixel is assigned a colour. VECTOR: Drawn by following a set of mathematical instructions. Draw a circle, radius: 6 pixels, centre: 10, 10, line thickness: 1 pixel. METADATA: 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 A term for 'data about data'. In other words metadata describes the structure of the data file and is usually located right at the start of the file. When a media player opens the file it looks for the metadata which describes the format of the file e.g. the file type, how many horizontal pixels are there, how many vertical pixels and the colour depth of the file. The media player reads the file and correctly displays the image. Starter activity

Using Pixels to Create a Binary Image Objectives ADVANCED: Understand how a digital image is made up and be able to recognise the affect changing the resolution has on an image. EXPERT: Understand how a computer displays coloured images using binary and rgb values. We call this pixelated. This image is represented in Binary in 1s and 0s, as they are the binary digits. The black squares are represented as 1’s and the white squares are represented as 0s. Would the image change if we used a 16x16 grid? Why? Starter activity

Data Representation Objectives ADVANCED: Understand how a digital image is made up and be able to recognise the affect changing the resolution has on an image. EXPERT: Understand how a computer displays coloured images using binary and rgb values. The number of pixels we use is known as the resolution. So, what affect does increasing the resolution have? On average, computer screens are 1,366 x 768 pixels which means we can display images from the computer using 1,049,088 pixels! Colour depth How many bits will be used to store the colour for each pixel in the grid. The greater the colour depth: The more realistic colours. The more data needs to be stored and the larger the file size on disk. 1 bit allows 2 different values 2 different colours (b&w) 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 Starter activity

Direct Colour R G B α FF 00 80 96 Objectives ADVANCED: Understand how a digital image is made up and be able to recognise the affect changing the resolution has on an image. EXPERT: Understand how a computer displays coloured images using binary and rgb values. 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 What gets stored for each pixel is just a combination of each channel. 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. R G B α   FF 00 80 96 Starter activity

Activity 1 0 0 1 1 0 0 1 0 1 0 0 0 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 1 0 1 0 0 0 1 0 0 1 0 0 Starter activity

Questions Objectives ADVANCED: Understand how a digital image is made up and be able to recognise the affect changing the resolution has on an image. EXPERT: Understand how a computer displays coloured images using binary and rgb values. 1. In your own words, explain how a bitmap image can be represented in Binary and how the resolution of an image can change. 2. What does pixelated mean? 3. What is Metadata and why does it need to be included in the file? 4. Discuss the effect of colour depth and resolution on the size of an image. Starter activity 5. Which three colours are used to make all three colours on a computer? 6. Discuss direct colour and explain how colour is stored this way.