Graphics Systems and Models Chapter 1. CS 480/680 2Chapter 1 -- Graphics Systems and Models Introduction: Introduction: Computer Graphics Computer Graphics.

Slides:



Advertisements
Similar presentations
Computer Graphics- SCC 342
Advertisements

Fundamentals of Computer Graphics Part 1
Graphics Pipeline.
CHAPTER 12 Height Maps, Hidden Surface Removal, Clipping and Level of Detail Algorithms © 2008 Cengage Learning EMEA.
Chapter 6: Vertices to Fragments Part 2 E. Angel and D. Shreiner: Interactive Computer Graphics 6E © Addison-Wesley Mohan Sridharan Based on Slides.
Vertices and Fragments I CS4395: Computer Graphics 1 Mohan Sridharan Based on slides created by Edward Angel.
1 King ABDUL AZIZ University Faculty Of Computing and Information Technology CS 454 Computer graphicsIntroduction Dr. Eng. Farag Elnagahy
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 Models and Architectures Ed Angel Professor of Computer Science, Electrical and Computer.
Ch 1 Intro to Graphics page 1CS 367 First Day Agenda Best course you have ever had (survey) Info Cards Name, , Nickname C / C++ experience, EOS experience.
CSC 461: Lecture 2 1 CSC461 Lecture 2: Image Formation Objectives Fundamental imaging notions Fundamental imaging notions Physical basis for image formation.
CHAPTER 7 Viewing and Transformations © 2008 Cengage Learning EMEA.
Computer Graphics/and Multimedia CMM472/CIT773 What is CG ?, History of CG, Course Overview.
IE433 CAD/CAM Computer Aided Design and Computer Aided Manufacturing Part-2 CAD Systems Industrial Engineering Department King Saud University.
1 Perception, Illusion and VR HNRS 299, Spring 2008 Lecture 19 Other Graphics Considerations Review.
1 Chapter 1: Graphics Systems and Models. 2 Applications of C. G. – 1/4 Display of information Maps GIS (geographic information system) CT (computer tomography)
B a c kn e x t h o m e CSCI 346 Chapter 1 Graphics Systems and Models.
C O M P U T E R G R A P H I C S Guoying Zhao 1 / 46 C O M P U T E R G R A P H I C S Guoying Zhao 1 / 46 Computer Graphics Introduction II.
Chapter 1 Graphics Systems and Models. What is Computer Graphics? Ed Angel Professor of Computer Science, Electrical and Computer Engineering, and Media.
Computer Graphics/and Multimedia CMM472/CIT773 What is CG ?, History of CG, Course Overview.
CHAPTER 4 Window Creation and Control © 2008 Cengage Learning EMEA.
Graphics System CSC 2141 Introduction to Computer Graphics.
ISC/GAM 4322 ISC 6310 Multimedia Development and Programming Unit 1 Graphics Systems and Models.
Technology and Historical Overview. Introduction to 3d Computer Graphics  3D computer graphics is the science, study, and method of projecting a mathematical.
1 Computer Graphics Week3 –Graphics & Image Processing.
Computer Graphics Computer Graphics is everywhere: Visual system is most important sense: High bandwidth Natural communication Fast developments in Hardware.
Computer Graphics in Java1 Objects and Viewers Two basic entities (one object seen from two different positions) :
Computer Graphics.
1 By Dr. Hany Elsalamony. 2 3  Computer graphics generally means creation, storage and manipulation of models and images  Such models come from diverse.
Chapter 1: Graphics Systems and Models Instructor: Shih-Shinh Huang 1.
Advanced Computer Graphics March 06, Grading Programming assignments Paper study and reports (flipped classroom) Final project No written exams.
Using OpenGL in Visual C++ Opengl32.dll and glu32.dll should be in the system folder Opengl32.dll and glu32.dll should be in the system folder Opengl32.lib.
Graphics Architectures & OpenGL API Introduction Angel Angel: Interactive Computer Graphics5E © Addison-Wesley
MIT EECS 6.837, Durand and Cutler Graphics Pipeline: Projective Transformations.
UNIT I 2D PRIMITIVES INTRODUCTION 1 SNSCE/IT/ARUNA.
1 Graphics CSCI 343, Fall 2015 Lecture 1 Introduction to Graphics Read: Chapter 1 of textbook.
Graphics Systems and OpenGL. Business of Generating Images Images are made up of pixels.
COMPUTER GRAPHICS Hochiminh city University of Technology Faculty of Computer Science and Engineering CHAPTER 01: Graphics System.
CSC 461: Lecture 3 1 CSC461 Lecture 3: Models and Architectures  Objectives –Learn the basic design of a graphics system –Introduce pipeline architecture.
CS 480/680 Computer Graphics Image Formation Dr. Frederick C Harris, Jr.
OpenGL Conclusions OpenGL Programming and Reference Guides, other sources CSCI 6360/4360.
CSE Real Time Rendering Week 2. Graphics Processing 2.
1 Introduction to Computer Graphics with WebGL Ed Angel Professor Emeritus of Computer Science Founding Director, Arts, Research, Technology and Science.
1 Computer Graphics Week2 –Creating a Picture. Steps for creating a picture Creating a model Perform necessary transformation Lighting and rendering the.
1Computer Graphics Lecture 4 - Models and Architectures John Shearer Culture Lab – space 2
Chun-Yuan Lin Graphics Systems and Models 2015/11/12 1 CG.
Computer Graphics Chapter 6 Andreas Savva. 2 Interactive Graphics Graphics provides one of the most natural means of communicating with a computer. Interactive.
1 Angel: Interactive Computer Graphics 4E © Addison-Wesley 2005 What is Computer Graphics?
Introducing: Computer Graphics Chapter 1. Chpater 1 -- Introducing: Computer Graphics2 n Computer Graphics is a branch of Computer Science, but its appeal.
Advanced Computer Graphics Spring 2014 K. H. Ko School of Mechatronics Gwangju Institute of Science and Technology.
Review on Graphics Basics. Outline Polygon rendering pipeline Affine transformations Projective transformations Lighting and shading From vertices to.
Subject Name: Computer Graphics Subject Code: Textbook: “Computer Graphics”, C Version By Hearn and Baker Credits: 6 1.
1 Angel: Interactive Computer Graphics5E © Addison- Wesley 2009 Image Formation Fundamental imaging notions Fundamental imaging notions Physical basis.
1 Chapter 1: Graphics Systems and Models. 2 Applications of C. G. – 1/4 Display of information Maps GIS (geographic information system) CT (computer tomography)
Chapter 1 Graphics Systems and Models Models and Architectures.
1 E. Angel and D. Shreiner: Interactive Computer Graphics 6E © Addison-Wesley 2012 Models and Architectures 靜宜大學 資訊工程系 蔡奇偉 副教授 2012.
Graphics Programming. Graphics Functions We can think of the graphics system as a black box whose inputs are function calls from an application program;
Graphics Graphics Korea University cgvr.korea.ac.kr Introduction to Computer Graphics 고려대학교 컴퓨터 그래픽스 연구실.
1 Chapter 1: Introduction to Graphics. 2 What is computer graphics.
1 Computer Graphics - Chapter 1 Graphics Systems and Models Objectives are to learn about: Applications of Computer Graphics Graphics Systems Images: Physical.
Graphics Systems and Models
Graphics Programming CSC
The Graphics Rendering Pipeline
Models and Architectures
Models and Architectures
Models and Architectures
Introduction to Computer Graphics with WebGL
Models and Architectures
Models and Architectures
CS297 Graphics with Java and OpenGL
Graphics Systems and Models (II)
Presentation transcript:

