练习项目(三):表面凹凸技术

概述

本篇是“练习项目”系列的第三篇,主要介绍一下利用表面凹凸技术提升物体的表面细节。为了提升模型表面的细节,一个可以想到的方式是制作更加复杂的网格,但这是不可取的。一方面会增加美术人员的工作量;另一方面,也会对机器的性能造成很大的消耗。本篇文章,将介绍一些表面凹凸的技术,来达到提高表面细节的目的。

一、凹凸贴图(Bump Mapping)

这种技术,使用高度图来计算法线。给定一张高度图,通过计算相邻像素的高度差值来改变表面法向量。

为了计算(u,v)处的法向量,要经过以下几步。

第一步,在(u-1,v)和(u+1,v)处采样高度图,得到高度值u1、u2。由此,可以得到二者之间的差值du。进而,可以得到x方向的切向量: t u = ( 1 , 0 , d u ) tu = (1,0,du) tu=(1,0,du)

第二步,在(u,v-1)和(u,v+1)处采样高度图,得到高度值v1、v2。由此,可以得到二者之间的差值dv。进而,可以得到y方向的切向量: t v = ( 0 , 1 , d v ) tv = (0,1,dv) tv=(0,1,dv)

第三步,tu和tv进行叉乘,从而得到法向量。

主要的代码如下:

float3 CalculateNormal(float2 uv)
{
	float2 du = float2(_DepthMap_TexelSize.x * 0.5,0);
	float u1 = SAMPLE_TEXTURE2D(_DepthMap,sampler_DepthMap,uv - du).r;
	float u2 = SAMPLE_TEXTURE2D(_DepthMap,sampler_DepthMap,uv + du).r;
	float3 tu = float3(1,0,(u2 - u1)*_Scale);

	float2 dv = float2(0,_DepthMap_TexelSize.y * 0.5);
	float v1 = SAMPLE_TEXTURE2D(_DepthMap,sampler_DepthMap,uv - dv).r;
	float v2 = SAMPLE_TEXTURE2D(_DepthMap,sampler_DepthMap,uv + dv).r;
	float3 tv = float3(0,1,(v2 - v1)*_Scale);

	return normalize(-cross(tu,tv));
}

代码

二、法线贴图(Normal Mapping)

法线贴图,在实际的生产过程中,应该是使用频率比较高的表面凹凸技术。恰好之前写了一篇关于法线贴图的文章,这里就不再赘述,有兴趣的可以去看一下。法线贴图那些事儿

代码

三、视差贴图(Parallax Mapping)

根据视线方向与高度图(深度图)的交点,找到新的UV。

示意图如下:

实际使用的时候,要准确求得交点,计算量很大,因此会选择使用一些近似的方案。

1、视差贴图简单版

直接根据当前UV采样的高度值,然后将该高度值乘以视线方向(单位向量),进而得到新的UV值。

如下图所示,我们根据当前的(u,v)得到深度值为d,然后将深度值乘以视线方向,能得到新的(u1,v1),可以看见该结果还是离准确的结果(黄色)比较近的。

计算新的UV的主要代码如下:

float2 ParallaxMapping(float2 uv, float3 viewDir_tangent)
{
	float3 viewDir = normalize(viewDir_tangent);
	float height = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, uv).r;
	//因为viewDir是在切线空间的(xy与uv对齐),所以只用xy偏移就行了
	float2 p = viewDir.xy / viewDir.z * (height * _HeightScale); //_HeightScale用来调整高度(深度)
	return uv - p;
}

在这里插入图片描述

在视差贴图的那个平面里你仍然能看到在边上有古怪的失真。原因是在平面的边缘上,纹理坐标超出了0到1的范围进行采样,根据纹理的环绕方式导致了不真实的结果。解决的方法是当它超出默认纹理坐标范围进行采样的时候就丢弃这个片元:

if (uv.x > 1.0 || uv.y > 1.0 || uv.x < 0.0 || uv.y < 0.0) //去掉边上的一些古怪的失真,在平面上工作得挺好的
	discard;

可以看见该简单版的实现很简单,但是效果并不十分好,只能用在平缓的凹凸面上,但表面凹凸很明显时,会有明显的失真。通过分析下面这张图就能知道为什么凹凸明显时会失真:

代码

2、带偏移量限制的视差贴图 (Parallax Mapping with offset limiting)

为了减轻视线与平面十分持平时(V.z很小导致偏移量过大)产生的怪异效果,可以去掉除以V.z这一步。

float2 ParallaxMapping(float2 uv, float3 viewDir_tangent)
{
	float3 viewDir = normalize(viewDir_tangent);
	float height = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, uv).r;
	//因为viewDir是在切线空间的(xy与uv对齐),所以只用xy偏移就行了
	float2 p = viewDir.xy * (height * _HeightScale); //_HeightScale用来调整高度(深度)
	return uv - p;
}

代码

3、陡峭视差贴图 (Steep Parallax Mapping)

