Computer Graphics.

Slides:



Advertisements
Similar presentations
2.01 Investigate graphic image design. Image Resolution.
Advertisements

Real-Time Rendering TEXTURING Lecture 02 Marina Gavrilova.
CS6500 Adv. Computer Graphics © Chun-Fa Chang, Spring 2003 Object-Order vs. Screen-Order Rendering April 24, 2003.
Global Illumination May 7, Global Effects translucent surface shadow multiple reflection.
Graphics Systems I-Chen Lin’s CG slides, Doug James’s CG slides Angel, Interactive Computer Graphics, Chap 1 Introduction to Graphics Pipeline.
Copyright © 2006 by The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Technology Education Copyright © 2006 by The McGraw-Hill Companies,
Introduction to Computer Graphics
Vector vs. Bitmap SciVis V
Object Orientated Data Topic 5: Multimedia Technology.
V Obtained from a summer workshop in Guildford County July, 2014
BITMAP & VECTOR GRAPHICS Art Fundamentals of Graphic Design.
Bitmap vs. Vector How computers work with photographs and drawings.
MULTIMEDIA TECHNOLOGY SMM 3001 MEDIA - GRAPHICS. In this chapter how the computer creates, stores, and displays graphic images how the computer creates,
May Melissa Albo #1 Sagrario Casillas #4 Angela Durán #8 Daniela Martínez #16.
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,
Dedicated Vector and Bitmap editing software.
Computer Graphics Computer Graphics is everywhere: Visual system is most important sense: High bandwidth Natural communication Fast developments in Hardware.
Lecture 4 - Introduction to Computer Graphics
Advanced Computer Graphics March 06, Grading Programming assignments Paper study and reports (flipped classroom) Final project No written exams.
Presentation Design: Graphics. More About Color “Bit depth” of colors -- This is based on the smallest unit of information that a computer understands.
JRN 302: Introduction to Graphics and Visual Communication - Raster and Vector Files Tuesday, 9/8/15.
Vector vs. Bitmap
Introduction to Textures and Skins Chapter 8 & 9 3D Game Programming All-in-One By Ken Finney.
Bitmap Vs. Vector Graphics. To create effective artwork, you need to understand some basic concepts about vector graphics versus bitmap images, resolution,
Computer Graphics An Introduction. What’s this course all about? 06/10/2015 Lecture 1 2 We will cover… Graphics programming and algorithms Graphics data.
C O M P U T E R G R A P H I C S Guoying Zhao 1 / 14 C O M P U T E R G R A P H I C S Guoying Zhao 1 / 14 Going-through.
2.01D Investigate graphic image design. Image Resolution.
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.
CS- 375 Graphics and Human Computer Interaction Lecture 1: 12/4/1435 Fundamental Techniques in Graphics Lecturer: Kawther Abas.
Raster vs Vector Graphics And Other Digital Terms.
Vector Graphics Multimedia Technology. Object Orientated Data Types Created on a computer not by sampling real world information Details are stored on.
Digital Media Dr. Jim Rowan ITEC So far… We have compared bitmapped graphics and vector graphics We have discussed bitmapped images, some file formats.
File Types. Terms Multimedia- the integration of text, sound, video and/or animation into a document Letters, brochures, newsletters, web pages or presentations.
Chapter 8B Graphics and Multimedia. 8B-2 Graphic File Formats Bitmapped images –Most common image type –Also called raster images –Image is drawn using.
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.
Bounding Volume Hierarchy. The space within the scene is divided into a grid. When a ray travels through a scene, it only passes a few boxes within the.
Resources used for marketing the product By Jamie Colclough.
By Nathan Lowe.  Graphic cards are high specification cards with lots of memory and fast processors providing lots of power for the updated games or.
By tom squire.  Graphic cards are made of millions of dots called pixels. Graphic cards take data from the CPU and turn it into a picture. At most common.
Guilford County SciVis V104.03
Section 8.1 Section 8.2 Create a custom theme Design a color scheme
Graphics and Multimedia
Hardware research By Hollie Willis.
Buffers and texture mapping
Photorealistic Rendering vs. Interactive 3D Graphics
Screen and Image Resolution
Vector vs. Bitmap.
CSI-447: Multimedia Systems
Chapter 10 Computer Graphics
Image Formats.
Lecture Week 4 Images.
Presenter Name: Mahmood A.Moneim Supervised By: Prof. Hesham A.Hefny
Dr. Jim Rowan ITEC 2110 Wednesday, September 12
Interactive Computer Graphics
McGraw-Hill Technology Education
© University of Wisconsin, CS559 Fall 2004
Graphics and Animation
Computer Graphics.
Introduction to Computer Graphics
Screen and Image Resolution
Digital Media Dr. Jim Rowan ITEC 2110.
Mapping.
CS5500 Computer Graphics May 29, 2006
CSCE 441: Computer Graphics Ray Tracing
2.01 Investigate graphic image design.
Lecture 4 - Introduction to Computer Graphics
Graphics and Animation
Dr. Jim Rowan ITEC 2110 Vector Graphics II
Screen and Image Resolution
Presentation transcript:

Computer Graphics

Two File Types: Vector & Raster

Example: Line

end Vector direction start

Vector length angle midpoint etc…

Vectors: Creates easily defined and manipulated objects, like lines, curves, boxes, cylinders, etc… Vector data can be in 2D or 3D. Vector files are relatively small in size.

Problem: Not all information is based on objects. (i.e. photographs and paintings) No real practical way to experience vector data. (i.e. monitors and printers use a grid of dots or pixels.)

Raster

Pixel

Raster: Best when used to represent pictures or images. Raster data is very portable with common, device independent formats (i.e. computer, camera, etc…). Pixels are easily viewed on a monitor or printed on paper.

Problem: Not all information is based on images. (i.e. lines, curves, boxes, cylinders, etc…) Difficult to modify. Limited to 2D. File sizes can be very large. Aliasing is a problem

Problem: aliasing

Solution 1. anti-aliasing

Solution 2. Use a lot of “small” pixels

Raster (pixels) vs Vectors (geometry)

OK, So let’s make a wall

Pixels?

or Geometry?

How about a brick wall?

Geometry?

or Pixels?

Geometry: Pros: Fully three-dimensional Casts shadows, reflections, etc… Easier to position and modify Cons: Takes more time to calculate (render) - Slow Complex textures hard to model

Pixels: Pros: Takes less time to calculate (render) – Fast Easily represents complex textures Cons: Can be difficult to accurately position Modification requires different software Usually requires external files (texture maps)

Example: Still Image Usually scrutinized – More detail is required.

Example: Still Image Large images need lots of Pixels, resulting in long calculations, or render times (above image over 1 hour for 3000x2000 pixels).

Example: Animation Individual frames less scrutinized – need less detail.

Example: Animation Smaller images require fewer pixels, thus shorter rendering times per frame (above image 10 minutes per frame). BUT,….

Example: Animation Long animations require many frames (above animation has 2000 frames).

Example: Animation At 10 minutes a frame, entire animation requires 20,000 minutes to complete (about 14 machine days).

Example: Video Games Action and interactivity demands immediate or real-time rendering (times).

Example: Video Games To lower rendering times, game designers use “low polygon modeling” and extensive texture mapping. Simple geometry + pixels = fast rendering times.