Graphics Systems and Models Chapter 1

CS 480/680 2Chapter 1 -- Graphics Systems and Models Introduction: Introduction: Computer Graphics Computer Graphics What is it? What is it? Overview of what we will cover: Overview of what we will cover: A graphics overview A graphics overview Graphics Theory Graphics Theory A graphics Software System: OpenGL A graphics Software System: OpenGL Our approach will be top-down. Our approach will be top-down. We want you to start writing application programs that generate graphical output as quickly as possible We want you to start writing application programs that generate graphical output as quickly as possible

CS 480/680 3Chapter 1 -- Graphics Systems and Models 1. Applications of Computer Graphics The development of Computer Graphics has been driven by the needs of the user community and by the advances in hardware and software. The development of Computer Graphics has been driven by the needs of the user community and by the advances in hardware and software. Applications can be split into four major areas: Applications can be split into four major areas: Display of information Display of information Design Design Simulation Simulation User Interfaces User Interfaces

CS 480/680 4Chapter 1 -- Graphics Systems and Models 1.1 Display of Information 1.1 Display of Information Classical graphics techniques arose as a medium to convey information among people: Classical graphics techniques arose as a medium to convey information among people: 4,000 years ago -- Babylonians: floor plans of buildings on stones 4,000 years ago -- Babylonians: floor plans of buildings on stones 2,000 years ago -- Greeks: Architectural ideas 2,000 years ago -- Greeks: Architectural ideas Now we have Computer-based drafting programs Now we have Computer-based drafting programs