陡峭视差贴图(Steep Parallax Mapping)是视差贴图的扩展,原则是一样的,但不是使用一个样本而是多个样本来计算新的UV。即使在陡峭的高度变化的情况下,它也能得到更好的结果,原因在于该技术通过增加采样的数量提高了精确性。

陡峭视差贴图的基本思想是将总深度范围划分为同一个深度/高度的多个层。从每个层中我们沿着视线方向移动采样纹理坐标,直到我们找到一个采样低于当前层的深度值。

步骤如下:

  1. 找到视线方向与第0层的交点 T 0 T_0 T0,层深度是0.0,对应深度值为0.75,因为该点在深度图之上,所以找下一个点。

  2. 找到视线方向与第1层的交点 T 1 T_1 T1,层深度是0.125,对应深度值为0.625,因为该点在深度图之上,所以找下一个点。

  3. 找到视线方向与第2层的交点 T 2 T_2 T2,层深度是0.25,对应深度值为0.4,因为该点在深度图之上,所以找下一个点。

  4. 找到视线方向与第3层的交点 T 3 T_3 T3,层深度是0.375,对应深度值为0.2,因为该点在深度图之下,所以这就是我们要找的点。

主要的代码如下:

float2 ParallaxMapping(float2 uv, float3 viewDir_tangent)
{
	float3 viewDir = normalize(viewDir_tangent);

	float layerNum = lerp(_MaxLayerNum, _MinLayerNum, abs(dot(float3(0, 0, 1), viewDir)));//一点优化:根据视角来决定分层数
	float layerDepth = 1.0 / layerNum;
	float currentLayerDepth = 0.0;
	float2 deltaTexCoords = viewDir.xy / viewDir.z / layerNum * _HeightScale;

	float2 currentTexCoords = uv;
	float currentDepthMapValue = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, currentTexCoords).r;

	//unable to unroll loop, loop does not appear to terminate in a timely manner
	//上面这个错误是在循环内使用SAMPLE_TEXTURE2D导致的,需要加上unroll来限制循环次数或者改用SAMPLE_TEXTURE2D_LOD
	// [unroll(100)]
	while(currentLayerDepth < currentDepthMapValue)
	{
		currentTexCoords -= deltaTexCoords;
		// currentDepthMapValue = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, currentTexCoords).r;
		currentDepthMapValue = SAMPLE_TEXTURE2D_LOD(_DepthMap, sampler_DepthMap, currentTexCoords, 0).r;
		currentLayerDepth += layerDepth;
	}

	return currentTexCoords;
}

在这里插入图片描述

代码

4、浮雕视差贴图 (Relief Parallax Mapping)

该方法是对陡峭视差贴图的进一步优化。在陡峭视差贴图的基础上,利用二分查找来细化结果。

如下图,假设我们利用陡峭视差贴图找到了T3,而T是准确的交点,二分查找的次数为3。

步骤:

  1. T 2 T_2 T2 T 3 T_3 T3的中点 P 1 P_1 P1,因为 P 1 P_1 P1在下面,因此用 P 1 P_1 P1取代 T 3 T_3 T3

  2. T 2 T_2 T2 P 1 P_1 P1的中点 P 2 P_2 P2,因为 P 2 P_2 P2在上面,因此用 P 2 P_2 P2取代 T 2 T_2 T2

  3. P 2 P_2 P2 P 1 P_1 P1的中点 P 3 P_3 P3,因为 P 3 P_3 P3在下面,因此用 P 3 P_3 P3取代 P 1 P_1 P1

  4. 到达二分查找次数上限,结果为 P 3 P_3 P3

主要代码如下:

float2 ParallaxMapping(float2 uv, float3 viewDir_tangent)
{
	float layerNum = lerp(_MinLayerNum, _MaxLayerNum, abs(dot(float3(0, 0, 1), viewDir_tangent)));
	float layerDepth = 1.0 / layerNum;
	float currentLayerDepth = 0.0;
	float2 deltaUV = viewDir_tangent.xy / viewDir_tangent.z * _HeightScale / layerNum;

	float2 currentTexCoords = uv;
	float currentDepthMapValue = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, currentTexCoords).r;

	//unable to unroll loop, loop does not appear to terminate in a timely manner
	//上面这个错误是在循环内使用SAMPLE_TEXTURE2D导致的,需要加上unroll来限制循环次数或者改用SAMPLE_TEXTURE2D_LOD
	// [unroll(100)]
	while(currentLayerDepth < currentDepthMapValue)
	{
		currentTexCoords -= deltaUV;
		// currentDepthMapValue = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, currentTexCoords).r;
		currentDepthMapValue = SAMPLE_TEXTURE2D_LOD(_DepthMap, sampler_DepthMap, currentTexCoords, 0).r;
		currentLayerDepth += layerDepth;
	}

	//二分查找
	float2 halfDeltaUV = deltaUV / 2;
	float halfLayerDepth = layerDepth / 2;

	currentTexCoords += halfDeltaUV;
	currentLayerDepth -= halfLayerDepth;

	int numSearches = 5;
	for (int i = 0; i < numSearches; i ++)
	{
		halfDeltaUV = halfDeltaUV / 2;
		halfLayerDepth = halfLayerDepth / 2;

		currentDepthMapValue = SAMPLE_TEXTURE2D_LOD(_DepthMap, sampler_DepthMap, currentTexCoords, 0).r;

		if (currentDepthMapValue > currentLayerDepth)
		{
			currentTexCoords -= halfDeltaUV;
			currentLayerDepth += halfLayerDepth;
		}
		else
		{
			currentTexCoords += halfDeltaUV;
			currentLayerDepth -= halfLayerDepth;
		}
	}

	return currentTexCoords;
}

