Text and Images Key Revision Points.

Slides:



Advertisements
Similar presentations
Information Representation
Advertisements

Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
The Binary Numbering Systems
©Brooks/Cole, 2003 Chapter 2 Data Representation.
Chapter 2 Data Representation. Define data types. Visualize how data are stored inside a computer. Understand the differences between text, numbers, images,
Higher Computing Data Representation.
Lecture 5.
Computing Higher - Unit 1… Computer Systems 1 Higher Computing Unit 1 – Topic 1 Data Representation.
Bits & Bytes: How Computers Represent Data
Chapter 1 Data Storage(2) Yonsei University 1 st Semester, 2014 Sanghyun Park.
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.
Data Representation S2. This unit covers how the computer represents- Numbers Text Graphics Control.
Higher Computing Computer Systems S. McCrossan 1 Higher Grade Computing Studies 1. Data Representation Data Representation – Why do we use binary? simplicity,
Shawlands Academy Higher Computing Data Representation.
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.
Lecture 5. Topics Sec 1.4 Representing Information as Bit Patterns Representing Text Representing Text Representing Numeric Values Representing Numeric.
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.
Data Representation The storage of Text Numbers Graphics.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
DATA REPRESENTATION CHAPTER DATA TYPES Different types of data (Fig. 2.1) The computer industry uses the term “MULTIMEDIA” to define information.
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.
Data Representation. What is data? Data is information that has been translated into a form that is more convenient to process As information take different.
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
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
 Computers are 2-state devices › Pulse – No pulse › On – Off  Represented by › 1 – 0  BINARY.
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
OBJECTIVE AND OUTCOMES Objective: To be able to create images in binary format and understand the part metadata plays in recreating images. Outcomes:
THE CODING SYSTEM FOR REPRESENTING DATA IN COMPUTER.
DATA Unit 2 Topic 2. Different Types of Data ASCII code: ASCII - The American Standard Code for Information Interchange is a standard seven-bit code that.
1.4 Representation of data in computer systems Character.
Nat 4/5 Computing Science Data Representation Lesson 3: Storing Text
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.
GCSE COMPUTER SCIENCE Topic 3 - Data 3.2 Data Representation.
Images Data Representation.
Data Representation Images.
Representing images.
Denary to Binary Numbers & Binary to Denary
Computer Systems Nat 4/5 Data Representation Lesson 4:
Binary 4 File Sizes.
BTEC NCF Dip in Comp - Unit 02 Fundamentals of Computer Systems Lesson 10 - Text & Image Representation Mr C Johnston.
Intermediate 2 Computing
Data Encoding Characters.
Representing Nonnumeric Data
Folders out, planners out…
Data Representation Question: Characters
Images in Binary.
Bitmap, Vector, Pixels, Resolution, Metadata.
Representing Images 2.6 – Data Representation.
Ch2: Data Representation
Summer Term Year 10 Slides
1. Explain how ASCII is used to represent text in a computer system
Chapter 2 Data Representation.
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)
Plan Attendance Files Posted on Campus Cruiser Homework Reminder
How Computers Store Data
Learning Intention I will learn how computers store text.
Option: Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
Option: Data Representation
WJEC GCSE Computer Science
ASCII and Unicode.
Presentation transcript:

Text and Images Key Revision Points

Text - ASCII The problem: Representing text strings, such as “Hello world”, in a computer Character set maps letters (or symbols) to numeric values which can be stored as binary numbers One common coding system/character set is ASCII 7-bit code - 8th bit is unused (or used for a parity bit) – still requires one byte of storage per character 2^7 = 128 codes = 128 unique characters can be represented in the basic ASCII character set

Text – Extended ASCII and Unicode Extended ASCII uses all 8 bits – 2^8 -128 codes = 128 unique characters can be represented in the extended ASCII character set Still not enough e.g. no £ sign or “foreign” characters The Unicode character set uses 16 bits per character. Therefore, the Unicode character set can represent 216, or over 65 thousand characters

Text - Next In Sequence… “What is the binary value of the next ASCII letter in the sequence. A=1000001, B=1000010, E=????” To get the answer: Convert to denary first E.g. 1000001=65, 1000010=66… Work out next denary number(s) in sequence e.g. C=67, D=68, E=69 Convert to binary E.g. E= 69 = 1000101

Images Bitmap images are made up of individual pixels (picture elements). In memory or storage the colour of each pixel is represented as a binary number. The image is therefore stored as a series of binary numbers Colour depth or bit depth describes how many memory bits are used to store the colour of each pixel

Images – Bit Depth The more bits you use for storing data about each pixel the more unique colours an image can have: A 1 bit image can only have 2 colours An 8 bit image can have 256 colours A 24 bit image can have 16 million + colours!

Images – Bit Depth 1 bit – 2 unique colours 4 bit – 16 unique colours

Formula Max. number of unique colours = 2 to the power of bits E.g. 4 bit image = 2 ^ 4 = 16 colours E.g. 8 bit image = 2 ^ 8 = 256 colours

Resolution Resolution is the number of pixels in an image. Higher resolution  better quality images Lower resolution  pixilation Measured in PPI (pixels per inch) 40PPI means 1600 pixels in a one inch square 80PPI means 6400 pixels in a one inch square

File Size Without this info the image wont be displayed correctly The higher the bit (colour) depth and resolution the bigger the file Theoretically we can calculate the size of an image file e.g. 1 inch 40PPI image using a bit depth of 4 40 x 40 pixels = 1600 pixels in total. Each pixel requires 4 bits so 4 x 1600 = 6400bits To convert to bytes divide by 8 (8 bits in a byte). 6400 bits = 800 bytes In reality the file will be bigger as it also needs to contain metadata – data about the image File format Height Width Colour depth Resolution Without this info the image wont be displayed correctly

Textbook Textbook pages 72-73