CS 480/680 5Chapter 1 -- Graphics Systems and Models For centuries -- Cartographers have developed maps to display celestial and geographical information. For centuries -- Cartographers have developed maps to display celestial and geographical information. Now maps can be developed and manipulated in real-time over the internet. Now maps can be developed and manipulated in real-time over the internet.

CS 480/680 6Chapter 1 -- Graphics Systems and Models Over the past 100 years -- workers in statistics have explored techniques for generating plots to convey information Over the past 100 years -- workers in statistics have explored techniques for generating plots to convey information Now we have computer plotting packages Now we have computer plotting packages

CS 480/680 7Chapter 1 -- Graphics Systems and Models Medicine poses interesting and important data- analysis problems Medicine poses interesting and important data- analysis problems CAT Scans, MRI’s ultrasound, and other 3D data producing technologies CAT Scans, MRI’s ultrasound, and other 3D data producing technologies

CS 480/680 8Chapter 1 -- Graphics Systems and Models The field of Scientific Visualization provides graphical tools that help these researchers and others interpret the vast quantities of data generated The field of Scientific Visualization provides graphical tools that help these researchers and others interpret the vast quantities of data generated

CS 480/680 9Chapter 1 -- Graphics Systems and Models 1.2 Design 1.2 Design Engineering and Architecture are concerned with design Engineering and Architecture are concerned with design starting with a set of specification starting with a set of specification seek a cost-effective (and esthetic) solution seek a cost-effective (and esthetic) solution This is an iterative process This is an iterative process The power of interacting with images on the screen The power of interacting with images on the screen has been known for at least 40 years. has been known for at least 40 years. and today the use of interactive tools pervades the CAD field in areas such as architecture and VLSI design and today the use of interactive tools pervades the CAD field in areas such as architecture and VLSI design

CS 480/680 10Chapter 1 -- Graphics Systems and Models 1.3 Simulation 1.3 Simulation When did graphics begin to be used? When did graphics begin to be used? Why? Why? The field of VR has opened up many new horizons. The field of VR has opened up many new horizons. Same (or different) image in each eye Same (or different) image in each eye position tracking position tracking interactive devices interactive devices This has led to training capabilities This has led to training capabilities NASA research grant NASA research grant

CS 480/680 11Chapter 1 -- Graphics Systems and Models 1.4 User Interfaces 1.4 User Interfaces Our interaction with computers has become dominated by a visual paradigm that includes: Our interaction with computers has become dominated by a visual paradigm that includes: windows, windows, icons, icons, menus, and menus, and a pointing device a pointing device We have become so accustomed to this style of interface that we often forget that what we are doing is working with computer graphics. We have become so accustomed to this style of interface that we often forget that what we are doing is working with computer graphics.

