Image Representation CS105. Data Representation Text representation – ASCII character set – Unicode – Data compression Images!

Slides:



Advertisements
Similar presentations
Introduction to Computer Graphics Raster Vs. Vector COMMUNICATION TECHNOLOGY.
Advertisements

Information Representation
L.Ghadah R. Hadba CT1514-L1.  Computer Graphics :refers to processing of creating a new image from Geometry, Lighting parameters, Materials and Textures.Using.
Dale & Lewis Chapter 3 Data Representation. Representing color Similarly to how color is perceived in the human eye, color information is encoded in combinations.
Graphics in the web Digital Media: Communication and Design
Introduction to Computer Graphics
Graphics and Animation Chapter 8. 8 Graphics in Multimedia Graphics are an element that virtually all multimedia applications include.
Graphics and Images September 28, Unit 3.
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.
Image and Sound Editing Raed S. Rasheed Image Image. Digital image. – Raster images. – Vector Images. – Stereo Images. – Image File Formats Lossless.
Manipulating Images Image A visual representation of something that is seen in real life. It can be two-dimensional or three-dimensional A visual representation.
Introduction to Computer Graphics Raster Vs. Vector TGJ 2OI St. Christopher C.S.S. 4 Introduction to Computer Graphics.ppt.
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.
Zinnia Bell. RAWimages are image files that have not yet processed, they contain minimally processed data from the image sensor of either a image scanner,
CS 1308 Computer Literacy and the Internet. Creating Digital Pictures  A traditional photograph is an analog representation of an image.  Digitizing.
COMP Bitmapped and Vector Graphics Pages Using Qwizdom.
Module Code: CU0001NI Technical Information on Digital Images Week -2.
Lecture 4 - Introduction to Computer Graphics
THE COLORS OF LIGHT RED, GREEN and BLUE
Objective Understand concepts used to create digital graphics. Course Weight : 15% Part Three : Concepts of Digital Graphics.
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.
Presentation Design: Graphics. More About Color “Bit depth” of colors -- This is based on the smallest unit of information that a computer understands.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 14 Introduction to Computer Graphics.
Chapter 3 Representation. Key Concepts Digital vs Analog How many bits? Some standard representations Compression Methods 3-2.
TYPES OF GRAPHICS TECHNOLOGICAL DESIGN. GRAPHIC DESIGN DEFINITION Visual problem solving that utilizes shapes, images, text, color, etc. to communicate.
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.
1 Ethics of Computing MONT 113G, Spring 2012 Session 10 HTML Tables Graphics on the Web.
Computer Concepts 2014 Chapter 8 Digital Media. 8 Chapter Contents  Section B: Bitmap Graphics  Section C: Vector and 3-D Graphics Chapter 8: Digital.
Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 3 This presentation © 2004, MacAvon Media Productions Introduction to Computer Graphics.
Image formats. Basic terminologies… Pixels: Pixels are the building blocks of every digital image. a pixel is a single point in a graphic image. Resolutions:
Computer Images Can store color info about each pixel, but makes file BIG Compression for Web 15.
Graphics workshop Library and Information Services University of St Andrews.
Image Representation. Digital Cameras Scanned Film & Photographs Digitized TV Signals Computer Graphics Radar & Sonar Medical Imaging Devices (X-Ray,
Lecture 16 Image Document Formats. Bitmap vs. Vector Images Bitmaps do not generally.
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.
2D Graphics Theory & Principles. Single Point Smallest addressable area on screen or digital image.
Chapter 2 File Format Objectives (1 of 2) Identify the difference between vector based graphics and bitmap-based graphics Clarify bitmap and vector graphic.
Unit 1: Task 1 By Abbie Llewellyn. Vector Graphic Software (Corel Draw) Computer graphics can be classified into two different categories: raster graphics.
Quiz # 1 Chapters 1,2, & 3.
Chapter 2 File Format Objectives (1 of 2) Identify the difference between vector based graphics and bitmap-based graphics Clarify 3 types of vector programs.
Color and Images. Color The natural colors we see and the colors we see on computer monitors are different. CMYK -natural RGB -monitor.
Mirjana Devetakovic, M.Sc. CAAD - Images Beograd, 2011.
Raster Graphics 2.01 Investigate graphic image design.
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 Concepts Presentation
Exploring Web Design Chapter 1. Objectives Develop a new perspective of the WWW Learn what makes a website good or bad Discover how to apply objective.
Digital Graphics for Computer Games Pixels Types of Digital Graphics (Raster and Vector) Compression.
Image File Formats By Dr. Rajeev Srivastava 1. Image File Formats Header and Image data. A typical image file format contains two fields namely Dr. Rajeev.
Image File Formats Harrow Computer Club – Wed, 1 Dec 2010 Bob Watson MA CMath MIMA MBCS.
Graphics and Image Data Representations 1. Q1 How images are represented in a computer system? 2.
BITMAPPED IMAGES & VECTOR DRAWN GRAPHICS
Graphics vs. Images A graphic is any type of visual presentation that can be displayed on a physical surface like a sheet of paper, wall, poster, blackboard,
DIGITAL MEDIA FOUNDATIONS
Types of Graphics Technological Design.
Sampling, Quantization, Color Models & Indexed Color
Binary Representation in Audio and Images
How to Convert Pictures into Numbers
RESEARCH AND APPLY GRAPHIC DESIGN TECHNIQUES #3
Raster Images CPSC 1030.
Chapter 3:- Graphics Eyad Alshareef Eyad Alshareef.
Graphics and Animation
Introduction to Computer Graphics
Graphics Basic Concepts.
Representing Images 2.6 – Data Representation.
Web Design and Development
Color and Images.
Multimedia System Image
Basic Concepts of Digital Imaging
Graphics and Animation
Presentation transcript:

Image Representation CS105

Data Representation Text representation – ASCII character set – Unicode – Data compression Images!

What is an image? Rectangular grid of pixels- 5x5 grid – If we are using 1 bit per cell, how many bits are needed to present the picture? What is a pixel? – Point/Cell in the image that contains color data – Each pixel is made up of bits Resolution: Details contained in an image – Defined by the number of pixels [0,0][0,1][0,2][0,3] [1,0] [0,4] [1,1][1,2][1,3][1,4] [2,0][2,2][2,1][2,3][2,4] [3,0][3,2][3,1][3,3] [4,0] [3,4] [4,1][4,4][4,3][4,2] 5 x5 grid

Digital images George Seurat: Sunday afternoon on the island of La Grande Jatte ( )

Representing Color R ed G reen B lue

Representing Color Computer graphics/Images: RGB R : 0 to 255, G : 0 to 255, B : 0 to 255 Red 255 Green 255 Blue Color White Yellow

Binary Images Remember, everything on a computer is stored as 0s and 1s. Thus, we must interpret these numbers as different forms of data. One bit (binary digit) can be either a 0 or a 1. –Therefore, it can only represent two possibilities: hot or cold, black or white, on or off, etc… 1 bit per pixel

Bit Color Depth 1 bit2 bits4 bits8 bits24 bits 24 bit TrueColor can represent more than 16.7 million unique colors. More colors than the human eye can distinguish! 1= ON 0 =OFF Different shades of gray

Raster vs Vector Graphics Raster graphics: made up of pixels – Resolution dependent – Cannot be scaled without losing quality – Can represent photo realistic elements better than vector graphics Vector graphics: geometric primitives, composed of paths – Mathematical equations – Resolution independent – Can be scaled to any size without losing quality – Best for cartoon-like images – 3D modeling

Raster vs Vector Graphics Raster graphics - Image formats: – BMP – GIF – JPEG – PNG Vector graphics - Image formats: – Flash – Scalable vector graphics (SVG) – CDR (corelDraw) – AI (Adobe Illustrator)

Raster Graphics BMP (bitmaps) – Simple structure – Pixel color values left to right, top to bottom – Can be compressed using run-length encoding GIF (graphics interchange format) – 8-bit palette (any 256 colors) – Small size – Simple images: line art, shapes, logos – Lossless compression: covering areas with single color JPEG (joint photographic experts group) – Is a compression method stored in JFIF (JPEG file interchange format) – Lossy compression: Averages color hues over short distances Taking advantage of limitations of our visual system, discarding invisible information – Compression ratio is usually 0.1 – Structure: sequence of segments. Marker followed by a definition of the marker

Vector Graphics SVG (Scalable Vector Graphics) – Text based scripts – Text compression – Compression ratio can be as small as 0.2 – Great for web-based imaging

Extra Credit Opportunity – Powerpoint presentation – One letter grade of your overall grade (e.g., B+ to A-) – 5 minute presentation, – Signup sheet – Expectations: Effort, Presentation layout, Design & Organization – Topics:  YOU: Tell us about yourself, where are you from, what are your interests, hobbies, jobs, favorite books, music, TV shows, activities, experiences, values – Optional Topics:  What is your (least) favorite cuisine/food and why? Details, history, recipes, technical facts  Useless piece of technology/equipment (can be more than one).  Top 3 strangest hobbies/habits you think people have