🚧 KinectStream subclasses setup

ui-window
Nicolas FRANCO 1 year ago
parent 6f8333e85e
commit 7c0db8cd7e

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{
/// <summary>
/// The color image stream.
/// </summary>
public class ColorImageStream : KinectStream
{
public override void Start()
{
throw new NotImplementedException();
}
public override void Stop()
{
throw new NotImplementedException();
}
}
}

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{
/// <summary>
/// The depth image stream.
/// </summary>
public class DepthImageStream : KinectStream
{
public override void Start()
{
throw new NotImplementedException();
}
public override void Stop()
{
throw new NotImplementedException();
}
}
}

@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KinectConnection
{
/// <summary>
/// The infrared image stream.
/// </summary>
public class InfraredImgaeStream : KinectStream
{
public override void Start()
{
throw new NotImplementedException();
}
public override void Stop()
{
throw new NotImplementedException();
}
}
}

@ -12,7 +12,9 @@ namespace KinectConnection
/// </summary>
public abstract class KinectStream
{
// Redondant d'avoir KinectSensor et KinectManager ici ? (car sensor dans manager)
protected KinectSensor KinectSensor { get; set; }
protected KinectManager KinectManager { get; set; }
public abstract void Start();

Loading…
Cancel
Save