using System; using System.Windows.Media; namespace KinectConnection { /// /// The infrared image stream. /// 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(); } } }