CS 480/680 12Chapter 1 -- Graphics Systems and Models 2. A Graphics System There are 5 major elements in our system There are 5 major elements in our system Processor, Memory, Frame Buffer, Input Devices, Output Devices Processor, Memory, Frame Buffer, Input Devices, Output Devices

CS 480/680 13Chapter 1 -- Graphics Systems and Models 2.1 Pixels and the Frame Buffer 2.1 Pixels and the Frame Buffer At present, almost all graphics systems are raster-based At present, almost all graphics systems are raster-based A picture is produced from an array (the raster) of picture elements (pixels) A picture is produced from an array (the raster) of picture elements (pixels) Def: depth of the frame buffer Def: depth of the frame buffer

CS 480/680 14Chapter 1 -- Graphics Systems and Models Definitions: Definitions: Depth of the frame buffer Depth of the frame buffer 1-bit 1-bit 8-bit deep 8-bit deep full-color is 24-bit or more full-color is 24-bit or more Resolution Resolution the number of pixels in the frame buffer the number of pixels in the frame buffer Rasterization or scan conversion Rasterization or scan conversion The converting of geometric primitives into pixel assignments in the frame buffer The converting of geometric primitives into pixel assignments in the frame buffer

CS 480/680 15Chapter 1 -- Graphics Systems and Models 2.2 Output Devices 2.2 Output Devices The dominate type of display is the Cathode- ray tube (CRT) The dominate type of display is the Cathode- ray tube (CRT) Def: refresh rate Def: refresh rate

CS 480/680 16Chapter 1 -- Graphics Systems and Models

CS 480/680 17Chapter 1 -- Graphics Systems and Models Color CRT’s Color CRT’s have three different colored phosphors arranged in small groups (typically triads). have three different colored phosphors arranged in small groups (typically triads).

CS 480/680 18Chapter 1 -- Graphics Systems and Models 2.3 Input Devices 2.3 Input Devices Most graphics systems provide a keyboard and at least one other input device Most graphics systems provide a keyboard and at least one other input device mouse mouse joystick joystick data tablet data tablet We will study these devices in Chapter 3 We will study these devices in Chapter 3

CS 480/680 19Chapter 1 -- Graphics Systems and Models 3. Images: Physical and Synthetic The Usual pedagogical approach: The Usual pedagogical approach: construct raster images construct raster images simple 2D entities (points, lines, polygons) simple 2D entities (points, lines, polygons) Define objects based upon 2D Define objects based upon 2D Because such functionality is supported by most present computer graphics systems, we are going to learn to create images here, rather than expand a limited model. Because such functionality is supported by most present computer graphics systems, we are going to learn to create images here, rather than expand a limited model.

CS 480/680 20Chapter 1 -- Graphics Systems and Models 3.1 Objects and Viewers 3.1 Objects and Viewers Two basic entities must be part of any image- formation process: Two basic entities must be part of any image- formation process: the object the object the viewer the viewer The object exists in space independent of any image-formation process, and of any viewer. The object exists in space independent of any image-formation process, and of any viewer.

CS 480/680 21Chapter 1 -- Graphics Systems and Models What we will study Now What we will study Now Both the object and the viewer exist in a 3D world. However, the image they define is 2D Both the object and the viewer exist in a 3D world. However, the image they define is 2D The process by which the specification of the object is combined with the specification of the viewer to produce an image is the essence of image formation. The process by which the specification of the object is combined with the specification of the viewer to produce an image is the essence of image formation. Future: Future: In Chapter 2, we show how OpenGL allows us to build simple objects In Chapter 2, we show how OpenGL allows us to build simple objects In Chapter 9 we learn how to define objects in a manner that incorporates relationships among objects. In Chapter 9 we learn how to define objects in a manner that incorporates relationships among objects.

CS 480/680 22Chapter 1 -- Graphics Systems and Models 3.2 Light and Images 3.2 Light and Images Much information was missing from the preceding picture: Much information was missing from the preceding picture: We have yet to mention light! We have yet to mention light! If there were no light sources the objects would be dark, and there would be nothing visible in our image. If there were no light sources the objects would be dark, and there would be nothing visible in our image. We have not mentioned how color enters the picture We have not mentioned how color enters the picture Or, what are the effects of different kinds of surfaces on the objects. Or, what are the effects of different kinds of surfaces on the objects.

CS 480/680 23Chapter 1 -- Graphics Systems and Models Taking a more physical approach, we can start with the following arrangement: Taking a more physical approach, we can start with the following arrangement: The details of the interaction between light and the surfaces of the object determine how much light enters the camera. The details of the interaction between light and the surfaces of the object determine how much light enters the camera.

CS 480/680 24Chapter 1 -- Graphics Systems and Models Light is a form of electromagnetic radiation: Light is a form of electromagnetic radiation:

CS 480/680 25Chapter 1 -- Graphics Systems and Models 3.3 Ray Tracing 3.3 Ray Tracing We can start building an imaging model by following light from a source. We can start building an imaging model by following light from a source.

CS 480/680 26Chapter 1 -- Graphics Systems and Models Ray tracing is an image formation technique that is based on these ideas and that can form the basis for producing computer generated images. Ray tracing is an image formation technique that is based on these ideas and that can form the basis for producing computer generated images.

CS 480/680 27Chapter 1 -- Graphics Systems and Models 4. The Human Visual System Our extremely complex visual system has all the components of a physical imaging system, such as a camera or a microscope. Our extremely complex visual system has all the components of a physical imaging system, such as a camera or a microscope.

CS 480/680 28Chapter 1 -- Graphics Systems and Models 5. The Pinhole Camera What is one? What is one? A Pinhole camera is a box A Pinhole camera is a box with a small hole in the center on one side, with a small hole in the center on one side, and the film on the opposite side and the film on the opposite side

CS 480/680 29Chapter 1 -- Graphics Systems and Models Pinhole camera near Cliff House in San Francisco Pinhole camera near Cliff House in San Francisco

CS 480/680 30Chapter 1 -- Graphics Systems and Models 6. The Synthetic Camera Model Consider the imaging system shown here: Consider the imaging system shown here:

CS 480/680 31Chapter 1 -- Graphics Systems and Models A few Basic principles: A few Basic principles: First, the specification of the objects is independent of the specification of the viewer. First, the specification of the objects is independent of the specification of the viewer. In a graphics library we would expect separate functions for specifying objects and the viewer. In a graphics library we would expect separate functions for specifying objects and the viewer. Second, we can compute the image using simple trigonometric calculations Second, we can compute the image using simple trigonometric calculations

CS 480/680 32Chapter 1 -- Graphics Systems and Models Because of this, we can move the image plane in front of the lens (call this the projection plane) and end up with: Because of this, we can move the image plane in front of the lens (call this the projection plane) and end up with: In Chapter 5, we discuss this process in detail and derive the relevant mathematical formulas In Chapter 5, we discuss this process in detail and derive the relevant mathematical formulas

CS 480/680 33Chapter 1 -- Graphics Systems and Models We must also consider the limited size of the image. We must also consider the limited size of the image. Therefore, we must discuss clipping: Therefore, we must discuss clipping:

CS 480/680 34Chapter 1 -- Graphics Systems and Models 7. The Programmer’s Interface There are numerous ways that a user can interact with a graphics system. There are numerous ways that a user can interact with a graphics system. In a typical paint program it would look like: In a typical paint program it would look like:

CS 480/680 35Chapter 1 -- Graphics Systems and Models 7.1 Application Programmer’s Interfaces 7.1 Application Programmer’s Interfaces What is an API? What is an API? Why do you want one? Why do you want one?

