GRAPHICS Source: www.aifweb.com.

Slides:



Advertisements
Similar presentations
Image Data Representations and Standards
Advertisements

Computer Systems Nat 4/5 Data Representation Lesson 4: Storing Graphics.
A Digital Imaging Primer Nick Dvoracek Instructional Resources Center University of Wisconsin Oshkosh.
Bit Depth and Spatial Resolution SIMG-201 Survey of Imaging Science © 2002 CIS/RIT.
Resolving the Problem Resolution: Concepts & Definitions.
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
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
1 Internet Graphics. 2 Representing Images  Raster Image: Images consist of “dots” of color, not lines  Pixel: Picture element-tiny rectangle  Resolution:
Graphical images Bit-mapped (or raster-based) image: Matrix describing the individual dots that are the smallest elements (pixels) of resolution on a computer.
Prepared by George Holt Digital Photography BITMAP GRAPHIC ESSENTIALS.
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.
Image Storage Bitmapped Graphics – in which an image is represented as a collection of dots Vector Graphics – in which an image is represented as a set.
Vector vs. Bitmap
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Image Representation. Objectives  Bitmaps: resolution, colour depth and simple bitmap file calculations.  Vector graphics: drawing list – objects and.
Digital Cameras And Digital Information. How a Camera works Light passes through the lens Shutter opens for an instant Film is exposed to light Film is.
Graphics workshop Library and Information Services University of St Andrews.
Marr CollegeHigher ComputingSlide 1 Higher Computing: COMPUTER SYSTEMS Part 1: Data Representation – 6 hours.
ADOBE PHOTOSHOP VECTOR VS RASTER. Pixel A pixel is the fundamental unit of an image in Photoshop. It is a small square block of color. An image often.
Graphics An image is made up of tiny dots called pixels (“picture elements”) The resolution determines the.
CS1033 Pixel and Resolution
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. 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.
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.
Digital Images are represented by manipulating this…
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.
Representation of Data in Computer Systems
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.
Demystifying the Pixel. What is a Pixel The smallest unit of measurement in a image It contains color space information in RGB, CMYK, HSB Resolution information.
Computer Systems Nat 5 Computing Science Data Representation
Unit 2.6 Data Representation Lesson 3 ‒ Images
Storing Graphics Nat 5 Data Representation Lesson 4a: Storing Graphics
Images Data Representation.
Data Representation Images.
Data Representation.
Representing images.
Computer Systems Nat 4/5 Data Representation Lesson 4:
Binary Representation in Audio and Images
Computer Science Higher
Vector vs. Bitmap.
Pixel, Resolution, Image Size
How to Convert Pictures into Numbers
Computer Graphics Different Images File.
Compression (of this 8-bit 397,000 pixel image):
Intermediate 2 Computing
Raster Images CPSC 1030.
Learning Intention I will learn how a computer stores graphics.
LET’S LEARN ABOUT GRAPHICS!
File size and image quality
An Introduction to Scanning and Storing Photographs and Graphics
Data Representation.
Representing Images 2.6 – Data Representation.
What do these words mean to you?
MED 2001 Advanced Media Production
Summer Term Year 10 Slides
Web Programming– UFCFB Lecture 7
Multimedia System Image
Computer Systems Nat 4.5 Computing Science Data Representation
Computer Systems Nat 4/5 Data Representation Lesson 4:
Year 8 Unit 2 Bitmap Graphics
Presentation transcript:

GRAPHICS Source: www.aifweb.com

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 of pixels that make up a screen image, or the number of dots that make up a printed image. The more dots that are used to create an image, then the more detail the image can resolve and the sharper it appears when viewed. When using bitmap graphics, whatever resolution is chosen, information needs to be stored for each pixel or printer dot. This means the higher the resolution, the more information needs to be stored for an image of any given size. This does not apply when using vector graphics, as the decision about resolution, only needs to be made when the image is printed, or exported as a bitmap.

Colour Depth Colour depth is used to describe the maximum number of colours that are used in the image. The higher the number of colours then the more realistic the image will appear. Once again, with bitmap images, the chosen colour depth will affect the final file size. Let's look at how these colour models work, although these examples refer to pixels, the same applies to dots in a printed image.

Colour Depth Monochrome (e.g. Black & White) This has the lowest storage requirement, because we only need to know whether the pixel should be on or off, the information for each pixel an be stored in a Bit, or put another way, we can store the information for eight pixels in one Byte of storage space. Greyscale (256 shades of Grey) Because a Byte can be one of 256 values, then each pixel requires one Byte of storage space.

Colour Depth 256 Colours (Palleted) This format allows each pixel to be one of 256 colours stored in a Colour Look up Table (CLUT), more commonly referred to as the palette. The palette is also saved with the file so this adds slightly to the file size, but the information for each pixel is stored in one Byte of storage space. Note. The GIF format, is a variation of the above, in that it allows you to decide upon the size of the palette stored with the image, this allows you to reduce the overall file size, if your image does not use many colours. Generally 256 colour formats store the whole 256 colour palette, whether the image uses them or not.

Colour Depth 16 Bit Colour (High Colour) Though not quite as common now as a few years ago, this format uses two Bytes to store the information, one Byte for the colour and one Byte for the shade of the colour. This gave a total of 65,536 colours (256x256). So each pixel requires two Bytes of storage space. 24 Bit Colour This format stores the Red, Green and Blue value for each pixel. Each of these can be one of 256 values, giving a total of 16,777,216 colours (256x256x256). Using 16 million colours allows for very photorealistic images, but increases the storage space requirements to three Bytes for each pixel.

Colour Depth 32 Bit Colour (True Colour) This format uses the same format as above for the Red, Green and Blue colours but also stores transparency information for each pixel. This allows each pixel to be one of 256 values from fully opaque to fully transparent. Because of the extra transparency information, the storage space for each pixel now requires four Bytes.

calculations Using simple calculations, it is possible to estimate the approximate storage space or memory required for a particular image. Here are some examples. Creating bitmap images for a slide show First of all calculate the number of pixels, let's assume a screen resolution of 800x600. This gives 480,000 pixels. We will use a 24 Bit colour depth. This means we will need three Bytes for each pixel, or 1,440,000 to display the image. Scanning a photo for retouching. Let's imagine that you have been asked to repair damage to an old 5" x 3" black and white photograph.

calculations If we want to print the final result at 600 dpi, then we will need to scan at the same resolution. So our 5" x 3" photograph will use 3000 x 1800 dots or 5,400,000 dots in total. Because it is a black and white photo, we can use greyscale (one byte per dot), which will require 5.4 Mb for the initial scan. If it were a more recent photo, let's say 6" x 4" colour. Then using the same resolution with a 24 Bit colour depth would mean 25,920,000 dots. That's 25 Mb for the scan. I'll let you do the calculations for a 10" x 8" colour photo!