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.

Slides:



Advertisements
Similar presentations
Technology ICT Option: Data Representation. Data Representation In our everyday lives, we communicate with each other using analogue data. This data takes.
Advertisements

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
Bit Depth and Spatial Resolution SIMG-201 Survey of Imaging Science © 2002 CIS/RIT.
Output Primitives Computer Graphics.
Resolving the Problem Resolution: Concepts & Definitions.
March 2006Taner Erig - EMU2-1 Metamorphosis of Information How is information represented and how do computers store information?
Bitmapped Images 27 th November 2014 With Mrs
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 ?
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.
Image processing Lecture 4.
1 Internet Graphics. 2 Representing Images  Raster Image: Images consist of “dots” of color, not lines  Pixel: Picture element-tiny rectangle  Resolution:
Bits & Bytes (are not junk food!). Bit is short for binary digit, the smallest unit of information in the digital world. A single bit can hold only one.
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.
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.
Colours and Computer Jimmy Lam The Hong Kong Polytechnic University.
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.
Images Data Representation. Objectives  Understand the terms bitmap & pixel  Understand how bitmap images are stored using binary in a computer system.
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.
File Sizes & Storage Requirements.  An image has a width in pixels and a height in pixels  Start by calculating the number of pixels all up  640 x.
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.
Graphics: Conceptual Model Real Object Human Eye Display Device Graphics System Synthetic Model Synthetic Camera Real Light Synthetic Light Source.
Ch 6 Color Image processing CS446 Instructor: Nada ALZaben.
Computer Systems Nat 4.5 Computing Science Data Representation Lesson 4: Representing and Storing Graphics EXTENSION.
Digital imaging. Two types of graphic Bitmap Vector.
Digital Imaging Fundamentals Ms. Hema C.R. School of Mechatronic Engineering.
Color Web Design Professor Frank. Color Displays Based on cathode ray tubes (CRTs) or back- lighted flat-screen Monitors transmit light - displays use.
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.
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.
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.
Digital Graphics Vocabulary Texas State University CI5363 Florence Yang.
Scanner Scanner Introduction: Scanner is an input device. It reads the graphical images or line art or text from the source and converts.
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
Software Design and Development Storing Data Part 2 Text, sound and video Computing Science.
Data Representation. In our everyday lives, we communicate with each other using analogue data. This data takes the form of: Sound Images Letters Numbers.
Text and Images Key Revision Points.
Computer Systems Nat 5 Computing Science Data Representation
Unit 2.6 Data Representation Lesson 3 ‒ Images
BITMAPPED IMAGES & VECTOR DRAWN GRAPHICS
Data Representation: Sound
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Images Data Representation.
Data Representation Images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Computer Science Higher
Pixel, Resolution, Image Size
Binary 4 File Sizes.
Intermediate 2 Computing
Learning Intention I will learn how a computer stores graphics.
GRAPHICS Source:
Computer Systems Nat 4/5 Computing Science Computer Structure:
Images in Binary.
Data Representation.
Bitmap, Vector, Pixels, Resolution, Metadata.
Representing Images 2.6 – Data Representation.
What do these words mean to you?
Computer Systems Nat 4.5 Computing Science Data Representation
Option: Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
Option: Data Representation
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

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 will take to store the image on the disk The amount of space it will take to store the image on the disk The display size for a particular output device. The display size for a particular output device.

In this lesson we will use image size to refer to the number of pixels in a bitmapped image. The image size of a bitmapped image can be described by the horizontal (H) and vertical (V) pixel count. The total number of pixels in an image is found by multiplying the horizontal and vertical pixel counts H x V = total pixel count 640 pixels wide (V) and 320 pixels high. Calculate the total number of pixels

Each pixel of the image contains unique colour information. The amount of colour information, colour depth, is described in the unit of bits. b = number of bits 2 b = number of possible display colours

An 8-bit image uses 8 places of binary code to code for the colours. 2 8 = 2*2*2*2*2*2*2*2 = 256 In a one bit image, each pixel has either a 0 or a 1 to code colour so only two colours- black or white-- are used. An 8-bit image uses 8 places of binary code to code for the colours. That allows a palette of 2 8 (2 to the eighth power) = 256 colours or 256 shades of gray.

A color depth of 4 bits would be 2 times itself 4 times: 2 x 2 x 2 x 2 = 16 colours A color depth of of 8 bits would be 2 times itself 8 times: 2 x 2 x 2 x 2 x 2 x 2 x 2 x 2 = 256 colours. A 24-bit colour image works with a palette of over 16.7 million colours. The image must set aside the full 24 bits of computer memory for each pixel to give it the flexibility of displaying any of those possible colours. Most images you see either have a colour depth of either 8 or 24 bits.