SlideShare a Scribd company logo
T he N ot So Short
I ntroduction to Kinect
一份不太简短的 Kinect介绍
Hang xie
sonicisdreaming@gmail.com
http://Xhbang.com
About M e

Chongqing University bachelor (单身汉
)
A boy couldn't stop dreaming
Bike travelling
About Him

•Dr.
•Sensor related
•Poet (魔幻现实主义)
About the Lab

•50% Idle
•25% Computer
•20% Programmer
•5% Student/Paper
About You?

Programming dummy?
Linux || Windows?
Understand 3D?
Work with the Kinect?
T he Contents
wha u will lea toda
    t         rn   y
体感操作, Kinect , OPENNI 介绍
基本程序设计
Working with Depth Image
Working with Point Clouds ( * )
Working with Skeleton Data & Tracking
Kinect Hacks
昨夜西风凋碧树 , 独上高楼 , 望尽天涯
          路
Buy it!
I nside Kinect

Teardown
Principle
Hardware
Performace
Hardware & teardown
http://www.ifixit.com/Teardown/Microsoft-Kinect-Teardown
Kinect Ha re
         rdwa

•RGB camera
•IR depth sensor
•IR projector
•Audio device
T a a closer look
   ke

Noise at edges(shoulders)
Depth shadows
Misalignment between the color and depth images
Frame rate(30 vs 60)
Behind Kinect
T OF

•Time of Flight
•以色列公司 3DV ( 09 年微软收购
)
•光飞行时间,飞秒 (1e−15) 级快门
•砷化镓,使其时钟频率提高到上百
•高成本,难以适应消费电子品
Light Coding (光编码)

            •连续的照明(而非脉冲)
            •普通的 CMOS 感光芯片(低成本)
            •结构光技术(三维纵深的“体编码”
            )
            •激光散斑( laser speckle )
http://www.freepatentsonline.com/7433024.pdf
http://www.wipo.int/pctdb/en/wo.jsp?WO=2007043036
http://www.javaforge.com/wiki/103639
Exemplar

•机器学习系统
•TB 计的数据训练集

4.寻找移动部位(背景分离,分割遮罩)
5.辨认身体部位可能性
6.模型匹配:生成骨架系统
Audio

•Something we forget
•Supported by OpenNI, not by
SensorKinect
M ore About Audio (题外话)

•“Sound Wave”
•微软研究院和华盛顿大学
•利用多普勒效应,使用笔记本内置的扬声器和麦
克风开发出类似Kinect的姿势感知系统
•低成本
•识别精度能达到 90% 以上
•用手势玩俄罗斯方块游戏(视频)
Concepts
http://en.wikipedia.org/wiki/Natural_user_interface
Next generation interface
Wii Remote
ASUS Xtion
Kinect
Project Glass
Development
http://www.openni.org/
http://code.google.com/p/simple-openni/
https://github.com/OpenKinect/libfreenect
http://openkinect.org/wiki/Main_Page
Architecture

 Quick view(*)
OpenN I

•Short for “Open Natural Interface”
•Multi-langue
•Cross-platform
•Standard & Infrastructure
向后兼容

使用 openNI 开发的程序在以后的
版本中都可以继续使用 , 因为开发
人员可以毫无顾虑的更新 openNI
到最新的版本。
OpenNI Framework(1)
抽象分层视图

•Top: 代表软件,在 OpenNI 顶部,实现了自然交互的
应用程序。
•Middle: 代表 OpenNI ,提供通信接口,同时连接传感
器和中间件组件,后者分析来自传感器的数据。
•Bottom: 硬件设备,捕捉现场的视频和音频内容。
OpenNI Framework(2)
通用的框架工具集

•一个 USB 抽象访问层
•一些基本数据类型的实现(包括列表,哈希,等等)
•系统日志和转储
•内存和性能分析
•活动(授权要注册的回调函数到一个特定的事件)
•任务调度
•不是标准 OpenNI 的一部分( * )
Ca ck func
  llba

•函数指针
•注册
•事件响应
OpenN I の构成

 Generator
 Metadata
 Capability
Generator




注:绿色已经有,红色计划中,后略
生产节点

•单位集
•生产性角色
•使用较低水平的生产节点
•“ 有意义的三位数据”
Sensor Related

•Device
•Depth Generator
•Image Generator
•IR Generator
•Audio Generator
M iddlewa Rela
         re   ted

•Gesture Generator
•Scene Analyzer
•Hands Generator
•User Generator
•//provided by NITE
Record & Play

•Recoder
•Player
•Codec
Matadata
Capability
N I T E の构成

Session
Detector
M iddleware

