当前位置:   article > 正文

Unity 学习—— 使用Cinemachine让摄像头沿轨道进行运动并进行机器图片和boxes数据截取_cinemachine dolly track

cinemachine dolly track

 简介.  整个功能是在Unity里面主摄像头旋转移动的过程中对目标的机器模型进行截取图片和数据集。(unity如果没有cinemachine组件,需要自己去package manager下载安装适合自己的版本。(供自学记录)

一.  通过Cinemachine提供的组件,我们实现让摄像头沿着自定义的轨道进行运动,整个功能的实现由三部分构成。

        ①. 虚拟摄像机(Virtual Camera)

        ②. 轨道路径  (Dolly Track

        ③. 主摄像头 (Main Camera)

实现方式:将虚拟摄像机和主摄像头与轨道进行绑定,然后沿轨道自动运动。

(1) 点击 GameObject,选择创建空物体(命名 Dolly Track) 屏幕右侧Inspector 界面选择添加CinemachineSmoothPath组件(当设置路径弯曲时会自动平滑),如果选择CinemachinePath的话,路径弯曲可由自己进行调整。

参数介绍:

  • Resolution,表示路径的精细度,值越大 路径间的分段就越多
  • Looped,勾选表示头尾相互连接
  • Waypoints,自定义设置的坐标路径点, Roll是翻转角度 有点类似过山车

 (2)设置主摄像头(Main Camera),选择主摄像头Add Component 为主摄像头添加CinemachineDollyCart 组件和CinemachineBrain组件。

 参数介绍:

  • Path,表示选择的轨道路径,这里我们选择上面创建的Dolly Track 
  • Speed,小车沿轨道运动的路径

(3) 创建虚拟摄像头(Virtual Camera) 点击左上Component 选择CinemachineCinemachineVirtualCamera

 参数介绍:

  • Follow,选择相机跟随的目标,这里选择刚创建的主摄像机(Main Camera)
  • Look At,表示相机的朝向,这里选择要拍摄图片和采集数据的GS8机器,当机器由多部件构成时,可自由选择其中某一部件即可
  • Camera Up,摄像机运动时的朝上坐标,可根据想要的效果选择
  • Enabled,勾选表示开启该功能,一定要勾选 否则相机不会跟着主摄像头一起运动

到此,完成效果图如下:当 Play按钮时,相机会围绕着轨道做匀速运动

 二. 为主摄像机添加截取图片的cs文件,选择Add component 选择写好存放在Assets目录下的cs文件,代码如下:

  1. using UnityEngine;
  2. using System.Collections;
  3. //截图
  4. // Capture frames as a screenshot sequence. Images are
  5. // stored as PNG files in a folder - these can be combined into
  6. // a movie using image utility software (eg, QuickTime Pro).
  7. public class Capture : MonoBehaviour
  8. {
  9. // The folder to contain our screenshots.
  10. // If the folder exists we will append numbers to create an empty folder.
  11. public string folder = "ScreenshotFolder";
  12. public int frameRate = 30;
  13. private float videoTime = 0;
  14. void Start()
  15. {
  16. // Set the playback framerate (real time will not relate to game time after this).
  17. //Time.captureDeltaTime = 1.0f / 10;
  18. // Create the folder
  19. System.IO.Directory.CreateDirectory(folder);
  20. }
  21. void Update()
  22. {
  23. videoTime += Time.deltaTime;
  24. if (videoTime >= (1f / (float)frameRate))
  25. {
  26. // Append filename to folder name (format is '0005 shot.png"')
  27. string name = string.Format("{0}/{1}.png", folder, videoTime.ToString("0.00"));
  28. // Capture the screenshot to the specified file.
  29. ScreenCapture.CaptureScreenshot(name);
  30. }
  31. }
  32. }

 三. 选择要拍摄的机器,选择Add component 选择写好存放在Assets目录下的cs文件,代码如下:

  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using System;
  5. /*
  6. 说明:
  7. 将改脚本挂在需要使用该功能物体上
  8. 运行游戏之后,每次按下Space键就可以保存一次该物体在屏幕上的渲染范围的数据
  9. 保存路径是:项目根目录下面的outdata.json文件
  10. */
  11. public class ObjectMesh : MonoBehaviour
  12. {
  13. //需要计算的mesh渲染范围
  14. private MeshRenderer meshRenderer;
  15. public int fps = 15;
  16. private float videoTime = 0;
  17. // Start is called before the first frame update
  18. private string fileName ="";
  19. void Awake(){
  20. fileName = Application.dataPath+"/Outdata.json";
  21. Debug.Log("像素数据保存路径:"+fileName);
  22. //初始创建保存数据文件
  23. if(!System.IO.File.Exists(fileName))
  24. {
  25. System.IO.File.Create(fileName);
  26. }
  27. //初始找到有效mesh
  28. this.SearchMeshRender();
  29. }
  30. void Update()
  31. {
  32. Vector3 screenPoint = Camera.main.WorldToViewportPoint(meshRenderer.transform.position);
  33. bool onScreen = screenPoint.z > 0 && screenPoint.x > 0 && screenPoint.x < 1 && screenPoint.y > 0 && screenPoint.y < 1;
  34. videoTime += Time.deltaTime;
  35. if ((videoTime >= (1f / (float)fps)) && (onScreen))
  36. {
  37. StartCoroutine(AppendScreenPixel());
  38. }
  39. }
  40. //查找到有效的meshrender组件
  41. private void SearchMeshRender(){
  42. meshRenderer = gameObject.transform.GetComponent<MeshRenderer>();
  43. if(meshRenderer==null)
  44. {
  45. meshRenderer = gameObject.GetComponentInChildren<MeshRenderer>();
  46. }
  47. }
  48. //计算物体的有效渲染像素范围
  49. private IEnumerator AppendScreenPixel(){
  50. yield return new WaitForEndOfFrame();
  51. //获取到该物体在屏幕的左下点
  52. Vector3 min = Camera.main.WorldToScreenPoint(meshRenderer.bounds.min);
  53. //获取到该物体在屏幕的右上点
  54. Vector3 max = Camera.main.WorldToScreenPoint(meshRenderer.bounds.max);
  55. /******************************保存数据格式*******************************/
  56. PixAreaClass pac = new PixAreaClass();
  57. pac.height = (int)(max.y- min.y);
  58. pac.width = (int)(max.x-min.x);
  59. pac.boxxes = new float[]{(int)min.x,(int)min.y, (int)(max.x), (int)max.y};
  60. pac.time = videoTime.ToString("F");
  61. //pac.time = System.DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss.ffff");
  62. /******************************保存数据格式*******************************/
  63. string data = JsonUtility.ToJson(pac);
  64. //data = String.Format("{0:N2}", data);
  65. //data = data.ToString("0.00");
  66. Debug.Log(data);
  67. //添加数据到文件
  68. System.IO.File.AppendAllLines(fileName, new List<string> {data});
  69. /* 截图代码 暂时关闭 用于测试效果
  70. int width = (int)Mathf.Round(pac.width);
  71. int height = (int)Mathf.Round(pac.height);
  72. float beginx = (int)min.x;
  73. float beginy = (int)min.y;
  74. Texture2D texture = new Texture2D(width, height, TextureFormat.RGB24, false);
  75. //Read the pixels in the Rect starting at 0,0 and ending at the screen's width and height
  76. texture.ReadPixels (new Rect (beginx, beginy, width, height),0,0);
  77. texture.Apply();
  78. System.IO.File.WriteAllBytes(Application.dataPath+"/"+ videoTime + ".jpg",texture.EncodeToJPG());
  79. */
  80. }
  81. }
  82. //数据格式
  83. public class PixAreaClass{
  84. public int height;
  85. public int width;
  86. public float[] boxxes;
  87. public string time;
  88. }

 注意:cs文件的文件名一定要和里面的类名一致。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/125324
推荐阅读
相关标签
  

闽ICP备14008679号