摄像头画面显示于unity场景


🐾 个人主页 🐾

🪧阿松爱睡觉,横竖醒不来 🏅你可以不屠龙,但不能不磨剑🗡


目录

一、前言

由于标题限制,这篇文章主要是讲在unity中调用摄像头,然后将摄像头捕捉到的画面显示到场景中,无论是UI画面还是场景中的某个物体上;至于应用的场景可以用于AR增强现实。

那么话不多说,直接开始今天的内容吧!

二、UI画面

  1. 首先创建一个RawImage,用于在UI中显示画面
  2. 调整RawImage尺寸,不调整也行,这里调整主要便于演示。
    选中RawImage,然后点击Rect Transform中的方标,然后按住Alt键的同时点击最右下角的位置,直至RawImage铺满屏幕。
  3. 创建一个脚本文件,并键入以下的代码
csharp 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class WebCamToUI : MonoBehaviour
{
    // 显示视频画面的RawImage
    public RawImage rawImage; 

    // Start is called before the first frame update
    void Start()
    {
        // 创建一个WebCamTexture实例
        WebCamTexture webcamTexture = new WebCamTexture();

        // 将WebCamTexture应用到RawImage上
        rawImage.texture = webcamTexture;

        // 开始播放摄像头的纹理
        webcamTexture.Play();
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}
  1. 将脚本挂载到RawImage中,然后将开始创建的RawImage赋值给变量rawImage
  2. 运行看效果

    不好意思,搞错了,重来。

三、显示于场景

在场景中显示和在UI中显示的逻辑其实大差不差,还是比较相似的,这里以Cube为例,也可以用QuadPlane

  1. 创建一个Cube
  2. 创建一个脚本文件,键入以下代码
csharp 复制代码
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class WebCamToScene : MonoBehaviour
{
	// 需要显示摄像头内容的物体的MeshRenderer组件
    public MeshRenderer meshRenderer; 

    // Start is called before the first frame update
    void Start()
    {
        // 创建WebCamTexture实例
        WebCamTexture webcamTexture = new WebCamTexture();

        // 创建一个材质并应用摄像头纹理
        Material material = new Material(Shader.Find("Unlit/Texture"));
        material.mainTexture = webcamTexture;

        // 将材质应用到MeshRenderer上
        meshRenderer.material = material;

        // 开始播放摄像头纹理
        webcamTexture.Play();
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}
  1. 挂载脚本,赋值变量。
    这里直接拖物体只由于创建的物体中自带有Mesh Renderer组件
  2. 运行看效果

    其他的物体也可以,比如前面提到的QuadPlane

四、结语

文章看完后别忘了自己不看步骤再做一遍,巩固一下,记住脚本中的API。

这一期文章的内容就到这里,下期见,拜拜。

相关推荐
Sitarrrr1 小时前
【Unity】ScriptableObject的应用和3D物体跟随鼠标移动:鼠标放置物体在场景中
3d·unity
极梦网络无忧1 小时前
Unity中IK动画与布偶死亡动画切换的实现
unity·游戏引擎·lucene
逐·風9 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
_oP_i11 小时前
Unity Addressables 系统处理 WebGL 打包本地资源的一种高效方式
unity·游戏引擎·webgl
代码盗圣14 小时前
GODOT 4 不用scons编译cpp扩展的方法
游戏引擎·godot
Leoysq20 小时前
【UGUI】实现点击注册按钮跳转游戏场景
游戏·unity·游戏引擎·ugui
PandaQue21 小时前
《潜行者2切尔诺贝利之心》游戏引擎介绍
游戏引擎
_oP_i1 天前
unity中 骨骼、纹理和材质关系
unity·游戏引擎·材质
Padid1 天前
Unity SRP学习笔记(二)
笔记·学习·unity·游戏引擎·图形渲染·着色器
Tp_jh1 天前
推荐一款非常好用的C/C++在线编译器
linux·c语言·c++·ide·单片机·unity·云原生