第十三课:法线贴图

欢迎来到第十三课!今天讲法线贴图(normal mapping)。

学完第八课:基本光照模型后,我们知道了如何用三角形法线得到不错的光照效果。需要注意的是,截至目前,每个顶点仅有一个法线:在三角形三个顶点间,法线是平滑过渡的;而颜色(纹理的采样)恰与此相反。

法线纹理

法线纹理看起来像这样:

normal

每个纹素的RGB值实际上表示的是XYZ向量:颜色的分量取值范围为0到1,而向量的分量取值范围是-1到1;可以建立从纹素到法线的简单映射:

  1. normal = (2*color)-1 // on each component

法线纹理整体呈蓝色,因为法线基本是朝上的(上方即Z轴正向。OpenGL中Y轴=上,有所不同。这种不兼容很蠢,但没人想为此重写现有的工具,我们将就用吧。后面介绍详情。)

法线纹理的映射方式和颜色纹理相似。麻烦的是如何将法线从各三角形局部坐标系(切线坐标系tangent space,亦称图像坐标系image space)变换到模型坐标系(计算光照采用的坐标系)。

切线和双切线(Tangent and Bitangent)

想必大家对矩阵已经十分熟悉了;大家知道,定义一个坐标系(本例是切线坐标系)需要三个向量。现在Up向量已经有了,即法线:可用Blender计算,或做一个简单的叉乘。下图中蓝色箭头代表法线(法线贴图整体颜色也恰好是蓝色)。

NormalVector

然后是切线T:垂直于平面的向量。切线有很多个:

TangentVectors

这么多切线中该选哪一个呢?理论上,任何一个都可以。不过我们得和相邻顶点保持一致,以免导致边缘出现瑕疵。一个通行的办法是将切线方向和纹理坐标系对齐:

TangentVectorFromUVs

定义一组基需要三个向量,因此我们还得计算双切线B(本来可以随便选一条切线,但选定垂直于其他两条轴的切线,计算会方便些)。

NTBFromUVs

算法如下:若把三角形的两条边记为deltaPos1deltaPos2deltaUV1deltaUV2是对应的UV坐标下的差值;此问题可用如下方程表示:

  1. deltaPos1 = deltaUV1.x * T + deltaUV1.y * B
  2. deltaPos2 = deltaUV2.x * T + deltaUV2.y * B

求解T和B就得到了切线和双切线!(代码见下文)

已知T、B、N向量之后,即可得下面这个漂亮的矩阵,完成从模型坐标系到切线坐标系的变换:

TBN

有了TBN矩阵,我们就能把法线(从法线纹理中提取而来)变换到模型坐标系。

可我们需要的却是与之相反的变换:从切线坐标系到模型坐标系,法线保持不变。所有计算均在切线坐标系中进行,不会对其他计算产生影响。

既然要进行逆向的变换,那只需对以上矩阵求逆即可。这个矩阵(正交阵,即各向量相互正交,请看后面“延伸阅读”小节)的逆矩阵恰好也就是其转置矩阵,计算十分简单:

  1. invTBN = transpose(TBN)

亦即:

transposeTBN

准备VBO

计算切线和双切线