CS 480/680 36Chapter 1 -- Graphics Systems and Models If we are to follow the synthetic camera model, we need functions in the API to specify: If we are to follow the synthetic camera model, we need functions in the API to specify: Objects Objects Viewer Viewer Light Sources Light Sources Material Properties Material Properties

CS 480/680 37Chapter 1 -- Graphics Systems and Models Objects are usually defined by a set of vertices Objects are usually defined by a set of vertices The following code fragment defines a triangular polygon in OpenGL The following code fragment defines a triangular polygon in OpenGL glBegin(GL_POLYGON); glBegin(GL_POLYGON); glVertex3f(0.0,0.0,0.0); glVertex3f(0.0,0.0,0.0); glVertex3f(0.0,1.0,0.0); glVertex3f(0.0,1.0,0.0); glVertex3f(0.0,0.0,1.0); glVertex3f(0.0,0.0,1.0); glEND(); glEND();

CS 480/680 38Chapter 1 -- Graphics Systems and Models We can define a viewer or camera in a variety of ways We can define a viewer or camera in a variety of ways We can identify four types of necessary specifications: We can identify four types of necessary specifications: Position Position Orientation Orientation Focal length Focal length Film plane Film plane

CS 480/680 39Chapter 1 -- Graphics Systems and Models Light sources can be defined by their location, strength, color, and directionality. Light sources can be defined by their location, strength, color, and directionality. API’s provide a set of functions to specify these parameters for each source. API’s provide a set of functions to specify these parameters for each source. Material properties are characteristics, or attributes, of the objects Material properties are characteristics, or attributes, of the objects such properties are usually defined through a series of function calls at the time that each object is defined. such properties are usually defined through a series of function calls at the time that each object is defined.

CS 480/680 40Chapter 1 -- Graphics Systems and Models 7.2 A Sequence of Images 7.2 A Sequence of Images In Chapter 2, we begin our detailed discussion of the OpenGL API In Chapter 2, we begin our detailed discussion of the OpenGL API Color Plates 1 through 8 show what is possible with available hardware and a good API, but also they are not difficult to generate Color Plates 1 through 8 show what is possible with available hardware and a good API, but also they are not difficult to generate

CS 480/680 41Chapter 1 -- Graphics Systems and Models 8. Graphics Architectures On one side of the API is the application program. On the other is some combination of hardware and software that implements the functionality of the API On one side of the API is the application program. On the other is some combination of hardware and software that implements the functionality of the API Researchers have taken various approaches to developing architectures to support graphics APIs Researchers have taken various approaches to developing architectures to support graphics APIs

CS 480/680 42Chapter 1 -- Graphics Systems and Models Early systems used general purpose computers Early systems used general purpose computers single processing unit single processing unit In the early days of computer graphics, computers were so slow that refreshing even simple images, containing a few hundred line segments, would burden an expensive computer In the early days of computer graphics, computers were so slow that refreshing even simple images, containing a few hundred line segments, would burden an expensive computer

CS 480/680 43Chapter 1 -- Graphics Systems and Models 8.1 Display Processors 8.1 Display Processors The earliest attempts to build a special purpose graphics system were concerned primarily with relieving the task of refreshing the display The earliest attempts to build a special purpose graphics system were concerned primarily with relieving the task of refreshing the display

CS 480/680 44Chapter 1 -- Graphics Systems and Models 8.2 Pipeline Architectures 8.2 Pipeline Architectures The major advances in graphics architectures parallel closely the advances in workstations. The major advances in graphics architectures parallel closely the advances in workstations. For computer graphics applications, the most important use of custom VLSI circuits has been in creating pipeline architectures For computer graphics applications, the most important use of custom VLSI circuits has been in creating pipeline architectures A simple arithmetic pipeline is shown here: A simple arithmetic pipeline is shown here:

