|
|
|
@ -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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|