您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
115 行
4.3 KiB
115 行
4.3 KiB
using System;
|
|
using System.Linq;
|
|
using Unity.Collections;
|
|
using Unity.Simulation;
|
|
using UnityEngine.Experimental.Rendering;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEngine.Perception.GroundTruth
|
|
{
|
|
/// <summary>
|
|
/// RenderTextureReader reads a RenderTexture from the GPU each frame and passes the data back through a provided callback.
|
|
/// </summary>
|
|
/// <typeparam name="T">The type of the raw texture data to be provided.</typeparam>
|
|
public class RenderTextureReader<T> : IDisposable where T : struct
|
|
{
|
|
RenderTexture m_Source;
|
|
Action<int, NativeArray<T>, RenderTexture> m_ImageReadCallback;
|
|
|
|
int m_NextFrameToCapture;
|
|
|
|
Texture2D m_CpuTexture;
|
|
Camera m_CameraRenderingToSource;
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="RenderTextureReader{T}"/> for the given <see cref="RenderTexture"/>, <see cref="Camera"/>, and image readback callback
|
|
/// </summary>
|
|
/// <param name="source">The <see cref="RenderTexture"/> to read from.</param>
|
|
/// <param name="cameraRenderingToSource">The <see cref="Camera"/> which renders to the given renderTexture. This is used to determine when to read from the texture.</param>
|
|
/// <param name="imageReadCallback">The callback to call after reading the texture</param>
|
|
public RenderTextureReader(RenderTexture source, Camera cameraRenderingToSource, Action<int, NativeArray<T>, RenderTexture> imageReadCallback)
|
|
{
|
|
m_Source = source;
|
|
m_ImageReadCallback = imageReadCallback;
|
|
m_CameraRenderingToSource = cameraRenderingToSource;
|
|
m_NextFrameToCapture = Time.frameCount;
|
|
|
|
RenderPipelineManager.endFrameRendering += OnEndFrameRendering;
|
|
}
|
|
|
|
void OnEndFrameRendering(ScriptableRenderContext context, Camera[] cameras)
|
|
{
|
|
#if UNITY_EDITOR
|
|
if (UnityEditor.EditorApplication.isPaused)
|
|
return;
|
|
#endif
|
|
if (!cameras.Contains(m_CameraRenderingToSource))
|
|
return;
|
|
|
|
if (m_NextFrameToCapture > Time.frameCount)
|
|
return;
|
|
|
|
m_NextFrameToCapture = Time.frameCount + 1;
|
|
|
|
if (!GraphicsUtilities.SupportsAsyncReadback())
|
|
{
|
|
RenderTexture.active = m_Source;
|
|
|
|
if (m_CpuTexture == null)
|
|
m_CpuTexture = new Texture2D(m_Source.width, m_Source.height, m_Source.graphicsFormat, TextureCreationFlags.None);
|
|
|
|
m_CpuTexture.ReadPixels(new Rect(
|
|
Vector2.zero,
|
|
new Vector2(m_Source.width, m_Source.height)),
|
|
0, 0);
|
|
RenderTexture.active = null;
|
|
var data = m_CpuTexture.GetRawTextureData<T>();
|
|
m_ImageReadCallback(Time.frameCount, data, m_Source);
|
|
}
|
|
else
|
|
{
|
|
var commandBuffer = CommandBufferPool.Get("RenderTextureReader");
|
|
var frameCount = Time.frameCount;
|
|
commandBuffer.RequestAsyncReadback(m_Source, r => OnGpuReadback(r, frameCount));
|
|
context.ExecuteCommandBuffer(commandBuffer);
|
|
context.Submit();
|
|
CommandBufferPool.Release(commandBuffer);
|
|
}
|
|
}
|
|
|
|
void OnGpuReadback(AsyncGPUReadbackRequest request, int frameCount)
|
|
{
|
|
if (request.hasError)
|
|
{
|
|
Debug.LogError("Error reading segmentation image from GPU");
|
|
}
|
|
else if (request.done && m_ImageReadCallback != null)
|
|
{
|
|
m_ImageReadCallback(frameCount, request.GetData<T>(), m_Source);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Synchronously wait for all image requests to complete.
|
|
/// </summary>
|
|
public void WaitForAllImages()
|
|
{
|
|
AsyncGPUReadback.WaitAllRequests();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Shut down the reader, waiting for all requests to return.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
WaitForAllImages();
|
|
|
|
RenderPipelineManager.endFrameRendering -= OnEndFrameRendering;
|
|
if (m_CpuTexture != null)
|
|
{
|
|
Object.Destroy(m_CpuTexture);
|
|
m_CpuTexture = null;
|
|
}
|
|
}
|
|
}
|
|
}
|