unity3d 读取usb摄像头

using UnityEngine;
using System.Collections;

public class C : MonoBehaviour
{
    private WebCamTexture cameraTexture;
    private string cameraName = "";
    private bool isPlay = true;
    // Use this for initialization  
    void Start()
    {
        cameraTexture = new WebCamTexture();
        StartCoroutine(Test());
    }

    // Update is called once per frame  
    void Update()
    {

    }

    IEnumerator Test()
    {
        yield return Application.RequestUserAuthorization(UserAuthorization.WebCam);
        if (Application.HasUserAuthorization(UserAuthorization.WebCam))
        {
            WebCamDevice[] devices = WebCamTexture.devices;
            cameraName = devices[0].name;
            cameraTexture = new WebCamTexture(cameraName, 400, 300, 15);
            cameraTexture.Play();
            isPlay = true;
        }
    }

    void OnGUI()
    {
        if (isPlay)
        {
            GUI.DrawTexture(new Rect(0, 0, 400, 300), cameraTexture, ScaleMode.ScaleToFit);
        }
    }
}

 

posted on 2015-07-06 16:50  c_dragon  阅读(3353)  评论(0编辑  收藏  举报

导航