zoukankan      html  css  js  c++  java
  • Camera’s Depth Texture

    https://docs.unity3d.com/Manual/SL-CameraDepthTexture.html

    Camera’s Depth Texture(Unity5.5 doc)

    Camera can generate a depth, depth+normals, or motion vector Texture(运动矢量纹理). This is a minimalistic G-buffer Texture(简略版G-buffer) that can be used for post-processing(后置处理) effects or to implement custom lighting models (e.g. light pre-pass). It is also possible to build similar textures yourself, using Shader Replacementfeature.

    The Camera’s depth Texture mode can be enabled using Camera.depthTextureMode variable from script.

    There are three possible depth texture modes:

    • DepthTextureMode.Depth: a depth texture.
    • DepthTextureMode.DepthNormals: depth and view space normals packed into one texture.*
    • DepthTextureMode.MotionVectors: per-pixel screen space motion of each screen texel for the current frame. Packed into a RG16 texture.

    These are flags, so it is possible to specify any combination of the above textures.

    这句貌似是说可以用|混合上面3种方式的组合


    DepthTextureMode.Depth texture

    This builds a screen-sized depth texture.

    Depth texture is rendered using the same shader passes as used for shadow caster rendering (ShadowCaster pass type). So by extension, if a shader does not support shadow casting (i.e. there’s no shadow caster pass in the shader or any of the fallbacks), then objects using that shader will not show up in the depth texture.

    深度贴图使用的passes跟shadow caster一样,所以,如果某个shader不支持shadow casting(shader中没有shadow caster pass,也没有任何shadow caster相关的fallbacks),那么使用这个shader的obj不会显示到深度贴图中。

    • Make your shader fallback to some other shader that has a shadow casting pass, or
    • If you’re using surface shaders, adding an addshadow directive will make them generate a shadow pass too.
    • (因为前面的原因,要正常生成深度贴图的画,就要保证)使shader 回调(fallback)到其他的包含shadow casting pass的shader,或者
    • 如果用的是surface shaders,添加addshadow指令,那么surface shader在生产代码时会自动生成一个shadow pass。

    Note that only “opaque” objects (that which have their materials and shaders setup to use render queue <= 2500) are rendered into the depth texture.

    注意只有不透明obj(queue<2500)会被渲染到深度贴图(注:其实Geometry是2000,后面AlphaText是3000,这里限制的是2500)


    DepthTextureMode.DepthNormals texture

    This builds a screen-sized 32 bit (8 bit/channel) texture, where view space normals are encoded into R&G channels, and depth is encoded in B&A channels. Normals are encoded using Stereographic projection, and depth is 16 bit value packed into two 8 bit channels.

    UnityCG.cginc include file has a helper function DecodeDepthNormal to decode depth and normal from the encoded pixel value. Returned depth is in 0..1 range.

    For examples on how to use the depth and normals texture, please refer to the EdgeDetection image effect in the Shader Replacement example project or Screen Space Ambient Occlusion Image Effect.

    (这种模式)创建一个屏幕大小,32bit(8bit每个通道)的贴图,观察空间法向量会被编码到R和G通道,深度被编码到B和A通道

    法线使用 球极平面投影(把球表面投到平面,为什么能存法线??),深度16bit,被压到两个8bit 的通道中

    UnityCG.cginc中有对应解码方法,DecodeDepthNormal,返回的深度在0-1之间

    深度法线贴图使用例子,清参考Shader替代工程中的边缘检测图片特效,或屏幕空间环境光遮蔽(物体靠近或相交时遮挡周围漫反射效果)图形特效

    DepthTextureMode.MotionVectors texture

    This builds a screen-sized RG16 (16-bit float/channel) texture, where screen space pixel motion is encoded into the R&G channels. The pixel motion is encoded in screen UV space.

    When sampling from this texture motion from the encoded pixel is returned in a rance of –1..1. This will be the UV offset from the last frame to the current frame.

    这个暂时不知道什么时候用,掠过

    Tips & Tricks

    Camera inspector indicates when a camera is rendering a depth or a depth+normals texture.

    Camera详情显示器会指明camera是否正在渲染深度或深度+法线贴图

    The way that depth textures are requested from the Camera (Camera.depthTextureMode) might mean that after you disable an effect that needed them, the Camera might still continue rendering them. If there are multiple effects present on a Camera, where each of them needs the depth texture, there’s no good way to automatically disable depth texture rendering if you disable the individual effects.

    对于设置深度贴图模式的方法(Camera.depthTextureMode),当你禁用一个需要这个方法的效果时,Camera还会持续渲染(你设置的深度贴图类型),如果一个Camera当前有多个效果,每个(效果)都需要深度贴图,如果你禁用某个独立的效果,没有一个好的办法去自动禁用深度贴图渲染。-------这段不理解。。。。。。。。


    When implementing complex Shaders or Image Effects, keep Rendering Differences Between Platforms in mind. In particular, using depth texture in an Image Effect often needs special handling on Direct3D + Anti-Aliasing.

    当引入复合shader或图片特效时,要保证考虑不同平台渲染差异,特别说明,对于DX+反锯齿,使用深度贴图的图片特效经常需要特殊处理。

    In some cases, the depth texture might come directly from the native Z buffer. If you see artifacts in your depth texture, make sure that the shaders that use it do not write into the Z buffer (use ZWrite Off).

    有些情况下,深度贴图直接来自原生zbuffer,如果在你的深度贴图中看到artifacts,确保使用(深度贴图)的shader没有写入zbuffer(确保把ZWrite Off加上)

    Shader variables

    Depth textures are available for sampling in shaders as global shader properties. By declaring a sampler called _CameraDepthTexture you will be able to sample the main depth texture for the camera.

    在shader中深度贴图可以作为全局shader属性,通过定义一个名称为_CameraDepthTexture的sampler,你就能采集相机的主深度图

    _CameraDepthTexture always refers to the camera’s primary depth texture. By contrast, you can use _LastCameraDepthTexture to refer to the last depth texture rendered by any camera. This could be useful for example if you render a half-resolution depth texture in script using a secondary camera and want to make it available to a post-process shader.

    _CameraDepthTexture总是跟相机主深度图相关,

    你可以使用跟任何相机渲染的最后一次深度图相关的_LastCameraDepthTexture变量。举个栗子,如果你在脚本中使用第二个相机渲染一个半分辨率深度图,并且想让其在后处理shader中使用。

    The motion vectors texture (when enabled) is avaialable in Shaders as a global Shader property. By declaring a sampler called ‘_CameraMotionVectorsTexture’ you can sample the Texture for the curently rendering Camera.

    Under the hood(底层)

    Depth textures can come directly from the actual depth buffer, or be rendered in a separate pass, depending on the rendering path used and the hardware. Typically when using Deferred Shading or Legacy Deferred Lighting rendering paths, the depth textures come “for free” since they are a product of the G-buffer rendering anyway.

    深度贴图可以直接来自深度缓存,或者在一个独立pass中渲染,这取决于渲染路径和硬件。

    典型的情况,当使用新旧延迟渲染路径时,深度贴图是在G-buffer渲染完成后(?是渲染时还是处理完成后?)直接取出来的(这个估计还需要看了延迟渲染具体过程才能理解)。

    When the DepthNormals texture is rendered in a separate pass, this is done through Shader Replacement. Hence it is important to have correct “RenderType” tag in your shaders.

    深度法线贴图在一个独立pass中渲染是通过shader替代完成的,所以设置正确的"RenderType"很重要(材质渲染替代通常都用RenderType这个Tag,也可以使用自定义的Tag)

    When enabled, the MotionVectors texture always comes from a extra render pass. Unity will render moving GameObjects into this buffer, and construct their motion from the last frame to the current frame.

    See also

  • 相关阅读:
    The type or namespace name 'Windows' does not exist in the namespace....
    WCF 事件处理
    ASP.Net程序在IIS7的部署问题
    Oracle Package的全局变量与Session
    [ASP.NET]C1Webgrid中实现编辑和计算
    EXCEL妙用:选取单元格时改变整行的背景色
    [转]22 个精美的网站管理后台模板推荐
    [转]C#开发Active控件(二)
    Oracle获取时间差的技巧
    C#里的Random
  • 原文地址:https://www.cnblogs.com/nafio/p/9137190.html
Copyright © 2011-2022 走看看