OpenGL Transformation 几何变换的顺序概要(MVP,NDC,Window坐标变换过程)

本文主要是介绍OpenGL Transformation 几何变换的顺序概要(MVP,NDC,Window坐标变换过程),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

OpenGL Transformation 几何变换的顺序概要(MVP,NDC,Window坐标变换过程)

Geometry transforming or culling sequence:

  • application passing the vertex pos(object space pos) to the shader program。
  • transforming of clip space pos from object space pos by mulipling the MVP matrix
    • to world space pos from object space pos by multipling the model/world matrix
      ( x w o r l d y w o r l d z w o r l d ) = M m o d e l / w o r l d ( x o b j y o b j z o b j ) \left( \begin{matrix} x_{\color{#aaaaaa}world}\\ y_{\color{#aaaaaa}world}\\ z_{\color{#aaaaaa}world} \end{matrix} \right)= M_{\color{#aaaaaa}model/world} \left( \begin{matrix} x_{\color{#aaaaaa}obj}\\ y_{\color{#aaaaaa}obj}\\ z_{\color{#aaaaaa}obj} \end{matrix} \right) xworldyworldzworld =Mmodel/world xobjyobjzobj
    • to view space pos from world space pos by multipling the view/camera/eye matrix
      • right-hand coordinates
        ( x e y e y e y e z e y e ) = M m o d e l V i e w ( x o b j y o b j z o b j ) = M v i e w ⋅ M m o d e l / w o r l d ( x o b j y o b j z o b j ) \left( \begin{matrix} x_{\color{#aaaaaa}eye}\\ y_{\color{#aaaaaa}eye}\\ z_{\color{#aaaaaa}eye} \end{matrix} \right)= M_{\color{#aaaaaa}modelView} \left( \begin{matrix} x_{\color{#aaaaaa}obj}\\ y_{\color{#aaaaaa}obj}\\ z_{\color{#aaaaaa}obj} \end{matrix} \right)= M_{\color{#aaaaaa}view} \cdot M_{\color{#aaaaaa}model/world} \left( \begin{matrix} x_{\color{#aaaaaa}obj}\\ y_{\color{#aaaaaa}obj}\\ z_{\color{#aaaaaa}obj} \end{matrix} \right) xeyeyeyezeye =MmodelView xobjyobjzobj =MviewMmodel/world xobjyobjzobj
    • to projection/clip space pos from view space pos by multipling the projective/clip matrix
      ( x c l i p y c l i p z c l i p ) = M p r o j e c t ( x e y e y e y e z e y e ) \left( \begin{matrix} x_{\color{#aaaaaa}clip}\\ y_{\color{#aaaaaa}clip}\\ z_{\color{#aaaaaa}clip} \end{matrix} \right)= M_{\color{#aaaaaa}project} \left( \begin{matrix} x_{\color{#aaaaaa}eye}\\ y_{\color{#aaaaaa}eye}\\ z_{\color{#aaaaaa}eye} \end{matrix} \right) xclipyclipzclip =Mproject xeyeyeyezeye
      • culling the vertex which − w c l i p > x y z c l i p > w c l i p -w_{\color{#aaaaaa}clip}>xyz_{\color{#aaaaaa}clip}>w_{\color{#aaaaaa}clip} wclip>xyzclip>wclip
        • add edge/vertex when culling occurs。
      • only reserve the vertex which − w c l i p < x y z c l i p < w c l i p -w_{\color{#aaaaaa}clip}<xyz_{\color{#aaaaaa}clip}<w_{\color{#aaaaaa}clip} wclip<xyzclip<wclip
      • projection/clip space pos still are Homogeneouse coordinates
        • to perspective effect, transforming to NDC space (Euclidean/Cartesian space) from projection/clip space pos, then dividing by the w c l i p w_{\color{#aaaaaa}clip} wclip x y z n d c = x y z c l i p / w c l i p xyz_{\color{#aaaaaa}ndc}=xyz_{\color{#aaaaaa}clip}/w_{\color{#aaaaaa}clip} xyzndc=xyzclip/wclip
  • to NDC(Normalized Device Coordinates) space, just using clip space pos divide by w c l i p w_{\color{#aaaaaa}clip} wclip
    ∵ e y e s p a c e i s r i g h t − h a n d c o o r d i n a t e s ∴ w c l i p = − z c l i p ∴ ( x c l i p y c l i p z c l i p w c l i p → ( − z c l i p ) ) = [ ⋅ ⋯ ⋯ ⋅ ⋮ ⋱ ⋱ ⋮ ⋅ ⋯ ⋯ ⋅ 0 0 − 1 0 ] ( x e y e y e y e z e y e w e y e ) ( x n d c y n d c z n d c ) = ( x c l i p / w c l i p y c l i p / w c l i p z c l i p / w c l i p ) { − w c l i p < x y z n d c < w c l i p x y z n d c = x y z c l i p / w c l i p − 1 < x y z n d c < 1 \because eye \space space \space is \space right-hand \space coordinates\\ \therefore w_{\color{#aaaaaa}clip}=-z_{\color{#aaaaaa}clip}\\ \therefore\left( \begin{matrix} x_{\color{#aaaaaa}clip}\\ y_{\color{#aaaaaa}clip}\\ z_{\color{#aaaaaa}clip}\\ w_{\color{#aaaaaa}clip} \rightarrow ({\color{#ff0000}-z_{\color{#aaaaaa}clip}})\\ \end{matrix} \right)= \begin{bmatrix} \cdot & \cdots & \cdots & \cdot \\ \vdots & \ddots & \ddots & \vdots \\ \cdot & \cdots & \cdots & \cdot \\ 0 & 0 & \color{#ff0000}-1 & 0 \end{bmatrix} \left( \begin{matrix} x_{\color{#aaaaaa}eye}\\ y_{\color{#aaaaaa}eye}\\ \color{#ff0000}z_{\color{#aaaaaa}eye}\\ \color{#ff0000}w_{\color{#aaaaaa}eye} \end{matrix} \right)\\ \left( \begin{matrix} x_{\color{#aaaaaa}ndc}\\ y_{\color{#aaaaaa}ndc}\\ z_{\color{#aaaaaa}ndc} \end{matrix} \right)= \left( \begin{matrix} x_{\color{#aaaaaa}clip}/w_{\color{#aaaaaa}clip}\\ y_{\color{#aaaaaa}clip}/w_{\color{#aaaaaa}clip}\\ z_{\color{#aaaaaa}clip}/w_{\color{#aaaaaa}clip} \end{matrix} \right) \begin{cases} -w_{\color{#aaaaaa}clip}<xyz_{\color{#aaaaaa}ndc}<w_{\color{#aaaaaa}clip}\\ xyz_{\color{#aaaaaa}ndc}=xyz_{\color{#aaaaaa}clip}/w_{\color{#aaaaaa}clip}\\ -1<xyz_{\color{#aaaaaa}ndc}<1 \end{cases} eye space is righthand coordinateswclip=zclip xclipyclipzclipwclip(zclip) = 0010 xeyeyeyezeyeweye xndcyndczndc = xclip/wclipyclip/wclipzclip/wclip wclip<xyzndc<wclipxyzndc=xyzclip/wclip1<xyzndc<1
    • w c l i p = − z c l i p w_{\color{#aaaaaa}clip}=-z_{\color{#aaaaaa}clip} wclip=zclip see OpenGL Projection Matrix。
    • NDC like a cube, [l,r] range [-1,1], [b,t] range [-1,1], [-n,-f] range [-1,1],see Perspective Projection。
  • to mapping Window Coordinates (Screen Coordinates), using glViewport(x,y,w,h), glDepthRange(n,f) functions set the parameters of mapping, see following formula:

( x w i n d o w / s c r e e n y w i n d o w / s c r e e n z w i n d o w / s c r e e n ) = ( w 2 x n d c + ( x + w 2 ) h 2 y n d c + ( y + h 2 ) f − n 2 z n d c + ( f + n ) 2 ) { x w i n d o w = { − 1 ⇒ x 1 ⇒ x + w y w i n d o w = { − 1 ⇒ y 1 ⇒ y + h z w i n d o w = { − 1 ⇒ n 1 ⇒ f \left( \begin{matrix} x_{\color{#aaaaaa}window/screen}\\ y_{\color{#aaaaaa}window/screen}\\ z_{\color{#aaaaaa}window/screen} \end{matrix} \right)= \left( \begin{matrix} \frac{w}{2}x_{\color{#aaaaaa}ndc}+\left(x+\frac{w}{2}\right) \\ \frac{h}{2}y_{\color{#aaaaaa}ndc}+\left(y+\frac{h}{2}\right) \\ \frac{f-n}{2}z_{\color{#aaaaaa}ndc}+\frac{\left(f+n\right)}{2} \end{matrix} \right) \begin{cases} x_{\color{#aaaaaa}window}= \begin{cases} -1 \Rightarrow x \\ 1 \Rightarrow x+w \\ \end{cases}\\ y_{\color{#aaaaaa}window}= \begin{cases} -1 \Rightarrow y \\ 1 \Rightarrow y+h \\ \end{cases}\\ z_{\color{#aaaaaa}window}= \begin{cases} -1 \Rightarrow n \\ 1 \Rightarrow f \\ \end{cases}\\ \end{cases} xwindow/screenywindow/screenzwindow/screen = 2wxndc+(x+2w)2hyndc+(y+2h)2fnzndc+2(f+n) xwindow={1x1x+wywindow={1y1y+hzwindow={1n1f


参考前辈一文:纹理投影,里面有 GPU-GEMS 一图
在这里插入图片描述


References

  • LaTeX 各种命令,符号
  • OpenGL Transformation
    • Object Space Coordinates
    • Eye Space Coordinates
    • Clip Space Coordinates
    • NDC(Normalized Device Coordinates)
      • Perspective Projection
    • Window Coordinates (Screen Coordinates)
    • OpenGL Projection Matrix
    • Homogeneous Coordinates

这篇关于OpenGL Transformation 几何变换的顺序概要(MVP,NDC,Window坐标变换过程)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/377400

相关文章

Window Server创建2台服务器的故障转移群集的图文教程

《WindowServer创建2台服务器的故障转移群集的图文教程》本文主要介绍了在WindowsServer系统上创建一个包含两台成员服务器的故障转移群集,文中通过图文示例介绍的非常详细,对大家的... 目录一、 准备条件二、在ServerB安装故障转移群集三、在ServerC安装故障转移群集,操作与Ser

Window Server2016加入AD域的方法步骤

《WindowServer2016加入AD域的方法步骤》:本文主要介绍WindowServer2016加入AD域的方法步骤,包括配置DNS、检测ping通、更改计算机域、输入账号密码、重启服务... 目录一、 准备条件二、配置ServerB加入ServerA的AD域(test.ly)三、查看加入AD域后的变

Window Server2016 AD域的创建的方法步骤

《WindowServer2016AD域的创建的方法步骤》本文主要介绍了WindowServer2016AD域的创建的方法步骤,文中通过图文介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、准备条件二、在ServerA服务器中常见AD域管理器:三、创建AD域,域地址为“test.ly”

SpringBoot 整合 Grizzly的过程

《SpringBoot整合Grizzly的过程》Grizzly是一个高性能的、异步的、非阻塞的HTTP服务器框架,它可以与SpringBoot一起提供比传统的Tomcat或Jet... 目录为什么选择 Grizzly?Spring Boot + Grizzly 整合的优势添加依赖自定义 Grizzly 作为

mysql-8.0.30压缩包版安装和配置MySQL环境过程

《mysql-8.0.30压缩包版安装和配置MySQL环境过程》该文章介绍了如何在Windows系统中下载、安装和配置MySQL数据库,包括下载地址、解压文件、创建和配置my.ini文件、设置环境变量... 目录压缩包安装配置下载配置环境变量下载和初始化总结压缩包安装配置下载下载地址:https://d

springboot整合gateway的详细过程

《springboot整合gateway的详细过程》本文介绍了如何配置和使用SpringCloudGateway构建一个API网关,通过实例代码介绍了springboot整合gateway的过程,需要... 目录1. 添加依赖2. 配置网关路由3. 启用Eureka客户端(可选)4. 创建主应用类5. 自定

最新版IDEA配置 Tomcat的详细过程

《最新版IDEA配置Tomcat的详细过程》本文介绍如何在IDEA中配置Tomcat服务器,并创建Web项目,首先检查Tomcat是否安装完成,然后在IDEA中创建Web项目并添加Web结构,接着,... 目录配置tomcat第一步,先给项目添加Web结构查看端口号配置tomcat    先检查自己的to

JAVA利用顺序表实现“杨辉三角”的思路及代码示例

《JAVA利用顺序表实现“杨辉三角”的思路及代码示例》杨辉三角形是中国古代数学的杰出研究成果之一,是我国北宋数学家贾宪于1050年首先发现并使用的,:本文主要介绍JAVA利用顺序表实现杨辉三角的思... 目录一:“杨辉三角”题目链接二:题解代码:三:题解思路:总结一:“杨辉三角”题目链接题目链接:点击这里

SpringBoot集成SOL链的详细过程

《SpringBoot集成SOL链的详细过程》Solanaj是一个用于与Solana区块链交互的Java库,它为Java开发者提供了一套功能丰富的API,使得在Java环境中可以轻松构建与Solana... 目录一、什么是solanaj?二、Pom依赖三、主要类3.1 RpcClient3.2 Public

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO