[UnityShader入门精要读书笔记]28.边缘检测

       边缘检测的原理是利用一些边缘检测算子对图像进行卷积操作。在图像处理中,卷积操作指的就是使用一个卷积核对一张图像中的每个像素进行一系列操作。卷积核通常是一个四方形网格结构,该区域内每个方格都有一个权重值。当对图像中的某个像素进行卷积时,我们会把卷积核的中心放置于核像素上,翻转核之后再依次计算核中每个元素和其覆盖的图像像素值的乘积求和,得到的结果就是该位置的新像素值。

        卷及操作的神奇之处在于选择的卷积核。那么,用于边缘检测的卷积核(也被称为边缘检测算子)应该长什么样呢?如果相邻像素之间存在差别明显的颜色、亮度、纹理等属性,我们就会认为它们之间应该有一条边界。这种相邻像素之间的差值可以用梯度来表示,可以想象得到,边缘处的梯度绝对值会比较大。

[UnityShader入门精要读书笔记]28.边缘检测

C#代码:

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

 

public class EdgeDetection : PostEffectBase {

    public Shader edgeDetectShader;

    private Material edgeDetectMaterial = null;

 

    public Material material{

        get

        {

            edgeDetectMaterial = CheckShaderAndCreateMaterial(edgeDetectShader,edgeDetectMaterial);

            return edgeDetectMaterial;

        }

    }

 

    [Range(0.0f, 1.0f)]

    public float edgesOnly = 0.0f;

 

    public Color edgeColor = Color.black;

 

    public Color backgroundColor = Color.white;

 

    void OnRenderImage(RenderTexture src, RenderTexture dest)

    {

        if(material != null)

        {

            material.SetFloat("_EdgeOnly", edgesOnly);

            material.SetColor("_EdgeColor", edgeColor);

            material.SetColor("_BackgroundColor", backgroundColor);

            Graphics.Blit(src, dest, material);

        }

        else

        {

            Graphics.Blit(src, dest);

        }

    }

}

Shader代码:

Shader "Unlit/EdgeDetection"

{

    Properties

    {

        _MainTex ("Texture", 2D) = "white" {}

        _EdgeOnly ("Edge Only", Float) = 1.0

        _EdgeColor ("Edge Color", Color) = (0, 0, 0, 1)

        _BackgroundColor ("Background Color", Color) = (1, 1, 1, 1)

    }

    SubShader

    {

        Tags { "RenderType"="Opaque" }

        LOD 100

 

        Pass

        {

 

            ZTest Always

            Cull Off

            ZWrite Off

 

            CGPROGRAM

            #pragma vertex vert

            #pragma fragment frag

            // make fog work

            #pragma multi_compile_fog

            

            #include "UnityCG.cginc"

 

            struct appdata

            {

                float4 vertex : POSITION;

                float2 uv : TEXCOORD0;

            };

 

            struct v2f

            {

                half2 uv[9] : TEXCOORD0;

                float4 pos : SV_POSITION;

            };

 

            sampler2D _MainTex;

            //是Unity为我们提供的方位XXX纹理对应的每个纹素的大小。

            half4 _MainTex_TexelSize;

            fixed _EdgeOnly;

            fixed4 _EdgeColor;

            fixed4 _BackgroundColor;

 

            

            v2f vert (appdata_img v)

            {

                v2f o;

                o.pos = UnityObjectToClipPos(v.vertex);

                half2 uv = v.texcoord;

                //我们在v2f结构体中定义了一个维数为9的纹理数组,对应了使用Sobel算子采样时需要的9个邻域纹理坐标。通国把计算采样纹理坐标的代码从片元着色器中转移到顶点着色器中,可以减少运算,提高性能。由于从顶点着色器到片元着色器的插值是线性的,因此这样的转移并不会影响纹理坐标的计算结果。

                o.uv[0] = uv + _MainTex_TexelSize.xy * half2(-1, -1);

                o.uv[1] = uv + _MainTex_TexelSize.xy * half2(0, -1);

                o.uv[2] = uv + _MainTex_TexelSize.xy * half2(1, -1);

                o.uv[3] = uv + _MainTex_TexelSize.xy * half2(-1, 0);

                o.uv[4] = uv + _MainTex_TexelSize.xy * half2(0, 0);

                o.uv[5] = uv + _MainTex_TexelSize.xy * half2(1, 0);

                o.uv[6] = uv + _MainTex_TexelSize.xy * half2(-1, 1);

                o.uv[7] = uv + _MainTex_TexelSize.xy * half2(0, 1);

                o.uv[8] = uv + _MainTex_TexelSize.xy * half2(1, 1);

                return o;

            }

            fixed luminance(fixed4 color) {

                return  0.2125 * color.r + 0.7154 * color.g + 0.0721 * color.b; 

            }

            

            half Sobel(v2f i) {

                //我们首先定义了水平方向和竖直方向使用的卷积核Gx和Gy。接着我们依次对9个像素进行采样,计算他们的亮度值,再与卷积核Gx和Gy中对应的权重相乘后,叠加到各自的梯度值上。最后,我们从1中减去水平方向和竖直方向的梯度值的绝对值,得到edge。edge值越小,表明该位置越可能是一个边缘检测点。

                const half Gx[9] = {-1,  0,  1,

                                        -2,  0,  2,

                                        -1,  0,  1};

                const half Gy[9] = {-1, -2, -1,

                                        0,  0,  0,

                                        1,  2,  1};     

                

                half texColor;

                half edgeX = 0;

                half edgeY = 0;

                for (int it = 0; it < 9; it++) {

                    texColor = luminance(tex2D(_MainTex, i.uv[it]));

                    edgeX += texColor * Gx[it];

                    edgeY += texColor * Gy[it];

                }

                

                half edge = 1 - abs(edgeX) - abs(edgeY);

                

                return edge;

            }

            fixed4 frag (v2f i) : SV_Target

            {

                //首先调用Sobel函数计算当前像素的梯度值edge,并利用该值分别计算了背景为原图和纯色下的颜色值,然后利用_EdgeOnly在两者之间插值得到最终的像素值。Sobel函数将利用Sobel算子对原图进行边缘检测

                half edge = Sobel(i);

 

                fixed4 withEdgeColor = lerp(_EdgeColor, tex2D(_MainTex, i.uv[4]), edge);

                fixed4 onlyEdgeColor = lerp(_EdgeColor, _BackgroundColor, edge);

 

                return lerp(withEdgeColor, onlyEdgeColor, _EdgeOnly);

            }

            ENDCG

        }

    }

}