XRRGBCamera.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using Unity.Collections;
  5. using UnityEngine;
  6. using UnityEngine.UI;
  7. using UnityEngine.XR.ARFoundation;
  8. using UnityEngine.XR.ARSubsystems;
  9. using SC.XR.Unity;
  10. public class XRRGBCamera : SingletonMono<XRRGBCamera>
  11. {
  12. public bool isARCamrea;
  13. public static XRRGBCamera Instance;
  14. public Texture CaptureImage;
  15. public WebCamTexture RGBCamTexture;
  16. private void Awake()
  17. {
  18. Instance = this;
  19. }
  20. private void Start()
  21. {
  22. if (isARCamrea)
  23. {
  24. // 获取 ARCameraManager 组件
  25. cameraManager = FindObjectOfType<ARCameraManager>();
  26. cameraManager.frameReceived -= OnCameraFrameReceived;
  27. // 订阅更新事件
  28. cameraManager.frameReceived += OnCameraFrameReceived;
  29. }
  30. // 获取可用的摄像头设备
  31. playCamera();
  32. }
  33. public ARCameraManager cameraManager;
  34. private Material cameraBackgroundMaterial;
  35. public void playCamera()
  36. {
  37. if (isARCamrea)
  38. {
  39. // Vuforia.VuforiaBehaviour.Instance.enabled = true;
  40. }
  41. else
  42. {
  43. // 将WebCamTexture绑定到RawImage组件以显示摄像头捕捉到的图像
  44. WebCamDevice[] devices = WebCamTexture.devices;
  45. if (devices.Length == 0)
  46. {
  47. Debug.Log("No webcam devices found.");
  48. return;
  49. }
  50. // 使用第一个可用的摄像头设备(你可以根据需要选择其他设备)
  51. RGBCamTexture = new WebCamTexture(devices[0].name, 1280, 720, 30);
  52. Debug.Log("开启摄像头" + devices[0].name);
  53. // 开始摄像头捕捉
  54. RGBCamTexture.Play();
  55. CaptureImage = RGBCamTexture;
  56. if (this.GetComponent<RawImage>() != null)
  57. {
  58. this.GetComponent<RawImage>().texture = CaptureImage;
  59. this.GetComponent<RawImage>().transform.localEulerAngles = new Vector3(0, 0, 0);
  60. }
  61. Debug.Log("开启摄像头");
  62. }
  63. }
  64. Texture2D cameraTexture;
  65. private void OnCameraFrameReceived(ARCameraFrameEventArgs eventArgs)
  66. {
  67. Debug.Log("获取OnCameraFrameReceivedOnCameraFrameReceived");
  68. // 获取最新的摄像头图像
  69. if (!cameraManager.TryAcquireLatestCpuImage(out XRCpuImage image))
  70. {
  71. return;
  72. }
  73. var format = TextureFormat.RGBA32;
  74. if (cameraTexture == null || cameraTexture.width != image.width || cameraTexture.height != image.height)
  75. {
  76. cameraTexture = new Texture2D(image.width, image.height, format, false);
  77. }
  78. XRCpuImage.Transformation m_Transformation = XRCpuImage.Transformation.MirrorY;
  79. // Convert the image to format, flipping the image across the Y axis.
  80. // We can also get a sub rectangle, but we'll get the full image here.
  81. var conversionParams = new XRCpuImage.ConversionParams(image, format, m_Transformation);
  82. // Texture2D allows us write directly to the raw texture data
  83. // This allows us to do the conversion in-place without making any copies.
  84. var rawTextureData = cameraTexture.GetRawTextureData<byte>();
  85. try
  86. {
  87. image.Convert(conversionParams, rawTextureData);
  88. }
  89. finally
  90. {
  91. // We must dispose of the XRCpuImage after we're finished
  92. // with it to avoid leaking native resources.
  93. image.Dispose();
  94. }
  95. // Apply the updated texture data to our texture
  96. cameraTexture.Apply();
  97. CaptureImage = cameraTexture;
  98. if (this.GetComponent<RawImage>() != null)
  99. {
  100. this.GetComponent<RawImage>().texture = CaptureImage;
  101. this.GetComponent<RawImage>().transform.localEulerAngles = new Vector3(0, 0, 180);
  102. }
  103. }
  104. public void Update()
  105. {
  106. }
  107. public void stopCamera()
  108. {
  109. if (RGBCamTexture != null && RGBCamTexture.isPlaying)
  110. {
  111. RGBCamTexture.Stop();
  112. }
  113. }
  114. }