我们需要为整个模型计算切线、双切线和法线。用一个单独的函数完成这项工作:

  1. void computeTangentBasis(
  2. // inputs
  3. std::vector<glm::vec3> & vertices,
  4. std::vector<glm::vec2> & uvs,
  5. std::vector<glm::vec3> & normals,
  6. // outputs
  7. std::vector<glm::vec3> & tangents,
  8. std::vector<glm::vec3> & bitangents
  9. ){

为每个三角形计算边(deltaPos)和deltaUV

  1. for ( int i=0; i<vertices.size(); i+=3){
  2. // Shortcuts for vertices
  3. glm::vec3 & v0 = vertices[i+0];
  4. glm::vec3 & v1 = vertices[i+1];
  5. glm::vec3 & v2 = vertices[i+2];
  6. // Shortcuts for UVs
  7. glm::vec2 & uv0 = uvs[i+0];
  8. glm::vec2 & uv1 = uvs[i+1];
  9. glm::vec2 & uv2 = uvs[i+2];
  10. // Edges of the triangle : postion delta
  11. glm::vec3 deltaPos1 = v1-v0;
  12. glm::vec3 deltaPos2 = v2-v0;
  13. // UV delta
  14. glm::vec2 deltaUV1 = uv1-uv0;
  15. glm::vec2 deltaUV2 = uv2-uv0;

现在用公式来算切线和双切线:

  1. float r = 1.0f / (deltaUV1.x * deltaUV2.y - deltaUV1.y * deltaUV2.x);
  2. glm::vec3 tangent = (deltaPos1 * deltaUV2.y - deltaPos2 * deltaUV1.y)*r;
  3. glm::vec3 bitangent = (deltaPos2 * deltaUV1.x - deltaPos1 * deltaUV2.x)*r;

最后,把这些切线双切线缓存到数组。记住,还没为这些缓存的数据生成索引,因此每个顶点都有一份拷贝。

  1. // Set the same tangent for all three vertices of the triangle.
  2. // They will be merged later, in vboindexer.cpp
  3. tangents.push_back(tangent);
  4. tangents.push_back(tangent);
  5. tangents.push_back(tangent);
  6. // Same thing for binormals
  7. bitangents.push_back(bitangent);
  8. bitangents.push_back(bitangent);
  9. bitangents.push_back(bitangent);
  10. }

生成索引

索引VBO的方法和之前类似,仅有些许不同。

若找到一个相似顶点(相同的坐标、法线、纹理坐标),我们不使用它的切线、次法线;反而要取其均值。因此,只需把旧代码修改一下:

  1. // Try to find a similar vertex in out_XXXX
  2. unsigned int index;
  3. bool found = getSimilarVertexIndex(in_vertices[i], in_uvs[i], in_normals[i], out_vertices, out_uvs, out_normals, index);
  4. if ( found ){ // A similar vertex is already in the VBO, use it instead !
  5. out_indices.push_back( index );
  6. // Average the tangents and the bitangents
  7. out_tangents[index] += in_tangents[i];
  8. out_bitangents[index] += in_bitangents[i];
  9. }else{ // If not, it needs to be added in the output data.
  10. // Do as usual
  11. [...]
  12. }

注意,这里没做规范化。这样做很讨巧,因为小三角形的切线、双切线向量也小;相对于大三角形(对最终形状影响较大),对最终结果的影响力也就小。

Shader

新增的缓冲区和uniform变量

新加上两个缓冲区:分别存放切线和双切线:

  1. GLuint tangentbuffer;
  2. glGenBuffers(1, &tangentbuffer);
  3. glBindBuffer(GL_ARRAY_BUFFER, tangentbuffer);
  4. glBufferData(GL_ARRAY_BUFFER, indexed_tangents.size() * sizeof(glm::vec3), &indexed_tangents[0], GL_STATIC_DRAW);
  5. GLuint bitangentbuffer;
  6. glGenBuffers(1, &bitangentbuffer);
  7. glBindBuffer(GL_ARRAY_BUFFER, bitangentbuffer);
  8. glBufferData(GL_ARRAY_BUFFER, indexed_bitangents.size() * sizeof(glm::vec3), &indexed_bitangents[0], GL_STATIC_DRAW);

还需要一个uniform变量存储新的法线纹理:

  1. [...]
  2. GLuint NormalTexture = loadTGA_glfw("normal.tga");
  3. [...]
  4. GLuint NormalTextureID = glGetUniformLocation(programID, "NormalTextureSampler");

另外一个uniform变量存储3x3的模型视图矩阵。严格地讲,这个矩阵不必要,但有它更方便;详见后文。由于仅仅计算旋转,不需要位移,因此只需矩阵左上角3x3的部分。

  1. GLuint ModelView3x3MatrixID = glGetUniformLocation(programID, "MV3x3");

完整的绘制代码如下:

  1. // Clear the screen
  2. glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  3. // Use our shader
  4. glUseProgram(programID);
  5. // Compute the MVP matrix from keyboard and mouse input
  6. computeMatricesFromInputs();
  7. glm::mat4 ProjectionMatrix = getProjectionMatrix();
  8. glm::mat4 ViewMatrix = getViewMatrix();
  9. glm::mat4 ModelMatrix = glm::mat4(1.0);
  10. glm::mat4 ModelViewMatrix = ViewMatrix * ModelMatrix;
  11. glm::mat3 ModelView3x3Matrix = glm::mat3(ModelViewMatrix); // Take the upper-left part of ModelViewMatrix
  12. glm::mat4 MVP = ProjectionMatrix * ViewMatrix * ModelMatrix;
  13. // Send our transformation to the currently bound shader,
  14. // in the "MVP" uniform
  15. glUniformMatrix4fv(MatrixID, 1, GL_FALSE, &MVP[0][0]);
  16. glUniformMatrix4fv(ModelMatrixID, 1, GL_FALSE, &ModelMatrix[0][0]);
  17. glUniformMatrix4fv(ViewMatrixID, 1, GL_FALSE, &ViewMatrix[0][0]);
  18. glUniformMatrix4fv(ViewMatrixID, 1, GL_FALSE, &ViewMatrix[0][0]);
  19. glUniformMatrix3fv(ModelView3x3MatrixID, 1, GL_FALSE, &ModelView3x3Matrix[0][0]);
  20. glm::vec3 lightPos = glm::vec3(0,0,4);
  21. glUniform3f(LightID, lightPos.x, lightPos.y, lightPos.z);
  22. // Bind our diffuse texture in Texture Unit 0
  23. glActiveTexture(GL_TEXTURE0);
  24. glBindTexture(GL_TEXTURE_2D, DiffuseTexture);
  25. // Set our "DiffuseTextureSampler" sampler to user Texture Unit 0
  26. glUniform1i(DiffuseTextureID, 0);
  27. // Bind our normal texture in Texture Unit 1
  28. glActiveTexture(GL_TEXTURE1);
  29. glBindTexture(GL_TEXTURE_2D, NormalTexture);
  30. // Set our "Normal TextureSampler" sampler to user Texture Unit 0
  31. glUniform1i(NormalTextureID, 1);
  32. // 1rst attribute buffer : vertices
  33. glEnableVertexAttribArray(0);
  34. glBindBuffer(GL_ARRAY_BUFFER, vertexbuffer);
  35. glVertexAttribPointer(
  36. 0, // attribute
  37. 3, // size
  38. GL_FLOAT, // type
  39. GL_FALSE, // normalized?
  40. 0, // stride
  41. (void*)0 // array buffer offset
  42. );
  43. // 2nd attribute buffer : UVs
  44. glEnableVertexAttribArray(1);
  45. glBindBuffer(GL_ARRAY_BUFFER, uvbuffer);
  46. glVertexAttribPointer(
  47. 1, // attribute
  48. 2, // size
  49. GL_FLOAT, // type
  50. GL_FALSE, // normalized?
  51. 0, // stride
  52. (void*)0 // array buffer offset
  53. );
  54. // 3rd attribute buffer : normals
  55. glEnableVertexAttribArray(2);
  56. glBindBuffer(GL_ARRAY_BUFFER, normalbuffer);
  57. glVertexAttribPointer(
  58. 2, // attribute
  59. 3, // size
  60. GL_FLOAT, // type
  61. GL_FALSE, // normalized?
  62. 0, // stride
  63. (void*)0 // array buffer offset
  64. );
  65. // 4th attribute buffer : tangents
  66. glEnableVertexAttribArray(3);
  67. glBindBuffer(GL_ARRAY_BUFFER, tangentbuffer);
  68. glVertexAttribPointer(
  69. 3, // attribute
  70. 3, // size
  71. GL_FLOAT, // type
  72. GL_FALSE, // normalized?
  73. 0, // stride
  74. (void*)0 // array buffer offset
  75. );
  76. // 5th attribute buffer : bitangents
  77. glEnableVertexAttribArray(4);
  78. glBindBuffer(GL_ARRAY_BUFFER, bitangentbuffer);
  79. glVertexAttribPointer(
  80. 4, // attribute
  81. 3, // size
  82. GL_FLOAT, // type
  83. GL_FALSE, // normalized?
  84. 0, // stride
  85. (void*)0 // array buffer offset
  86. );
  87. // Index buffer
  88. glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, elementbuffer);
  89. // Draw the triangles !
  90. glDrawElements(
  91. GL_TRIANGLES, // mode
  92. indices.size(), // count
  93. GL_UNSIGNED_INT, // type
  94. (void*)0 // element array buffer offset
  95. );
  96. glDisableVertexAttribArray(0);
  97. glDisableVertexAttribArray(1);
  98. glDisableVertexAttribArray(2);
  99. glDisableVertexAttribArray(3);
  100. glDisableVertexAttribArray(4);
  101. // Swap buffers
  102. glfwSwapBuffers();

