欢迎来到冰点文库! | 帮助中心 分享价值,成长自我!
冰点文库
全部分类
  • 临时分类>
  • IT计算机>
  • 经管营销>
  • 医药卫生>
  • 自然科学>
  • 农林牧渔>
  • 人文社科>
  • 工程科技>
  • PPT模板>
  • 求职职场>
  • 解决方案>
  • 总结汇报>
  • ImageVerifierCode 换一换
    首页 冰点文库 > 资源分类 > DOCX文档下载
    分享到微信 分享到微博 分享到QQ空间

    Kinect for Windows SDK开发入门十一手势识别 下基本手势识别.docx

    • 资源ID:9402579       资源大小:316.50KB        全文页数:47页
    • 资源格式: DOCX        下载积分:3金币
    快捷下载 游客一键下载
    账号登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录 QQ登录
    二维码
    微信扫一扫登录
    下载资源需要3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP,免费下载
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    Kinect for Windows SDK开发入门十一手势识别 下基本手势识别.docx

    1、Kinect for Windows SDK开发入门十一手势识别 下基本手势识别译Kinect for Windows SDK开发入门(十一):手势识别 下:基本手势识别上文简要介绍了手势识别的基本概念和手势识别的基本方法,并以八种手势中的挥手(wave)为例讲解了如何使用算法对手势进行识别,本文接上文,继续介绍如何建立一个手部追踪类库,并以此为基础,对剩余7中常用的手势进行识别做一些介绍。1. 基本的手势追踪 手部追踪在技术上和手势识别不同,但是它和手势识别中用到的一些基本方法是一样的。在开发一个具体的手势控件之前,我们先建立一个可重用的追踪手部运动的类库以方便我们后续开发。这个手部追踪类库

    2、包含一个以动态光标显示的可视化反馈机制。手部追踪和手势控件之间的交互高度松耦合。 首先在Visual Studio中创建一个WPF控件类库项目。然后添加四个类: KinectCursorEventArgs.cs,KinectInput.cs,CusrorAdorner.cs和KinectCursorManager.cs这四个类之间通过相互调用来基于用户手所在的位置来完成光标位置的管理。KinectInput类包含了一些事件,这些事件可以在KinectCursorManager和一些控件之间共享。KinectCursorEventArgs提供了一个属性集合,能够用来在事件触发者和监听者之间传递数

    3、据。KinectCursorManager用来管理从Kinect传感器中获取的骨骼数据流,然后将其转换到WPF坐标系统,提供关于转换到屏幕位置的可视化反馈,并寻找屏幕上的控件,将事件传递到这些控件上。最后CursorAdorner.cs类包含了代表手的图标的可视化元素。 KinectCursorEventArgs继承自RoutedEventArgs类,它包含四个属性:X、Y、Z和Cursor。X、Y、Z是一个小数,代表待转换的用户手所在位置的宽度,高度和深度值。Cursor用来存储CursorAdorner类的实例,后面将会讨论,下面的代码展示了KinectCursorEventArgs类的基

    4、本结构,其中包含了一些重载的构造器。public class KinectCursorEventArgs:RoutedEventArgs public double X get; set; public double Y get; set; public double Z get; set; public CursorAdorner Cursor get; set; public KinectCursorEventArgs(double x, double y) X = x; Y = y; public KinectCursorEventArgs(Point point) X = point.

    5、X; Y = point.Y; RoutedEventArgs基类有一个构造函数能够接收RoutedEvent作为参数。这是一个有点特别的签名,WPF中的UIElement使用这种特殊的语法触发事件。下面的代码是KinectCursorEventArgs类对这一签名的实现,以及其他一些重载方法。public KinectCursorEventArgs(RoutedEventroutedEvent) : base(routedEvent) publicKinectCursorEventArgs(RoutedEventroutedEvent, doublex, doubley, doublez)

    6、: base(routedEvent) X = x; Y = y; Z = z; publicKinectCursorEventArgs(RoutedEventroutedEvent, Pointpoint) : base(routedEvent) X = point.X; Y = point.Y; publicKinectCursorEventArgs(RoutedEventroutedEvent, Pointpoint,doublez) : base(routedEvent) X = point.X; Y = point.Y; Z = z; publicKinectCursorEventA

    7、rgs(RoutedEventroutedEvent, objectsource) : base(routedEvent, source) publicKinectCursorEventArgs(RoutedEventroutedEvent,objectsource,doublex,doubley,doublez) : base(routedEvent, source) X = x; Y = y; Z = z; publicKinectCursorEventArgs(RoutedEventroutedEvent, objectsource, Pointpoint) : base(routedE

    8、vent, source) X = point.X; Y = point.Y; publicKinectCursorEventArgs(RoutedEventroutedEvent, objectsource, Pointpoint,doublez) : base(routedEvent, source) X = point.X; Y = point.Y; Z = z; 接下来,要在KinectInput类中创建事件来将消息从KinectCursorManager中传递到可视化控件中去。这些事件传递的数据类型为KinectCursorEventArgs类型。 在KinectInput类中添加一

    9、个KinectCursorEventHandler的代理类型:(1) 添加一个静态的routed event声明。(2) 添加KinectCursorEnter,KinectCursorLeave,KinectCursorMove,KinectCursorActive和KinectCursorDeactivated事件的add和remove方法。下面的代码展示了三个和cursor相关的事件,其他的如KinectCursorActivated和KinectCursorDeactivated事件和这个结构相同:public delegate void KinectCursorEventHandle

    10、r(object sender,KinectCursorEventArgs e);public static class KinectInput public static readonly RoutedEvent KinectCursorEnterEvent=EventManager.RegisterRoutedEvent(KinectCursorEnter,RoutingStrategy.Bubble, typeof(KinectCursorEventHandler),typeof(KinectInput); public static void AddKinectCursorEnterH

    11、andler(DependencyObject o, KinectCursorEventHandler handler) (UIElement)o).AddHandler(KinectCursorEnterEvent, handler); public static void RemoveKinectCursorEnterHandler(DependencyObject o, KinectCursorEventHandler handler) (UIElement)o).RemoveHandler(KinectCursorEnterEvent, handler); public static

    12、readonly RoutedEvent KinectCursorLeaveEvent=EventManager.RegisterRoutedEvent(KinectCursorLeave,RoutingStrategy.Bubble, typeof(KinectCursorEventHandler),typeof(KinectInput); public static void AddKinectCursorLeaveHandler(DependencyObject o, KinectCursorEventHandler handler) (UIElement)o).AddHandler(K

    13、inectCursorEnterEvent,handler); public static void RemoveKinectCursorLeaveHandler(DependencyObject o, KinectCursorEventHandler handler) (UIElement)o).RemoveHandler(KinectCursorEnterEvent, handler); 注意到以上代码中没有声明任何GUI编程中的Click事件。这是因为在设计控件类库时,Kinect中并没有点击事件,相反Kinect中两个重要的行为是enter和leave。手势图标可能会移入和移出某一个可

    14、视化控件的有效区域。如果要实现普通GUI控件的点击效果的话,必须在Kinect中对这一事件进行模拟,因为Kinect原生并不支持点击这一行为。 CursorAdorner类用来保存用户手势图标可视化元素,它继承自WPF的Adorner类型。之所以使用这个类型是因为它有一个特点就是总是在其他元素之上绘制,这在我们的项目中非常有用,因为我们不希望我们的光标会被其他元素遮挡住。代码如下所示,我们默认的adorner对象将绘制一个默认的可视化元素来代表光标,当然也可以传递一个自定义的可视化元素。public class CursorAdorner:Adorner private readonly UI

    15、Element _adorningElement; private VisualCollection _visualChildren; private Canvas _cursorCanvas; protected FrameworkElement _cursor; StroyBoard _gradientStopAnimationStoryboard; readonly static Color _backColor = Colors.White; readonly static Color _foreColor = Colors.Gray; public CursorAdorner(Fra

    16、meworkElement adorningElement) : base(adorningElement) this._adorningElement = adorningElement; CreateCursorAdorner(); this.IsHitTestVisible = false; public CursorAdorner(FrameworkElement adorningElement, FrameworkElement innerCursor) : base(adorningElement) this._adorningElement = adorningElement;

    17、CreateCursorAdorner(innerCursor); this.IsHitTestVisible = false; public FrameworkElement CursorVisual get return _cursor; public void CreateCursorAdorner() var innerCursor = CreateCursor(); CreateCursorAdorner(innerCursor); protected FrameworkElement CreateCursor() var brush = new LinearGradientBrus

    18、h(); brush.EndPoint = new Point(0, 1); brush.StartPoint = new Point(0, 0); brush.GradientStops.Add(new GradientStop(_backColor, 1); brush.GradientStops.Add(new GradientStop(_foreColor, 1); var cursor = new Ellipse() Width=50, Height=50, Fill=brush ; return cursor; public void CreateCursorAdorner(Fra

    19、meworkElement innerCursor) _visualChildren = new VisualCollection(this); _cursorCanvas = new Canvas(); _cursor = innerCursor; _cursorCanvas.Children.Add(this._cursorCanvas); _visualChildren.Add(this._cursorCanvas); AdornerLayer layer = AdornerLayer.GetAdornerLayer(_adorningElement); layer.Add(this);

    20、 因为继承自Adorner基类,我们需要重写某些基类的方法,下面的代码展示了基类中的方法如何和CreateCursorAdorner方法中实例化的_visualChildren和_cursorCanvas字段进行绑定。protected override int VisualChildrenCount get return _visualChildren.Count; protected override Visual GetVisualChild(int index) return _visualChildrenindex;protected override Size MeasureOve

    21、rride(Size constraint) this._cursorCanvas.Measure(constraint); return this._cursorCanvas.DesiredSize;protected override Size ArrangeOverride(Size finalSize) this._cursorCanvas.Arrange(new Rect(finalSize); return finalSize; CursorAdorner对象也负责找到手所在的正确的位置,该对象的UpdateCursor方法如下,方法接受X,Y坐标位置作为参数。然后方法在X,Y上加

    22、一个偏移量以使得图像的中心在X,Y之上,而不是在图像的边上。另外,我们提供了该方法的一个重载,该重载告诉光标对象一个特殊的坐标会传进去,所有的普通方法调用UpdateCursor将会被忽略。当我们在磁性按钮中想忽略基本的手部追踪给用户更好的手势体验时很有用。public void UpdateCursor(Pointposition, boolisOverride) _isOverriden = isOverride; _cursor.SetValue(Canvas.LeftProperty,position.X-(_cursor.ActualWidth/2); _cursor.SetValu

    23、e(Canvas.LeftProperty, position.Y - (_cursor.ActualHeight / 2); public void UpdateCursor(Pointposition) if(_isOverriden) return; _cursor.SetValue(Canvas.LeftProperty, position.X - (_cursor.ActualWidth / 2); _cursor.SetValue(Canvas.LeftProperty, position.Y - (_cursor.ActualHeight / 2); 最后,添加光标对象动画效果。

    24、当Kinect控件需要悬浮于一个元素之上,在用户等待的时候,给用户反馈一些信息告知正在发生的事情,这一点很有好处。下面了的代码展示了如何使用代码实现动画效果:public virtual void AnimateCursor(doublemilliSeconds) CreateGradientStopAnimation(milliSeconds); if(_gradientStopAnimationStoryboard != null) _gradientStopAnimationStoryboard.Begin(this, true); public virtual void StopCur

    25、sorAnimation(doublemilliSeconds) if(_gradientStopAnimationStoryboard != null) _gradientStopAnimationStoryboard.Stop(this); public virtual void CreateGradientStopAnimation(doublemilliSeconds) NameScope.SetNameScope(this, newNameScope(); varcursor = _cursor asShape; if(cursor = null) return; varbrush

    26、= cursor.Fill asLinearGradientBrush; varstop1 = brush.GradientStops0; varstop2 = brush.GradientStops1; this.RegisterName(GradientStop1, stop1); this.RegisterName(GradientStop2, stop2); DoubleAnimationoffsetAnimation = newDoubleAnimation(); offsetAnimation.From = 1.0; offsetAnimation.To = 0.0; offset

    27、Animation.Duration = TimeSpan.FromMilliseconds(milliSeconds); Storyboard.SetTargetName(offsetAnimation, GradientStop1); Storyboard.SetTargetProperty(offsetAnimation, newPropertyPath(GradientStop.OffsetProperty); DoubleAnimationoffsetAnimation2 = newDoubleAnimation(); offsetAnimation2.From = 1.0; off

    28、setAnimation2.To = 0.0; offsetAnimation2.Duration = TimeSpan.FromMilliseconds(milliSeconds); Storyboard.SetTargetName(offsetAnimation2, GradientStop2); Storyboard.SetTargetProperty(offsetAnimation2, newPropertyPath(GradientStop.OffsetProperty); _gradientStopAnimationStoryboard = newStoryboard(); _gr

    29、adientStopAnimationStoryboard.Children.Add(offsetAnimation); _gradientStopAnimationStoryboard.Children.Add(offsetAnimation2); _gradientStopAnimationStoryboard.Completed += delegate _gradientStopAnimationStoryboard.Stop(this); ; 为了实现KinectCursorManager类,我们需要几个帮助方法,代码如下,GetElementAtScreenPoint方法告诉我们哪个

    30、WPF对象位于X,Y坐标下面,在这个高度松散的结构中,GetElementAtScreenPoint方法是主要的引擎,用来从KinectCurosrManager传递消息到自定义控件,并接受这些事件。另外,我们使用两个方法来确定我们想要追踪的骨骼数据以及我们想要追踪的手。private static UIElement GetElementAtScreenPoint(Point point, Window window) if (!window.IsVisible) return null; Point windowPoint = window.PointFromScreen(point); IInputElement element = window.InputHitTest(windowPoint); if (element is UIElement) return (UIElement)element; else retu


    注意事项

    本文(Kinect for Windows SDK开发入门十一手势识别 下基本手势识别.docx)为本站会员主动上传,冰点文库仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰点文库(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

    copyright@ 2008-2023 冰点文库 网站版权所有

    经营许可证编号:鄂ICP备19020893号-2


    收起
    展开