Computer Graphics Principles And Practice (James Foley / Andries Van Dam / Morgan McGuire / David Sklar / James D. Foley 著)
1 Introduction
2 Introduction to 2D Graphics Using WPF
3 An Ancient Renderer Made Modern
4 A 2D Graphics Test Bed
5 An Introduction to Human Visual Perception
6 Introduction to Fixed-Function 3D Graphics and Hierarchical Modeling
7 Essential Mathematics and the Geomertry of 2-Shape and 3-Space
8 A Simple Way to Describe Shape in 2D and 3D
9 Functions on Meshes
10 Transformations in Two Dimensions
11 Transformations in Three Dimensions
12 A 2D and 3D Transformation Library for Graphics
13 Camera Specifications and Transformations
14 Standard Approximations and Representations
15 Ray Casting and Rasterization
16 Survey of Real-Time 3D Graphics Platforms
17 Image Representation and Manipulation
18 Images and signal Processing
19 Enlarging and Shrinking Images
20 Textures and Texture Mapping
21 Interaction Techniques
22 Splines and Subdivision Curves
23 Splines and Subdivision Surface
24 Implicit Representations of Shape
25 Meshes
26 Light
27 Materials and Scattering
28 Color
29 Light Transport
30 Probability and Monte Carlo Intergration
31 Computing Solutions to the Rendering Equation: Theoretical Approaches
32 Rendering in Practice
33 Shaders
34 Expressive Rendering
35 Motion
36 Visibility Determination
37 Spatial Data Structures
38 Modern Graphics Hardware
1 Introduction
2 Introduction to 2D Graphics Using WPF
3 An Ancient Renderer Made Modern
4 A 2D Graphics Test Bed
5 An Introduction to Human Visual Perception
6 Introduction to Fixed-Function 3D Graphics and Hierarchical Modeling
7 Essential Mathematics and the Geomertry of 2-Shape and 3-Space
8 A Simple Way to Describe Shape in 2D and 3D
9 Functions on Meshes
10 Transformations in Two Dimensions
11 Transformations in Three Dimensions
12 A 2D and 3D Transformation Library for Graphics
13 Camera Specifications and Transformations
14 Standard Approximations and Representations
15 Ray Casting and Rasterization
16 Survey of Real-Time 3D Graphics Platforms
17 Image Representation and Manipulation
18 Images and signal Processing
19 Enlarging and Shrinking Images
20 Textures and Texture Mapping
21 Interaction Techniques
22 Splines and Subdivision Curves
23 Splines and Subdivision Surface
24 Implicit Representations of Shape
25 Meshes
26 Light
27 Materials and Scattering
28 Color
29 Light Transport
30 Probability and Monte Carlo Intergration
31 Computing Solutions to the Rendering Equation: Theoretical Approaches
32 Rendering in Practice
33 Shaders
34 Expressive Rendering
35 Motion
36 Visibility Determination
37 Spatial Data Structures
38 Modern Graphics Hardware
Computer Graphics Principles And Practice (James Foley / Andries Van Dam / Morgan McGuire / David Sklar / James D. Foley 著)的更多相关文章
- Mathematics for Computer Graphics数学在计算机图形学中的应用 [转]
最近严重感觉到数学知识的不足! http://bbs.gameres.com/showthread.asp?threadid=10509 [译]Mathematics for Computer Gra ...
- Mathematics for Computer Graphics
Mathematics for Computer Graphics 最近严重感觉到数学知识的不足! http://bbs.gameres.com/showthread.asp?threadid=105 ...
- How to Start Learning Computer Graphics
Background Input\Output Image Knowledge Image Digital Image Processing Computer Vision Knowledge Com ...
- Fundamentals of Computer Graphics 中文版(第二版) (Peter Shirley 著)
1 引言 2 数学知识 3 光栅算法 4 信号处理 5 线性代数 6 矩阵变换 7 观察 8 隐藏面消除 9 表面明暗处理 10 光线追踪 11 纹理映射 12 完整的图形流水线 13 图形学的数据结 ...
- Computer Graphics Research Software
Computer Graphics Research Software Helping you avoid re-inventing the wheel since 2009! Last update ...
- 时间序列 R 读书笔记 04 Forecasting: principles and practice
本章開始学习<Forecasting: principles and practice> 1 getting started 1.1 事件的可预言性 一个时间能不能被预言主要取决于以下三点 ...
- 水题 HDOJ 4716 A Computer Graphics Problem
题目传送门 /* 水题:看见x是十的倍数就简单了 */ #include <cstdio> #include <iostream> #include <algorithm ...
- Computer Graphics Thinking–texture tiling
Here is one question: how to tile texture? One thing worth to notice: The DirectX and OpenGL stipula ...
- HDU 4716 A Computer Graphics Problem
A Computer Graphics Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (J ...
随机推荐
- LeetCode 148 排序链表
题目: 在 O(n log n) 时间复杂度和常数级空间复杂度下,对链表进行排序. 示例 1: 输入: 4->2->1->3 输出: 1->2->3->4 示例 2 ...
- hibernate学习以及文件以及注释
<?xml version='1.0' encoding='UTF-8'?><!DOCTYPE hibernate-configuration PUBLIC "-//Hib ...
- org.springframework.cloud FeignInterceptor
package org.rx.feign; import org.apache.commons.lang3.ArrayUtils; import org.aspectj.lang.Proceeding ...
- 目标检测(二) SPPNet
引言 先简单回顾一下R-CNN的问题,每张图片,通过 Selective Search 选择2000个建议框,通过变形,利用CNN提取特征,这是非常耗时的,而且,形变必然导致信息失真,最终影响模型的性 ...
- pdf.js使用总结#如何在网页读取并显示PDF格式文档
pdf.js可以实现在html下直接浏览pdf文档,是一款开源的pdf文档读取解析插件 pdf.js主要包含两个库文件,一个pdf.js和一个pdf.worker.js,一个负责API解析,一个负责核 ...
- python调用c++ DLL
python DLL = ctypes.cdll.LoadLibrary("./dll_file.so") #引入dllDLL.func(mat.ctypes.data // (1 ...
- iOS常用算法
1.冒泡排序 冒泡算法是一种基础的排序算法,这种算法会重复的比较数组中相邻的两个元素,如果一个元素比另一个元素大/小,那么就交换这两个元素的位置.重复一直比较到最后一个元素. 1.最差时间复杂度:O( ...
- 2018-计算机系机试(第二批)-E-绝对值排序
单点时限: 2.0 sec 内存限制: 256 MB 输入 n 个整数,按照绝对值从大到小排序.绝对值相等的整数按照整数值从小到大排序. 例如:3 个整数 -2,2 和 -6 的排序结果为 -6, - ...
- 07_mysql常用sql语句
一.数据库相关 1.创建数据库: mysql> create database test default character set utf8 collate utf8_general_ci;Q ...
- 暗影精灵2pro——使用一年多后电池鼓包,传说中的更新BIOS问题(惠普15ax-226tx)
17年春天的时候正好赶上自己在东北一所省会城市的211大学读硕毕业,为了更新下自己的装备,同时也是为了纪念在母校读书7年的经历,遂够了一款暗影精灵2pro,如上图右侧所示,是一款颜值较高的很轻薄的笔记 ...