•Full body analysis
•Hand point analysis
•Gesture detection
•Scene Analyzer
Session
Detector
衣带渐宽终不悔,为伊消得人憔悴。
Hello world!

•Preparation
•The program
Softwa Prepa tion
                  re    ra

            •OpenNI+NITE
            •Avin’s SensorKinect
            •Processing(*)
            •SimpleOpenNI(*)
https://github.com/avin2/SensorKinect
Here’s the code,
too young too simple
import SimpleOpenNI.*;
SimpleOpenNI kinect;

void setup()
{
  size(640*2, 480);
  kinect = new SimpleOpenNI(this);

    kinect.enableDepth();
    kinect.enableRGB();
}

void draw()
{
  kinect.update();

    image(kinect.depthImage(), 0, 0);
    image(kinect.rgbImage(), 640, 0);
}
Understand the code
import SimpleOpenNI.*;
SimpleOpenNI kinect;
•Import the library
•Declare the SimpleOpenNI object
void setup()
{
  size(640*2, 480);
  kinect = new SimpleOpenNI(this);

    kinect.enableDepth();
    kinect.enableRGB();
}

•Declare the size of app
•Instantiate the object
•Call two method
void draw()
{
  kinect.update();

    image(kinect.depthImage(), 0, 0);
    image(kinect.rgbImage(), 640, 0);
}
•Get fresh data from kinect
•Place the image
Working with depth map

•R G B
•纯黑代表无穷远,纯白代表无穷近
•Demo:ex03_basic_depth_plus_rgb
M ore about depth map

•Projective
•Realworld
•Z 值相同,代表深度,单位 mm
•ConvertProjectiveToRealWorld()
The Kinect coordinate system
Demo

chPC_ex12_obj_in_point_cloud
范围以及精确性

•最近距离: about 0.5(?)
•最远距离:  10m
•GetDeviceMaxDepth()
•官方建议: 1.2 – 3.6 米
•近远精确性比较
Working with Point Clouds(* )

           Welcome to the Third Dimension
           3d reconstruction
           E.g:KinectFusion PCL


http://pointclouds.org/
DEMO

chPC_ex05_rotating_point_cloud
Working with Skeleton D ata

•User Detection
•Joints & Skeleton
•Distance in 3D
•Scene Map, Com
•Tracking
User D etection

•Calibration or not
•Stages in Process
Joints & Skeleton

•Joints
•Distance between two joints in 3D
WindowsSDK: 20 joints(all)
OpenNI: 24 joints
DEMO

chSK_ex02_skel_anatomy
Scene M ap

•Background remove
•User pixels
•Center of Mass
D emo

•chSK_scene_map
•chSK_scene_image
•chSK_center_of_mass
How

•kinect.enableScene();
•sceneMap = kinect.sceneMap();
•if(sceneMap[i] == n)
T racking

Demo:PointViewer
众里寻他千百度,蓦然回首,
 那人却在,灯火阑珊处。
Kinect Hacks

Apps out of box
Create your own cool stuffs
Living coding with VS & Cpp
M edia Art

Demo: chDE_face_changing
How

•Collision detection
•kinect.getJointPositionSkeleton()
•kinect.convertRealWorldToProjective()
•Picture scala
Computer I nterface

Demo:Minority Report(*)
Demo:2D TrackPad
Demo:Hotpoint 3D
FAAST

          •Key event mapping
          •Game playing




http://projects.ict.usc.edu/mxr/faast/
Sex Ga Controller
      me