CS 480/680 45Chapter 1 -- Graphics Systems and Models If we think in terms of processing the geometry of our objects to obtain an image, we can use the following block diagram: If we think in terms of processing the geometry of our objects to obtain an image, we can use the following block diagram: We will discuss the details of these steps in subsequent chapters. We will discuss the details of these steps in subsequent chapters.

CS 480/680 46Chapter 1 -- Graphics Systems and Models 8.3 Transformations 8.3 Transformations Many of the steps in the imaging process can be viewed as transformations between representations of objects in different coordinate systems Many of the steps in the imaging process can be viewed as transformations between representations of objects in different coordinate systems for example: from the system in which the object was defined to the system of the camera for example: from the system in which the object was defined to the system of the camera We can represent each change of coordinate systems by a matrix We can represent each change of coordinate systems by a matrix We can represent successive changes by multiplying (or concatenating) the individual matrices into a single matrix. We can represent successive changes by multiplying (or concatenating) the individual matrices into a single matrix.

CS 480/680 47Chapter 1 -- Graphics Systems and Models 8.4 Clipping 8.4 Clipping Why do we Clip? Why do we Clip? Efficient clipping algorithms are developed in Chapter 7 Efficient clipping algorithms are developed in Chapter 7

CS 480/680 48Chapter 1 -- Graphics Systems and Models 8.5. Projection 8.5. Projection In general three-dimensional objects are kept in three dimensions as long as possible, as they pass through the pipeline. In general three-dimensional objects are kept in three dimensions as long as possible, as they pass through the pipeline. Eventually though, they must be projected into two-dimensional objects. Eventually though, they must be projected into two-dimensional objects. There are various projections that we can implement. There are various projections that we can implement. We shall see in Chapter 5 that we can implement this step using 4 x 4 matrices, and, thus, also fit it into the pipeline. We shall see in Chapter 5 that we can implement this step using 4 x 4 matrices, and, thus, also fit it into the pipeline.

CS 480/680 49Chapter 1 -- Graphics Systems and Models 8.6 Rasterization 8.6 Rasterization Finally, our projected objects must be represented as pixels in the frame buffer. Finally, our projected objects must be represented as pixels in the frame buffer. We discuss this scan-conversion or rasterization process in Chapter 7 We discuss this scan-conversion or rasterization process in Chapter 7

CS 480/680 50Chapter 1 -- Graphics Systems and Models 8.7 Performance Characteristics 8.7 Performance Characteristics There are two fundamentally different types of processing There are two fundamentally different types of processing Front end -- geometric processing, based on the processing of vertices Front end -- geometric processing, based on the processing of vertices ideally suited for pipelining, and usually involves floating- point calculations. ideally suited for pipelining, and usually involves floating- point calculations. The geometry engine developed by SGI was a VLSI implementation for many of these operations in a special purpose chip. These became the basis for a series of graphics workstations. The geometry engine developed by SGI was a VLSI implementation for many of these operations in a special purpose chip. These became the basis for a series of graphics workstations. Back end -- involves direct manipulation of bits in the frame buffer. Back end -- involves direct manipulation of bits in the frame buffer. Ideally suited for parallel bit processors. Ideally suited for parallel bit processors.

CS 480/680 51Chapter 1 -- Graphics Systems and Models 9. Summary In this chapter we have set the stage for our top- down development of computer graphics. In this chapter we have set the stage for our top- down development of computer graphics. Computer graphics is a method of image formation that should be related to classical methods -- in particular to cameras Computer graphics is a method of image formation that should be related to classical methods -- in particular to cameras Our next step is to explore the application side of Computer Graphics programming Our next step is to explore the application side of Computer Graphics programming We will use the OpenGL API We will use the OpenGL API

CS 480/680 52Chapter 1 -- Graphics Systems and Models 10. Suggested Readings Journals: Journals: Computer Graphics -- ACM Computer Graphics -- ACM IEEE Compute Graphics and Applications IEEE Compute Graphics and Applications Textbooks: Textbooks: Foley et.al. Foley et.al. Hearn and Baker Hearn and Baker Hill Hill