代码

5、视差遮蔽贴图 (Parallax Occlusion Mapping, POM)

视差遮蔽贴图(Parallax Occlusion Mapping)和陡峭视差贴图的原则相同,但不是用触碰的第一个深度层的纹理坐标,而是在触碰之前和之后,在深度层之间进行线性插值。我们根据表面的高度距离啷个深度层的深度层值的距离来确定线性插值的大小。

利用陡峭视差贴图得到最靠近交点的 T 2 T_2 T2 T 3 T_3 T3后,根据这两者的深度与对应层深度的差值作为比例进行插值。

看看下面的图片就能了解它是如何工作的:

主要代码如下:

float2 prevTexCoords = currentTexCoords + deltaTexCoords;
float prevLayerDepth = currentLayerDepth - layerDepth;

float afterDepth = currentDepthMapValue - currentLayerDepth;
float beforeDepth = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, prevTexCoords).r - prevLayerDepth;
float weight = afterDepth / (afterDepth - beforeDepth);
//权重越大,纹理坐标的比重越小
float2 finalTexCoords = prevTexCoords * weight + currentTexCoords * (1.0 - weight);

return finalTexCoords;

代码

6、带自阴影的视差贴图

上面的几种视差贴图都没有考虑自阴影(即凸起部分能向其他部分投射阴影)。要实现自阴影也不难,和制作深度图一样,此时沿着光线方向指向我们利用视差贴图找到的交点,然后判断该交点是否被其他部分遮蔽了。

实际上大部分操作和视差贴图类似,只是把操作的向量从视线向量改为光线向量而已。

主要的代码如下:

float ParallaxShadow(float3 lightDir_tangent, float2 initialUV, float initialHeight)
{
	float3 lightDir = normalize(lightDir_tangent);

	float shadowMultiplier = 1;

	const float minLayers = 15;
	const float maxLayers = 30;

	//只算正对阳光的面
	if (dot(float3(0, 0, 1), lightDir) > 0)
	{
		float numSamplesUnderSurface = 0;
		float numLayers = lerp(maxLayers, minLayers, abs(dot(float3(0, 0, 1), lightDir))); //根据光线方向决定层数
		float layerHeight = 1 / numLayers;
		float2 texStep = _HeightScale * lightDir.xy / lightDir.z / numLayers;

		float currentLayerHeight = initialHeight - layerHeight;
		float2 currentTexCoords = initialUV + texStep;
		float heightFromTexture = SAMPLE_TEXTURE2D(_DepthMap, sampler_DepthMap, currentTexCoords).r;

		while(currentLayerHeight > 0)
		{
			if (heightFromTexture <= currentLayerHeight)
				numSamplesUnderSurface += 1; //统计被遮挡的层数

			currentLayerHeight -= layerHeight;
			currentTexCoords += texStep;
			heightFromTexture = SAMPLE_TEXTURE2D_LOD(_DepthMap, sampler_DepthMap, currentTexCoords, 0).r;
		}

		shadowMultiplier = 1 - numSamplesUnderSurface / numLayers; //根据被遮挡的层数来决定阴影深浅
	}

	return shadowMultiplier;
}

代码

7、带软自阴影的视差贴图

为了美化上面的自阴影效果,这里使用软阴影。

主要的代码如下:

while(currentLayerHeight > 0)
{
	if (heightFromTexture < currentLayerHeight)
	{
		numSamplesUnderSurface += 1;
		float newShadowMultiplier = (currentLayerHeight - heightFromTexture) * (1.0 - stepIndex / numLayers);
		shadowMultiplier = max(shadowMultiplier, newShadowMultiplier);
	}

	stepIndex += 1;
	currentLayerHeight -= layerHeight;
	currentTexCoords += texStep;
	heightFromTexture = SAMPLE_TEXTURE2D_LOD(_DepthMap, sampler_DepthMap, currentTexCoords, 0).r;
}

if(numSamplesUnderSurface < 1)
{
	shadowMultiplier = 1;
}
else
{
	shadowMultiplier = 1.0 - shadowMultiplier;
}

代码

参考

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值