Chapter 4: Representation of data in computer systems: Images OCR Computing for GCSE © Hodder Education 2011.

Slides:



Advertisements
Similar presentations
2.01 Investigate graphic image design. Image Resolution.
Advertisements

Chapter 4: Representation of data in computer systems: Sound OCR Computing for GCSE © Hodder Education 2011.
Chapter 4: Representation of data in computer systems
Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
Graphics CS 121 Concepts of Computing II. What is a graphic? n A rectangular image. n Stored in a file of its own, or … … embedded in another data file.
Multi-media graphics--JOUR 205 Vectors vs. bitmaps.
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
BINARY LOGIC AND IMAGES… There I will shows you all information I found on internet about binary logic and images…
Digital Art is Interactive Visual Art. How has art been changed because of technology ?
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.
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
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
2.01D Investigate graphic image design. Image Resolution.
Image Representation. Objectives  Bitmaps: resolution, colour depth and simple bitmap file calculations.  Vector graphics: drawing list – objects and.
Marr CollegeHigher ComputingSlide 1 Higher Computing: COMPUTER SYSTEMS Part 1: Data Representation – 6 hours.
Graphics and CAD. LO: Understanding graphics formats, manipulation, and the benefits of using CAD software. Learning Outcome: Define key words and answer.
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.
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 Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
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.
Introduction to the Computer Graphics Anton V. Kudinov, Assistant professor of Computer Engineering Department.
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
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
ITEC2110, Digital Media Chapter 2 Fundamentals of Digital Imaging 1 GGC -- ITEC Digital Media.
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:
ITEC2110, Digital Media Chapter 2 Fundamentals of Digital Imaging 1 GGC -- ITEC Digital Media.
Storage Requirements Computer Systems.
Text and Images Key Revision Points.
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.
Representing images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Vector vs. Bitmap.
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.
"Digital Media Primer" Yue-Ling Wong, Copyright (c)2013 by Pearson Education, Inc. All rights reserved.
Learning Intention I will learn how a computer stores graphics.
Chapter 3:- Graphics Eyad Alshareef Eyad Alshareef.
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
Chapter 2 Data Representation.
Computer Systems Nat 4.5 Computing Science Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
WJEC GCSE Computer Science
"Digital Media Primer" Yue-Ling Wong, Copyright (c)2013 by Pearson Education, Inc. All rights reserved.
Presentation transcript:

Chapter 4: Representation of data in computer systems: Images OCR Computing for GCSE © Hodder Education 2011

Bit maps Binary data can represent images. Pictures must be shown on a screen or a printer as a series of dots or pixels. They may also be stored as a series of bits. Each bit corresponds to a part of the image. Images stored in this way are called bit- mapped image files. The more dots in a given area, the better the quality. This is called the resolution of the picture OCR Computing for GCSE © Hodder Education 2011

Bit maps When a bit-mapped image is enlarged, the pixels enlarge too. This produces a jagged, blurred image. OCR Computing for GCSE © Hodder Education 2011

Resolution The higher the resolution, the bigger the file size. High resolution: 1288 kB Low resolution: 67 kB OCR Computing for GCSE © Hodder Education 2011

Colour depth Colour depth or bit depth is the number of bits used to represent the colour of a single pixel, in other words, bits per pixel. The more bits used, the better the quality of the colour because more colours can be encoded. 24 bits per pixel 3 bits per pixel OCR Computing for GCSE © Hodder Education 2011

Metadata Metadata is data about data. Metadata is useful in many types of file to provide extra information. Image files may contain metadata about the height the width the colour depth the resolution camera used exposure details when the image was created who owns the copyright contact information. OCR Computing for GCSE © Hodder Education 2011

Metadata OCR Computing for GCSE © Hodder Education 2011

Vector graphics Pictures can also be stored as formulae. They define characteristics of points, lines and curves. They do not distort when enlarged, because the image is recalculated. OCR Computing for GCSE © Hodder Education 2011