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.
KinectExercise_FrancoBroda/KinectConnection/InfraredImageStream.cs

24 lines
509 B

using System;
using System.Windows.Media;
namespace KinectConnection
{
/// <summary>
/// The infrared image stream.
/// </summary>
public class InfraredImageStream : KinectStream
{
public override ImageSource Source => throw new NotImplementedException();
public override void Start()
{
throw new NotImplementedException();
}
public override void Stop()
{
throw new NotImplementedException();
}
}
}