unity 打开摄像头(图像倒立的变换) 和显示所有摄像头的名称

using UnityEngine;  
using System.Collections;  

public class DetectDeviceList : MonoBehaviour {  

	// Use this for initialization  
	void Start () {  

		WebCamTexture webcamTexture = new WebCamTexture ();  

		//如果有后置摄像头,调用后置摄像头  
		for (int i = 0; i < WebCamTexture.devices.Length; i++) {  
			
			print (WebCamTexture.devices [i].name);

			if (WebCamTexture.devices [i].name == "Creative GestureCam") {  
				webcamTexture.deviceName = WebCamTexture.devices [i].name;  

				break;  
			}  
		}  

		Renderer renderer = GetComponent<Renderer>();  
		renderer.material.mainTexture = webcamTexture;  
		webcamTexture.Play();  
	}  

}  



把相机移到平面的另一侧,同时平面绕x轴旋转90



2, Unity3d,调用摄像头显示

3, 图像水平变换

MirrorFlipCamera.cs 脚本放在相机上,这样是整个视野的图像都会变化

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class MirrorFlipCamera : MonoBehaviour
{
	new Camera camera;
	public bool flipHorizontal;
	void Awake()
	{
		camera = GetComponent<Camera>();
	}
	void OnPreCull()
	{
		camera.ResetWorldToCameraMatrix();
		camera.ResetProjectionMatrix();
		Vector3 scale = new Vector3(flipHorizontal ? -1 : 1, 1, 1);
		//Vector3 scale = new Vector3(1,flipHorizontal ? -1 : 1,  1);
		//Vector3 scale = new Vector3(1,1 , flipHorizontal ? -1 : 1);
		camera.projectionMatrix = camera.projectionMatrix * Matrix4x4.Scale(scale);
	}
	void OnPreRender()
	{
		GL.invertCulling = flipHorizontal;
	}


	void OnPostRender()
	{
		GL.invertCulling = false;
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值