Vertex shader

和前面讲的一样,所有计算都在观察坐标系中做,因为在这获取片断坐标更容易。这就是为什么要用模型视图矩阵乘T、B、N向量。

  1. vertexNormal_cameraspace = MV3x3 * normalize(vertexNormal_modelspace);
  2. vertexTangent_cameraspace = MV3x3 * normalize(vertexTangent_modelspace);
  3. vertexBitangent_cameraspace = MV3x3 * normalize(vertexBitangent_modelspace);

这三个向量确定了TBN矩阵,其创建方式如下:

  1. mat3 TBN = transpose(mat3(
  2. vertexTangent_cameraspace,
  3. vertexBitangent_cameraspace,
  4. vertexNormal_cameraspace
  5. )); // You can use dot products instead of building this matrix and transposing it. See References for details.

此矩阵是从观察坐标系到切线坐标系的变换(若有一矩阵名为XXX_modelspace,则它执行的是从模型坐标系到切线坐标系的变换)。可以利用它计算切线坐标系中的光线方向和视线方向。

  1. LightDirection_tangentspace = TBN * LightDirection_cameraspace;
  2. EyeDirection_tangentspace = TBN * EyeDirection_cameraspace;

Fragment shader

切线坐标系中的法线很容易获取:就在纹理中:

  1. // Local normal, in tangent space
  2. vec3 TextureNormal_tangentspace = normalize(texture2D( NormalTextureSampler, UV ).rgb*2.0 - 1.0);

