Unity 中的相片視訊相機

啟用相機存取的功能

必須宣告 「WebCam」 功能,應用程式才能使用 相機

  1. 在 Unity 編輯器中,流覽至 [編輯 > 專案設定 > 播放機] 頁面,以移至播放機設定
  2. 選取 [Windows 市集] 索引標籤
  3. 在 [發佈設定 > 功能] 區段中,檢查 WebCam麥克風 功能

一次只有單一作業可以與相機一起發生。 您可以在 Unity 2018 和更早版本或 UnityEngine.Windows.WebCam.Mode Unity 2019 和更新版本中檢查相機目前所在的 UnityEngine.XR.WSA.WebCam.Mode 模式。 可用的模式為相片、視訊或無。

相片擷

Unity 2019) :UnityEngine.XR.WSA.WebCam之前的命名空間 (
命名空間 (Unity 2019 及更新版本) :UnityEngine.Windows.WebCam
Type:PhotoCapture

PhotoCapture類型可讓您使用相片視訊相機拍攝仍然相片。 使用 PhotoCapture 進行相片的一般模式如下所示:

  1. 建立 PhotoCapture 物件
  2. 使用您想要的設定建立 CameraParameters 物件
  3. 透過StartPhotoModeAsync啟動相片模式
  4. 拍攝您想要的相片
    • (選擇性) 與該圖片互動
  5. 停止相片模式並清除資源

PhotoCapture 的常見設定

針對這三個用途,請從上述相同的前三個步驟開始

從建立 PhotoCapture 物件開始

private void Start()
{
    PhotoCapture.CreateAsync(false, OnPhotoCaptureCreated);
}

接下來,儲存物件、設定參數,以及啟動相片模式

private PhotoCapture photoCaptureObject = null;

void OnPhotoCaptureCreated(PhotoCapture captureObject)
{
    photoCaptureObject = captureObject;

    Resolution cameraResolution = PhotoCapture.SupportedResolutions.OrderByDescending((res) => res.width * res.height).First();

    CameraParameters c = new CameraParameters();
    c.hologramOpacity = 0.0f;
    c.cameraResolutionWidth = cameraResolution.width;
    c.cameraResolutionHeight = cameraResolution.height;
    c.pixelFormat = CapturePixelFormat.BGRA32;

    captureObject.StartPhotoModeAsync(c, false, OnPhotoModeStarted);
}

最後,您也會使用這裡顯示的相同清除程式碼

void OnStoppedPhotoMode(PhotoCapture.PhotoCaptureResult result)
{
    photoCaptureObject.Dispose();
    photoCaptureObject = null;
}

這些步驟之後,您可以選擇要擷取的相片類型。

將相片擷取到檔案

最簡單的作業是直接將相片擷取至檔案。 相片可以儲存為 JPG 或 PNG。

如果您已成功啟動相片模式,請拍攝相片並將其儲存在磁片上

private void OnPhotoModeStarted(PhotoCapture.PhotoCaptureResult result)
{
    if (result.success)
    {
        string filename = string.Format(@"CapturedImage{0}_n.jpg", Time.time);
        string filePath = System.IO.Path.Combine(Application.persistentDataPath, filename);

        photoCaptureObject.TakePhotoAsync(filePath, PhotoCaptureFileOutputFormat.JPG, OnCapturedPhotoToDisk);
    }
    else
    {
        Debug.LogError("Unable to start photo mode!");
    }
}

將相片擷取到磁片之後,結束相片模式,然後清除物件

void OnCapturedPhotoToDisk(PhotoCapture.PhotoCaptureResult result)
{
    if (result.success)
    {
        Debug.Log("Saved Photo to disk!");
        photoCaptureObject.StopPhotoModeAsync(OnStoppedPhotoMode);
    }
    else
    {
        Debug.Log("Failed to save Photo to disk");
    }
}

使用位置將相片擷取至 Texture2D

將資料擷取到 Texture2D 時,此程式類似于擷取至磁片。

請遵循上述設定程式。

OnPhotoModeStarted中,將框架擷取至記憶體。

private void OnPhotoModeStarted(PhotoCapture.PhotoCaptureResult result)
{
    if (result.success)
    {
        photoCaptureObject.TakePhotoAsync(OnCapturedPhotoToMemory);
    }
    else
    {
        Debug.LogError("Unable to start photo mode!");
    }
}

然後,您將結果套用至紋理,並使用上述常見的清除程式碼。

void OnCapturedPhotoToMemory(PhotoCapture.PhotoCaptureResult result, PhotoCaptureFrame photoCaptureFrame)
{
    if (result.success)
    {
        // Create our Texture2D for use and set the correct resolution
        Resolution cameraResolution = PhotoCapture.SupportedResolutions.OrderByDescending((res) => res.width * res.height).First();
        Texture2D targetTexture = new Texture2D(cameraResolution.width, cameraResolution.height);
        // Copy the raw image data into our target texture
        photoCaptureFrame.UploadImageDataToTexture(targetTexture);
        // Do as we wish with the texture such as apply it to a material, etc.
    }
    // Clean up
    photoCaptureObject.StopPhotoModeAsync(OnStoppedPhotoMode);
}

定位相機

若要將此紋理放在場景中,並使用可取代的相機矩陣來顯示它,請在檢查中 result.success 將下列程式碼新增至OnCapturedPhotoToMemory

if (photoCaptureFrame.hasLocationData)
{
    photoCaptureFrame.TryGetCameraToWorldMatrix(out Matrix4x4 cameraToWorldMatrix);

    Vector3 position = cameraToWorldMatrix.GetColumn(3) - cameraToWorldMatrix.GetColumn(2);
    Quaternion rotation = Quaternion.LookRotation(-cameraToWorldMatrix.GetColumn(2), cameraToWorldMatrix.GetColumn(1));

    photoCaptureFrame.TryGetProjectionMatrix(Camera.main.nearClipPlane, Camera.main.farClipPlane, out Matrix4x4 projectionMatrix);
}

Unity 已提供範例程式碼 ,以在其論壇上將投影矩陣套用至特定的著色器。

擷取相片並與原始位元組互動

若要與記憶體框架中的原始位元組互動,請遵循上述和 OnPhotoModeStarted 相同的設定步驟,如同將相片擷取至 Texture2D 一樣。 差異在於 OnCapturedPhotoToMemory ,您可以在其中取得原始位元組並與其互動。

在此範例中,您將建立清單,以透過SetPixels () 進一步處理或套用至紋理

void OnCapturedPhotoToMemory(PhotoCapture.PhotoCaptureResult result, PhotoCaptureFrame photoCaptureFrame)
{
    if (result.success)
    {
        List<byte> imageBufferList = new List<byte>();
        // Copy the raw IMFMediaBuffer data into our empty byte list.
        photoCaptureFrame.CopyRawImageDataIntoBuffer(imageBufferList);

        // In this example, we captured the image using the BGRA32 format.
        // So our stride will be 4 since we have a byte for each rgba channel.
        // The raw image data will also be flipped so we access our pixel data
        // in the reverse order.
        int stride = 4;
        float denominator = 1.0f / 255.0f;
        List<Color> colorArray = new List<Color>();
        for (int i = imageBufferList.Count - 1; i >= 0; i -= stride)
        {
            float a = (int)(imageBufferList[i - 0]) * denominator;
            float r = (int)(imageBufferList[i - 1]) * denominator;
            float g = (int)(imageBufferList[i - 2]) * denominator;
            float b = (int)(imageBufferList[i - 3]) * denominator;

            colorArray.Add(new Color(r, g, b, a));
        }
        // Now we could do something with the array such as texture.SetPixels() or run image processing on the list
    }
    photoCaptureObject.StopPhotoModeAsync(OnStoppedPhotoMode);
}

視訊擷取

Unity 2019) :UnityEngine.XR.WSA.WebCam之前的命名空間 (
命名空間 (Unity 2019 及更新版本) :UnityEngine.Windows.WebCam
Type:VideoCapture

VideoCapture 函式類似于 PhotoCapture。 唯一的兩個差異在於您必須指定每秒畫面格 (FPS) 值,而且您只能直接將磁片儲存為.mp4檔案。 使用 VideoCapture 的步驟如下所示:

  1. 建立 VideoCapture 物件
  2. 使用您想要的設定建立 CameraParameters 物件
  3. 透過StartVideoModeAsync啟動視訊模式
  4. 開始錄製影片
  5. 停止錄製影片
  6. 停止視訊模式並清除資源

首先,建立 VideoCapture 物件 VideoCapture m_VideoCapture = null;

void Start ()
{
    VideoCapture.CreateAsync(false, OnVideoCaptureCreated);
}

接下來,設定您要錄製並啟動的參數。

void OnVideoCaptureCreated(VideoCapture videoCapture)
{
    if (videoCapture != null)
    {
        m_VideoCapture = videoCapture;

        Resolution cameraResolution = VideoCapture.SupportedResolutions.OrderByDescending((res) => res.width * res.height).First();
        float cameraFramerate = VideoCapture.GetSupportedFrameRatesForResolution(cameraResolution).OrderByDescending((fps) => fps).First();

        CameraParameters cameraParameters = new CameraParameters();
        cameraParameters.hologramOpacity = 0.0f;
        cameraParameters.frameRate = cameraFramerate;
        cameraParameters.cameraResolutionWidth = cameraResolution.width;
        cameraParameters.cameraResolutionHeight = cameraResolution.height;
        cameraParameters.pixelFormat = CapturePixelFormat.BGRA32;

        m_VideoCapture.StartVideoModeAsync(cameraParameters,
                                            VideoCapture.AudioState.None,
                                            OnStartedVideoCaptureMode);
    }
    else
    {
        Debug.LogError("Failed to create VideoCapture Instance!");
    }
}

啟動之後,開始錄製

void OnStartedVideoCaptureMode(VideoCapture.VideoCaptureResult result)
{
    if (result.success)
    {
        string filename = string.Format("MyVideo_{0}.mp4", Time.time);
        string filepath = System.IO.Path.Combine(Application.persistentDataPath, filename);

        m_VideoCapture.StartRecordingAsync(filepath, OnStartedRecordingVideo);
    }
}

錄製開始之後,您可以更新 UI 或行為以啟用停止。 您在這裡只會記錄。

void OnStartedRecordingVideo(VideoCapture.VideoCaptureResult result)
{
    Debug.Log("Started Recording Video!");
    // We will stop the video from recording via other input such as a timer or a tap, etc.
}

稍後,您會想要使用計時器或使用者輸入來停止錄製,例如。

// The user has indicated to stop recording
void StopRecordingVideo()
{
    m_VideoCapture.StopRecordingAsync(OnStoppedRecordingVideo);
}

錄製停止之後,請停止視訊模式並清除您的資源。

void OnStoppedRecordingVideo(VideoCapture.VideoCaptureResult result)
{
    Debug.Log("Stopped Recording Video!");
    m_VideoCapture.StopVideoModeAsync(OnStoppedVideoCaptureMode);
}

void OnStoppedVideoCaptureMode(VideoCapture.VideoCaptureResult result)
{
    m_VideoCapture.Dispose();
    m_VideoCapture = null;
}

疑難排解

  • 沒有可用的解決方案
    • 請確定您的專案中已指定 WebCam 功能。

下一個開發檢查點

如果您遵循我們配置的 Unity 開發檢查點旅程,您會在探索Mixed Reality平臺功能和 API。 接下來,您可以繼續進行下一個主題:

或者,直接跳到在裝置或模擬器上部署應用程式的主題:

您可以隨時回到 Unity 開發檢查點

另請參閱