dwelling act 4 (live motion cap w/ kinect azure)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

59 lines
1.4 KiB

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace com.rfilkov.kinect
{
/// <summary>
/// Descriptor of the sensor interface.
/// </summary>
[System.Serializable]
public class DepthSensorDescriptor
{
/// <summary>
/// Sensor type.
/// </summary>
public string sensorType;
/// <summary>
/// Full path to the sensor interface.
/// </summary>
public string sensorInterface;
/// <summary>
/// Settings of the sensor interface.
/// </summary>
public string sensorIntSettings;
/// <summary>
/// Sensor interface version.
/// </summary>
public string sensorIntVersion;
/// <summary>
/// Transform position.
/// </summary>
public Vector3 transformPos;
/// <summary>
/// Transform rotation.
/// </summary>
public Vector3 transformRot;
/// <summary>
/// Full class path to the depth predictor.
/// </summary>
public string depthPredictor;
/// <summary>
/// Full class path to the body tracking predictor.
/// </summary>
public string bodyTrackingPredictor;
/// <summary>
/// Full class path to the body segmentation predictor.
/// </summary>
public string bodySegmentationPredictor;
}
}