BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.

Slides:



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

The Binary Numbering Systems
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.
An Introduction to Scanning and Storing Photographs and Graphics Bryn Jones Aug 2002
©Brooks/Cole, 2003 Chapter 2 Data Representation.
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.
Representing Nonnumeric Data Everything is really a number.
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 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.
Image Representation. Objectives  Bitmaps: resolution, colour depth and simple bitmap file calculations.  Vector graphics: drawing list – objects and.
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.
Quiz # 1 Chapters 1,2, & 3.
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.
Digital Images are represented by manipulating this…
Image File Formats. What is an Image File Format? Image file formats are standard way of organizing and storing of image files. Image files are composed.
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.
Representation of Data in Computer Systems
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
Information Systems Design and Development Media Types Computing Science.
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
© 2016 AQA. Created by Teachit for AQA Character encoding and Representing images Lesson.
By the end of this session you should be able to... Understand character sets and why these are used within computer systems. Understand how characters.
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:
BITMAPPED IMAGES & VECTOR DRAWN GRAPHICS
DATA REPRESENTATION - TEXT
Image and Sound Representation
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
GCSE COMPUTER SCIENCE Data 2.2 Characters and Images.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
File Compression 3.3.
Images Data Representation.
Data Representation.
Chapter 3 Image Files © 2013 Cengage Learning. All Rights Reserved. May not be scanned, copied or duplicated, or posted to a publicly accessible website,
Level 3 Extended Diploma Unit 19 Computer Systems Architecture
Level 3 Extended Diploma Unit 19 Computer Systems Architecture
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Intermediate 2 Computing
Chapter 3 Image Files © 2017 Cengage Learning®. May not be scanned, copied or duplicated, or posted to a publicly accessible website, in whole or in part.
A computer display is made up of small squares, called pixels.
Representing Nonnumeric Data
Learning Intention I will learn how a computer stores graphics.
File size and image quality
An Introduction to Scanning and Storing Photographs and Graphics
Data Representation.
Bitmap, Vector, Pixels, Resolution, Metadata.
Representing Images 2.6 – Data Representation.
Web Design and Development
Ch2: Data Representation
Summer Term Year 10 Slides
1. Explain how ASCII is used to represent text in a computer system
Computer Systems – Unit 1
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.
Computer Systems Nat 4.5 Computing Science Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
WJEC GCSE Computer Science
Creating Digital Graphics
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston

Learning Outcome Understand the purpose and implications of using codes to represent character sets Know the features and uses of common character sets Understand how bitmap/raster image data is stored and represented within a computer system Understand the impact of image resolution on the way images are stored and represented Understand the impact of sample /bit depth on the way the image data is stored and images are displayed Understand the effects of compression on image data

Text Representation Each character we enter into a computer needs to be stored as a binary number To store character normally an 8bit byte (allows for 256 characters) is used e.g. a = 01100001, A = 01000001, b = 01100010, B = 01000010 A character set is used to define which binary number is used for each character A character set as a minimum will need to store 0-9, a-z, A- Z, but will also need to store punctuation and control characters What is the rule to distinguish between lower case and UPPER case characters?

Text Representation – Character Sets Two common characters sets are ASCII (American Standard Code for Information Interchange) UNICODE ASCII Code UNICODE ASCII vs UNICODE Activity Carry out individual research into the purpose, features and implications of common character sets (including ASCII and UNICODE) producing notes which can be used for revision. For a bit of fun complete this ASCII code worksheet

Image Representation – Storage Images are stored within a computer system in either Bitmap/Raster or Vector format Bitmap images are made from lots of dots called pixels Each dot is assigned a colour and this colour is represented by a binary number The number of colours the picture supports will depend on the size of the binary number For black and white only a single bit is needed For 256 colours 8 bits are required Vector images are made up of shapes Each shapes co-ordinates that define where objects are placed are stored along with properties including line thickness and fill type

Image Representation – Resolution Bitmap/Raster images have a resolution which is the number of pixels that make up the image Resolution is given as the number of pixels wide and the number of pixels high e.g. 1280 x 768 = 768 rows of 1280 pixels The higher the number of pixels the better quality of image as more detail is included The higher the number of pixels the larger the file size as information about more pixels is stored What is the difference in file size between an image that is 800x600 and one which is 1280x768 assuming 8 bit colour is being used in both? How does DPI affect the quality of image? Vector images tend to be a lot smaller why?

Image Representation – Colour Depth Bitmap/Raster images also have a colour depth - this is the number of different colours which each pixel can be Typical colour depths Bits per Pixel Colours Available 1 2 4 16 8 256 65536 24 16,777,216 32 16,777,216 + transparency 6 bit NES Graphics c1987 15 bit SNES Graphics c1992 What is the difference in file size of an 1280x768 that using 16-bit colour and one that uses 32-bit colour?

Image Representation – Size Change When a Bitmap/Raster image is shrunk pixels get compressed and some will be removed = quality loss When a Bitmap/Raster image is stretched the pixels will either be enlarged or software will “fill-in the gaps” When a Vector image is stretched or shrunk the calculations are simply performed again proportionally What is the result in terms of quality in changing a bitmap/raster and a vector image?

Image Representation – Compression Data Compression [TechQuickie] Lossy v Lossless Compression Image Representation – Compression The size of storage required by a Bitmap/Raster image can be decreased by the use of compression Lossy Compression Higher compression ratio but detail is lost from the picture Lossless Compression Lower compression ratio but detail loss is minimal Briefly describe how the different compression techniques work

Activity Bitmap vs Vector Carry out independent research and produce written notes to revise from that cover How bitmap/raster image data is stored and represented within a computer system – include the formula in words that can be used to calculate the storage requirements of a bitmap image The factors which affect the choice of resolution used The impact of image resolution on the way images are stored and represented – include an example storage requirement calculation The factors which affect the choice of sample /bit depth used The impact of sample / bit depth on the way the image data is stored and images are displayed – include an example storage requirement calculation Different types of compression and example file types The effects of compression on image data

Exam Questions Q1 CyberCar Systems is a computing manufacturer that specialises in physical computing and robotics. It is currently developing a self-driving car. The software for the user interface that the driver will see is encoded using the ASCII character set. Explain why ASCII may not be a good character set to use. [2 marks] Q2 A graphic designer uses computer systems to store and manipulate digital images for use in printed and digital products. The images used in the designs are acquired from a range of sources, including mobile phones and the web. They are also created using graphics software. The graphic designer uses different bitmap file formats and vector images. Analyse the impact that digital image representation has on the way images are viewed, stored and used. [12 marks]