一切准备就绪。漫反射光的值由切线坐标系中的n和l计算得来(在哪个坐标系中计算并不重要,重要的是n和l必须位于同一坐标系中),再用clamp( dot( n,l ), 0,1 )截断。镜面光用clamp( dot( E,R ), 0,1 )截断,E和R也必须位于同一坐标系中。搞定!S

结果

这是目前得到的结果,可以看到:

  • 砖块看上去凹凸不平,这是因为砖块表面法线变化比较剧烈
  • 水泥部分看上去很平整,这是因为这部分的法线纹理都是整齐的蓝色

normalmapping-1024x793

延伸阅读

正交化(Orthogonalization)

Vertex shader中,为了计算得更快,我们没有用矩阵求逆,而是进行了转置。这只有当矩阵表示的坐标系是正交的时候才成立,而眼前这个矩阵还不是正交的。幸运的是这个问题很容易解决:只需在computeTangentBasis()末尾让切线与法线垂直。I

  1. t = glm::normalize(t - n * glm::dot(n, t));

这个公式有点难理解,来看看图:

gramshmidt

n和t差不多是相互垂直的,只要把t沿-n方向稍微“压”一下,这个幅度是dot(n,t)
这里有一个applet也讲得很清楚(仅含两个向量)

左手坐标系还是右手坐标系?

一般不必担心这个问题。但在某些情况下,比如使用对称模型时,UV坐标方向是错的,导致切线T方向错误。