•DEMO: 宅男妄想地带
•Microsoft: NO!!
Sorry, Bill
Control ema )
           cs(*

•Map(Joint position + gesture, key event)
Kinect Visua Ca (* )
                          l mera




http://www.kinectdevs.com/forums/kinect-virtual-camera-kinect-webcam-f17
The following demo need a
better computer for higher GPU
            support
kinect-ultra )
                      (*

          一秒钟凹凸曼合体!完成你童年
          时候的梦想
          Video



http://code.google.com/p/kinect-ultra/
kinect-ka meha )
         meha (*
M ikuM ikuD ance(* )

初音妹子
Video
What do you want to make?

http://www.kinect-hacks.com/openni
reference
•http://viml.nchc.org.tw
•Visualization and Interactive Media Laboratory of NCHC
•国家科學視算與互動媒體實驗室


•http://www.javaforge.com/wiki/103532
•Kinect for PC Wiki
•中文
T hanks!
You a the controller.
      re
Q &A
Hang xie
sonicisdreaming@gmail.com
http://www.xhbang.com
T his is ba templa
           sic    te

Do not delete this page

More Related Content

What's hot

Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019
Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019
Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019
StanfordComputationalImaging
 
Go native benchmark test su dispositivi x86: java, ndk, ipp e tbb
Go native  benchmark test su dispositivi x86: java, ndk, ipp e tbbGo native  benchmark test su dispositivi x86: java, ndk, ipp e tbb
Go native benchmark test su dispositivi x86: java, ndk, ipp e tbb
JooinK
 
Azure Digital Twins
Azure Digital TwinsAzure Digital Twins
Azure Digital Twins
Marco Parenzan
 
NVIDIA 深度學習教育機構 (DLI): Approaches to object detection
NVIDIA 深度學習教育機構 (DLI): Approaches to object detectionNVIDIA 深度學習教育機構 (DLI): Approaches to object detection
NVIDIA 深度學習教育機構 (DLI): Approaches to object detection
NVIDIA Taiwan
 
Single photon 3D Imaging with Deep Sensor Fusion
Single photon 3D Imaging with Deep Sensor FusionSingle photon 3D Imaging with Deep Sensor Fusion
Single photon 3D Imaging with Deep Sensor Fusion
David Lindell
 
Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019
Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019
Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019
David Lindell
 
Nui e biometrics in windows 10
Nui e biometrics in windows 10Nui e biometrics in windows 10
Nui e biometrics in windows 10
Marco D'Alessandro
 
Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...
Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...
Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...
Intel® Software
 

What's hot (8)

Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019
Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019
Non-line-of-sight Imaging with Partial Occluders and Surface Normals | TOG 2019
 
Go native benchmark test su dispositivi x86: java, ndk, ipp e tbb
Go native  benchmark test su dispositivi x86: java, ndk, ipp e tbbGo native  benchmark test su dispositivi x86: java, ndk, ipp e tbb
Go native benchmark test su dispositivi x86: java, ndk, ipp e tbb
 
Azure Digital Twins
Azure Digital TwinsAzure Digital Twins
Azure Digital Twins
 
NVIDIA 深度學習教育機構 (DLI): Approaches to object detection
NVIDIA 深度學習教育機構 (DLI): Approaches to object detectionNVIDIA 深度學習教育機構 (DLI): Approaches to object detection
NVIDIA 深度學習教育機構 (DLI): Approaches to object detection
 
Single photon 3D Imaging with Deep Sensor Fusion
Single photon 3D Imaging with Deep Sensor FusionSingle photon 3D Imaging with Deep Sensor Fusion
Single photon 3D Imaging with Deep Sensor Fusion
 
Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019
Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019
Wave-Based Non-Line-of-Sight Imaging Using Fast f–k Migration | SIGGRAPH 2019
 
Nui e biometrics in windows 10
Nui e biometrics in windows 10Nui e biometrics in windows 10
Nui e biometrics in windows 10
 
Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...
Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...
Intel® Open Image Denoise: Optimized CPU Denoising | SIGGRAPH 2019 Technical ...
 

Viewers also liked

Charleston
CharlestonCharleston
Charlestonsstieb
 
Ws5.1.3 finished
Ws5.1.3 finishedWs5.1.3 finished
Ws5.1.3 finishedhumaira28
 
Wearable sketching
Wearable sketchingWearable sketching
Wearable sketching
AXM
 
ferifikase
ferifikaseferifikase
ferifikase
helmifauziah
 
History of record[1]
History of record[1]History of record[1]
History of record[1]humaira28
 
Proyecto final
Proyecto finalProyecto final
Proyecto finaljoaquin
 
Database audit policies copy
Database audit policies   copyDatabase audit policies   copy
Database audit policies copy
Oracle Apps DBA
 
Las flequis 6º
Las flequis 6ºLas flequis 6º
Las flequis 6ºLorena
 
2011 willowbank nz a thon yr 0 2
2011 willowbank nz a thon yr 0 22011 willowbank nz a thon yr 0 2
2011 willowbank nz a thon yr 0 2Juliana
 
4.1 storing records
4.1   storing records4.1   storing records
4.1 storing recordshumaira28
 
The film shot, camera angles and movement
The film shot, camera angles and movementThe film shot, camera angles and movement
The film shot, camera angles and movementhumaira28
 
Sosiaalinen televisio 0803 mahdollistajatapaaminen
Sosiaalinen televisio 0803 mahdollistajatapaaminenSosiaalinen televisio 0803 mahdollistajatapaaminen
Sosiaalinen televisio 0803 mahdollistajatapaaminen
Erik Bäckman
 
George Washington
George WashingtonGeorge Washington
George Washington
Keith Erickson
 
Test ppt
Test pptTest ppt
Test pptjimmTPL
 

Viewers also liked (20)

Charleston
CharlestonCharleston
Charleston
 
Ws5.1.3 finished
Ws5.1.3 finishedWs5.1.3 finished
Ws5.1.3 finished
 
The Statue of Liberty
The Statue of LibertyThe Statue of Liberty
The Statue of Liberty
 
Wearable sketching
Wearable sketchingWearable sketching
Wearable sketching
 
ferifikase
ferifikaseferifikase
ferifikase
 
History of record[1]
History of record[1]History of record[1]
History of record[1]
 
Hf2012 01 hidaya presentation_hist graduateswb-ae
Hf2012 01 hidaya presentation_hist graduateswb-aeHf2012 01 hidaya presentation_hist graduateswb-ae
Hf2012 01 hidaya presentation_hist graduateswb-ae
 
Proyecto final
Proyecto finalProyecto final
Proyecto final
 
Database audit policies copy
Database audit policies   copyDatabase audit policies   copy
Database audit policies copy
 
Las flequis 6º
Las flequis 6ºLas flequis 6º
Las flequis 6º
 
Quizlet.com
Quizlet.comQuizlet.com
Quizlet.com
 
2011 willowbank nz a thon yr 0 2
2011 willowbank nz a thon yr 0 22011 willowbank nz a thon yr 0 2
2011 willowbank nz a thon yr 0 2
 
3,
3,3,
3,
 
4.1 storing records
4.1   storing records4.1   storing records
4.1 storing records
 
Two websites
Two websitesTwo websites
Two websites
 
Abraham Lincoln
Abraham LincolnAbraham Lincoln
Abraham Lincoln
 
The film shot, camera angles and movement
The film shot, camera angles and movementThe film shot, camera angles and movement
The film shot, camera angles and movement
 
Sosiaalinen televisio 0803 mahdollistajatapaaminen
Sosiaalinen televisio 0803 mahdollistajatapaaminenSosiaalinen televisio 0803 mahdollistajatapaaminen
Sosiaalinen televisio 0803 mahdollistajatapaaminen
 
George Washington
George WashingtonGeorge Washington
George Washington
 
Test ppt
Test pptTest ppt
Test ppt
 

Similar to The not so short introduction to Kinect

Kinect kunkuk final_
Kinect kunkuk final_Kinect kunkuk final_
Kinect kunkuk final_Yunkyu Choi
 
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architectureIEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
Sebastien Kuntz
 
Vipul divyanshu documentation on Kinect and Motion Tracking
Vipul divyanshu documentation  on Kinect and Motion TrackingVipul divyanshu documentation  on Kinect and Motion Tracking
Vipul divyanshu documentation on Kinect and Motion TrackingVipul Divyanshu
 
Concerto motionsummer2011week1
Concerto motionsummer2011week1Concerto motionsummer2011week1
Concerto motionsummer2011week1
mskmoorthy
 
Becoming a kinect hacker innovator v2
Becoming a kinect hacker innovator v2Becoming a kinect hacker innovator v2
Becoming a kinect hacker innovator v2
Jeff Sipko
 
NUX Presentation from TechMixer Birmingham 2011
NUX Presentation from TechMixer Birmingham 2011NUX Presentation from TechMixer Birmingham 2011
NUX Presentation from TechMixer Birmingham 2011
Michael Heydt
 
How To Install OpenCV On Windows? Edureka
How To Install OpenCV On Windows? EdurekaHow To Install OpenCV On Windows? Edureka
How To Install OpenCV On Windows? Edureka
Edureka!
 
Microsoft Kinect for Human-Computer Interaction
Microsoft Kinect for  Human-Computer InteractionMicrosoft Kinect for  Human-Computer Interaction
Microsoft Kinect for Human-Computer Interaction
Mihir Patel
 
Building Applications with the Microsoft Kinect SDK
Building Applications with the Microsoft Kinect SDKBuilding Applications with the Microsoft Kinect SDK
Building Applications with the Microsoft Kinect SDK
DataLeader.io
 
01 foundations
01 foundations01 foundations
01 foundations
ankit_ppt
 
The UX of Tomorrow: Designing for the Unknown by Jeff Feddersen
The UX of Tomorrow: Designing for the Unknown by Jeff FeddersenThe UX of Tomorrow: Designing for the Unknown by Jeff Feddersen
The UX of Tomorrow: Designing for the Unknown by Jeff Feddersen
Oxford Tech + UX
 
Gam02 kinect1, kinect2
Gam02   kinect1, kinect2Gam02   kinect1, kinect2
Gam02 kinect1, kinect2DotNetCampus
 
How to create a smart Photobooth
How to create a smart PhotoboothHow to create a smart Photobooth
How to create a smart Photobooth
Hao Luo
 
Dov Nimratz, Roman Chobik "Embedded artificial intelligence"
Dov Nimratz, Roman Chobik "Embedded artificial intelligence"Dov Nimratz, Roman Chobik "Embedded artificial intelligence"
Dov Nimratz, Roman Chobik "Embedded artificial intelligence"
Lviv Startup Club
 
Kinect sensor
Kinect sensorKinect sensor
Kinect sensor
bhoomit morkar
 
15793804.ppt
15793804.ppt15793804.ppt
15793804.ppt
DanuPrasetyoAji1
 
Dataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problemsDataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problems
PetteriTeikariPhD
 
Concerto motionsummer2011week1
Concerto motionsummer2011week1Concerto motionsummer2011week1
Concerto motionsummer2011week1
mskmoorthy
 
DIY motion capture with KinectToPin
DIY motion capture with KinectToPinDIY motion capture with KinectToPin
DIY motion capture with KinectToPin
FakeGreenDress
 

Similar to The not so short introduction to Kinect (20)

Kinect kunkuk final_
Kinect kunkuk final_Kinect kunkuk final_
Kinect kunkuk final_
 
20101025 aiai2010
20101025 aiai201020101025 aiai2010
20101025 aiai2010
 
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architectureIEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
IEEE VR-SEARIS 2014 Keynote - MiddleVR - Philosophy and architecture
 
Vipul divyanshu documentation on Kinect and Motion Tracking
Vipul divyanshu documentation  on Kinect and Motion TrackingVipul divyanshu documentation  on Kinect and Motion Tracking
Vipul divyanshu documentation on Kinect and Motion Tracking
 
Concerto motionsummer2011week1
Concerto motionsummer2011week1Concerto motionsummer2011week1
Concerto motionsummer2011week1
 
Becoming a kinect hacker innovator v2
Becoming a kinect hacker innovator v2Becoming a kinect hacker innovator v2
Becoming a kinect hacker innovator v2
 
NUX Presentation from TechMixer Birmingham 2011
NUX Presentation from TechMixer Birmingham 2011NUX Presentation from TechMixer Birmingham 2011
NUX Presentation from TechMixer Birmingham 2011
 
How To Install OpenCV On Windows? Edureka
How To Install OpenCV On Windows? EdurekaHow To Install OpenCV On Windows? Edureka
How To Install OpenCV On Windows? Edureka
 
Microsoft Kinect for Human-Computer Interaction
Microsoft Kinect for  Human-Computer InteractionMicrosoft Kinect for  Human-Computer Interaction
Microsoft Kinect for Human-Computer Interaction
 
Building Applications with the Microsoft Kinect SDK
Building Applications with the Microsoft Kinect SDKBuilding Applications with the Microsoft Kinect SDK
Building Applications with the Microsoft Kinect SDK
 
01 foundations
01 foundations01 foundations
01 foundations
 
The UX of Tomorrow: Designing for the Unknown by Jeff Feddersen
The UX of Tomorrow: Designing for the Unknown by Jeff FeddersenThe UX of Tomorrow: Designing for the Unknown by Jeff Feddersen
The UX of Tomorrow: Designing for the Unknown by Jeff Feddersen
 
Gam02 kinect1, kinect2
Gam02   kinect1, kinect2Gam02   kinect1, kinect2
Gam02 kinect1, kinect2
 
How to create a smart Photobooth
How to create a smart PhotoboothHow to create a smart Photobooth
How to create a smart Photobooth
 
Dov Nimratz, Roman Chobik "Embedded artificial intelligence"
Dov Nimratz, Roman Chobik "Embedded artificial intelligence"Dov Nimratz, Roman Chobik "Embedded artificial intelligence"
Dov Nimratz, Roman Chobik "Embedded artificial intelligence"
 
Kinect sensor
Kinect sensorKinect sensor
Kinect sensor
 
15793804.ppt
15793804.ppt15793804.ppt
15793804.ppt
 
Dataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problemsDataset creation for Deep Learning-based Geometric Computer Vision problems
Dataset creation for Deep Learning-based Geometric Computer Vision problems
 
Concerto motionsummer2011week1
Concerto motionsummer2011week1Concerto motionsummer2011week1
Concerto motionsummer2011week1
 
DIY motion capture with KinectToPin
DIY motion capture with KinectToPinDIY motion capture with KinectToPin
DIY motion capture with KinectToPin
 

Recently uploaded

JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 

Recently uploaded (20)

JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 

The not so short introduction to Kinect