检查是否需要翻转这些方向很容易:TBN必须形成一个右手坐标系,即,向量cross(n,t)应该和b同向。

用数学术语讲,“向量A和向量B同向”就是“dot(A,B)>0”;故只需检查dot( cross(n,t) , b )是否大于0。

dot( cross(n,t) , b ) < 0,就要翻转t

  1. if (glm::dot(glm::cross(n, t), b) < 0.0f){
  2. t = t * -1.0f;
  3. }

computeTangentBasis()末对每个顶点都做这个操作。

高光纹理(Specular texture)

纯粹出于乐趣,我在代码里加上了高光纹理;取代了原先作为高光颜色的灰色vec3(0.3,0.3,0.3),现在看起来像这样:

specular

normalmappingwithspeculartexture-1024x793

注意,现在水泥部分始终是黑色的:因为高光纹理中,其高光分量为0。

用立即模式进行调试

本站的初衷是让大家不再使用过时、缓慢、问题频出的立即模式。

不过,用立即模式进行调试却十分方便:

immediatemodedebugging-1024x793

这里,我们在立即模式下画了一些线条表示切线坐标系。

要进入立即模式,得关闭3.3 Core Profile:

  1. glfwOpenWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_COMPAT_PROFILE);

然后把矩阵传给旧式的OpenGL流水线(你也可以另写一个着色器,不过这样做更简单,反正都是在hacking):

  1. glMatrixMode(GL_PROJECTION);
  2. glLoadMatrixf((const GLfloat*)&ProjectionMatrix[0]);
  3. glMatrixMode(GL_MODELVIEW);
  4. glm::mat4 MV = ViewMatrix * ModelMatrix;
  5. glLoadMatrixf((const GLfloat*)&MV[0]);

禁用着色器:

  1. glUseProgram(0);

然后画线条(本例中法线都已被归一化,乘了0.1,放到了对应顶点上):

  1. glColor3f(0,0,1);
  2. glBegin(GL_LINES);
  3. for (int i=0; i<indices.size(); i++){
  4. glm::vec3 p = indexed_vertices[indices[i]];
  5. glVertex3fv(&p.x);
  6. glm::vec3 o = glm::normalize(indexed_normals[indices[i]]);
  7. p+=o*0.1f;
  8. glVertex3fv(&p.x);
  9. }
  10. glEnd();

记住:实际项目中不要用立即模式!只在调试时用!别忘了之后恢复到Core Profile,它可以保证不会启用立即模式!

用颜色进行调试

调试时,将向量的值可视化很有用。最简单的方法是把向量都写到帧缓冲区。举个例子,我们把LightDirection_tangentspace可视化一下试试

  1. color.xyz = LightDirection_tangentspace;

colordebugging-1024x793

这说明:

  • 在圆柱体的右侧,光线(如白色线条所示)是朝上(在切线坐标系中)的。也就是说,光线和三角形的法线同向。

  • 在圆柱体的中间部分,光线和切线方向(指向+X)同向。

友情提示:

  • 可视化前,变量是否需要规范化?这取决于具体情况。
  • 如果结果不好看懂,就逐分量地可视化。比如,只观察红色,而将绿色和蓝色分量强制设为0。
  • 别折腾alpha值,太复杂了icon_smile>
  • 若想将一个负值可视化,可以采用和处理法线纹理一样的技巧:转而把(v+1.0)/2.0可视化,于是黑色就代表-1,而白色代表+1。只不过这样做有点绕弯子。

用变量名进行调试

前面已经讲过了,搞清楚向量所处的坐标系至关重要。千万别把一个观察坐标系里的向量和一个模型坐标系里的向量做点乘。

给向量名称添加后缀“_modelspace”可以有效地避免这类计算错误。

怎样制作法线贴图

作者James O’Hare。点击图片放大。

normalMapMiniTut-320x1024

练习

  • indexVBO_TBN函数中,在做加法前把向量归一化,看看结果。
  • 用颜色可视化其他向量(如instanceEyeDirection_tangentspace),试着解释你看到的结果。

工具和链接

参考文献