SlideShare a Scribd company logo
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
Bruno Capuano 
Innovation Manager 
@elbruno 
http://www.elbruno.com
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
• 
•
2014 09 12 Dia Programador Session Materials
USB 
Devices 
Demo
2014 09 12 Dia Programador Session Materials
• Contains 2 IR cameras and 3 IR LEDs 
• Captures 200 FPS 
• Can recognize: 
– Two hands 
– 10 Fingers 
• Can interpret: 
– Swipes 
– Finger Taps 
– Circles
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
$30 
Investment!
• 
• 
Component Specification 
Clock Speed 16MHz 
Flash Memory 32K 
EEPROM 1K 
SRAM 2K 
Analog -> Digital 6Ch 10bit 
Communication SPI 
Digital 14 I/O 
PWM 6 Channel 
(Digital)
USB 
Connector 
Battery 
Connector 
Power 
Pins 
Digital Pins 
Analog 
Pins
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
• 
• 
• 
Circuit on breadboard
• Ejemplo 
void setup 
void loop
void setup() 
{ 
//code1 
//code2 
} 
void loop() 
{ 
//code3 
//code4 
//code5 
} 
start 
code1 
code2 
code3 
code4 
code5
void setup() 
{ 
>configure output pin 
>Led is OFF 
} 
void loop() 
{ 
>LED is ON 
>Time delay 
>LED is ON 
>Time Delay 
} 
start 
Configure 
Output pin 
LED is off 
LED is on 
Time delay 
LED is off 
Time delay
int LED1Pin = 7; 
void setup() 
{ 
pinMode(LED1Pin, OUTPUT); //Pin 7 is output pin 
digitalWrite(LED1Pin, LOW); //LED is initially low 
} 
void loop() 
{ 
digitalWrite(LED1Pin, HIGH); //Turn on LED. 
delay(500); //Time delay for 0.5 second. 
digitalWrite(LED1Pin, LOW); //Turn off LED. 
delay(250); //Time delay for 0.25 second. 
}
Verify button
Note: Make sure USB-to-serial driver is installed first
2014 09 12 Dia Programador Session Materials
Upload button
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
Prototypin 
g 
Audio / MP3 
Ethernet 
Servo/Stepper/ 
DC Motors 
GPS
LCD 
WIFI 
Zigbee 
MIDI 
LED 
Display
2014 09 12 Dia Programador Session Materials
http://elbruno.com/category/informatica-e-internet/arduino/ 
http://arduino.cc 
http://arduino.cc/downloads 
http://arduino.cc/en/Main/Software#toc3 
http://www.visualmicro.com 
http://visualmicro.codeplex.com/ 
http://www.visualmicro.com/archive.aspx 
http://www.seeedstudio.com/depot/grove-t-3.html?ref=top
2014 09 12 Dia Programador Session Materials
Feature Kinect for Windows 1 Kinect for Windows 2 
Color Camera 640 x 480 @30 fps 1920 x 1080 @30 fps 
Depth Camera 320 x 240 512 x 424 
Max Depth Distance ~4.5 M ~4.5 M 
Min Depth Distance 40 cm in near mode 50 cm 
Horizontal Field of View 57 degrees 70 degrees 
Vertical Field of View 43 degrees 60 degrees 
Tilt Motor yes no 
Skeleton Joints Defined 20 joints 26 joints 
Full Skeletons Tracked 2 6 
USB Standard 2.0 3.0 
Supported OS Win 7, Win 8 Win 8 
Price $299 TBD 
http://www.imaginativeuniversal.com/blog/post/2014/03/05/Quick-Reference-Kinect-1-vs-Kinect-2.aspx
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
Data stream Resolution Field-of-View Frames/Second 
Color 1920 x 1080 
+/- 85°(H) – 
55°(V) 
15 fps / 30 fps 
Depth & IR 512 x 424 70° (H) – 60°(V) 30 fps 
NUI
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
wieden-kennedy/Cinder-Kinect2 Cinderlib 
englandrp/Kinect2-Data-Transmitter 
rfilkov/kinect2-unity-example-with-ms-sdk 
OpenKinect/libfreenect2 
https://github.com/MarcusKohnert/Kinect.ReactiveV2 
https://github.com/DevHwan/K4Wv2OpenCVModule 
http://k4wv2heartrate.codeplex.com/ 
http://www.imaginativeuniversal.com/blog/post/2014/03/27/Kinect-v2-Community-Projects.aspx
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
Face 
Recognition 
Demo
2014 09 12 Dia Programador Session Materials
http://elbruno.com/category/msn-microsoft/kinect/kinectsdk/ 
http://blogs.msdn.com/b/kinectforwindows/ 
http://www.microsoft.com/en-us/showcase/details.aspx?uuid=8f3753fa-ff27-4cb4-b2da-1788a9bf001e 
http://blogs.msdn.com/b/kinectforwindows/archive/2014/04/02/windows-store-app-development-is-coming- 
to-kinect-for-windows.aspx
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
El factor determinante del objeto color
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
2014 09 12 Dia Programador Session Materials
Demo 
MonoBrick 
C# Sample
2014 09 12 Dia Programador Session Materials

More Related Content

PPTX
2015 02 28 DotNetSpain2015 Coding4Fun
Bruno Capuano
 
PDF
Esp32 cam arduino-123
Victor Sue
 
PPTX
ESP8266 Wifi Nodemcu
creatjet3d labs
 
PPTX
EVENT - Coding4Fun DotnetMalaga
Bruno Capuano
 
PDF
YCAM Workshop Part 1
Shigeru Kobayashi
 
PDF
Workshop @ Make: Tokyo Meeting 02
Shigeru Kobayashi
 
PPT
arduino-ppt
jhcid
 
PPS
What is Arduino ?
Niket Chandrawanshi
 
2015 02 28 DotNetSpain2015 Coding4Fun
Bruno Capuano
 
Esp32 cam arduino-123
Victor Sue
 
ESP8266 Wifi Nodemcu
creatjet3d labs
 
EVENT - Coding4Fun DotnetMalaga
Bruno Capuano
 
YCAM Workshop Part 1
Shigeru Kobayashi
 
Workshop @ Make: Tokyo Meeting 02
Shigeru Kobayashi
 
arduino-ppt
jhcid
 
What is Arduino ?
Niket Chandrawanshi
 

What's hot (20)

PDF
CTC - What is Arduino
David Cuartielles
 
PPT
Arduino presentation by_warishusain
student
 
PPTX
Arduino : how to get started
동호 손
 
ODP
Robotics and Arduino (Arduino UNO)
Dragos Ionita
 
PPTX
Different Arduino Boards
Mitwa Palkhiwala
 
PDF
[German] Boards für das IoT-Prototyping
Lars Gregori
 
PDF
Introducing... Arduino
zvikapika
 
PPTX
Introduction to Arduino
Green Moon Solutions
 
PDF
67WS Funnel
Shigeru Kobayashi
 
PDF
ACTI CUBE Cam IP 4001 640x480
DCI Securite
 
PDF
Intro arduino English
SOAEnsAD
 
PDF
Introducing the Arduino
Charles A B Jr
 
PPTX
Introduction to Internet of Things Hardware
Daniel Eichhorn
 
PDF
Show & Tell.- Introduction
zvikapika
 
PDF
Introduction to Arduino
Luki B. Subekti
 
PPTX
Arduino
Paras Bhanot
 
PPTX
Aurdino presentation
C.Vamsi Krishna
 
PDF
WCAN mini ActionScript Vol.4
Shigeru Kobayashi
 
PPTX
Getting started with arduino workshop
Sudar Muthu
 
PPTX
Arduino and c programming
Punit Goswami
 
CTC - What is Arduino
David Cuartielles
 
Arduino presentation by_warishusain
student
 
Arduino : how to get started
동호 손
 
Robotics and Arduino (Arduino UNO)
Dragos Ionita
 
Different Arduino Boards
Mitwa Palkhiwala
 
[German] Boards für das IoT-Prototyping
Lars Gregori
 
Introducing... Arduino
zvikapika
 
Introduction to Arduino
Green Moon Solutions
 
67WS Funnel
Shigeru Kobayashi
 
ACTI CUBE Cam IP 4001 640x480
DCI Securite
 
Intro arduino English
SOAEnsAD
 
Introducing the Arduino
Charles A B Jr
 
Introduction to Internet of Things Hardware
Daniel Eichhorn
 
Show & Tell.- Introduction
zvikapika
 
Introduction to Arduino
Luki B. Subekti
 
Arduino
Paras Bhanot
 
Aurdino presentation
C.Vamsi Krishna
 
WCAN mini ActionScript Vol.4
Shigeru Kobayashi
 
Getting started with arduino workshop
Sudar Muthu
 
Arduino and c programming
Punit Goswami
 

Similar to 2014 09 12 Dia Programador Session Materials (20)

PPTX
[#EVENT] 2014 #Codemotion_es #Coding4Fun
Bruno Capuano
 
PPTX
2015 02 28 DotNetSpain IoT Fight
Bruno Capuano
 
PPTX
Internet of thing: Trabajando con Arduino y Visual Studio
Bruno Capuano
 
PDF
67WS Event FIO Primer
Shigeru Kobayashi
 
PPTX
2015 01 24 Coding4Fun at Tajamar
Bruno Capuano
 
PPTX
pcDuino tech talk at Carnegie Mellon University 10/14/2014
Jingfeng Liu
 
PPTX
Innovation with pcDuino
Jingfeng Liu
 
PDF
Banana pi bpi-r1 user manual
wang lion
 
PPTX
M.Tech Internet of Things Unit - III.pptx
AvinashAvuthu2
 
DOC
OV7670 Camera interfacing-with-arduino-microcontroller
Somnath Sharma
 
PPTX
ARDUINO AND RASPBERRYPI.pptx
vennetikiran1
 
PPTX
Arduino workshop
mayur1432
 
PDF
Command Your IoT Projects from the Terminal
Geoffrey Goetz
 
PPTX
M qcardiac
Antonio Mondragon
 
PDF
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Bhavin Chandarana
 
PDF
Getting Started With Raspberry Pi - UCSD 2013
Tom Paulus
 
PPTX
Intel galileo gen 2
srknec
 
PDF
How to Hack Edison
Shotaro Uchida
 
PPTX
Arduino camera interfacing OV7670
Somnath Sharma
 
PDF
KEDACOM - Recognitive IP video solutions
KEDACOM
 
[#EVENT] 2014 #Codemotion_es #Coding4Fun
Bruno Capuano
 
2015 02 28 DotNetSpain IoT Fight
Bruno Capuano
 
Internet of thing: Trabajando con Arduino y Visual Studio
Bruno Capuano
 
67WS Event FIO Primer
Shigeru Kobayashi
 
2015 01 24 Coding4Fun at Tajamar
Bruno Capuano
 
pcDuino tech talk at Carnegie Mellon University 10/14/2014
Jingfeng Liu
 
Innovation with pcDuino
Jingfeng Liu
 
Banana pi bpi-r1 user manual
wang lion
 
M.Tech Internet of Things Unit - III.pptx
AvinashAvuthu2
 
OV7670 Camera interfacing-with-arduino-microcontroller
Somnath Sharma
 
ARDUINO AND RASPBERRYPI.pptx
vennetikiran1
 
Arduino workshop
mayur1432
 
Command Your IoT Projects from the Terminal
Geoffrey Goetz
 
M qcardiac
Antonio Mondragon
 
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Bhavin Chandarana
 
Getting Started With Raspberry Pi - UCSD 2013
Tom Paulus
 
Intel galileo gen 2
srknec
 
How to Hack Edison
Shotaro Uchida
 
Arduino camera interfacing OV7670
Somnath Sharma
 
KEDACOM - Recognitive IP video solutions
KEDACOM
 

More from Bruno Capuano (20)

PPTX
Let's code a drone to follow faces using Python 🐍
Bruno Capuano
 
PPTX
Using Azure IoT to feed my squirrels ️
Bruno Capuano
 
PPTX
2021 12 01 Global XR Conference - My experiences adapting a Digital Twin WebG...
Bruno Capuano
 
PPTX
2021 06 19 ms student ambassadors nigeria ml net 01 slide-share
Bruno Capuano
 
PPTX
Global AI on Virtual Tour Oslo - Anomaly Detection using ML.Net on a drone te...
Bruno Capuano
 
PPTX
2021 04 21 Azure Sydney User Group - Scaling a POC to an Enterprise using Azu...
Bruno Capuano
 
PPTX
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
Bruno Capuano
 
PPTX
2021 02 13 CodeGen Verona - Let’s code a drone to follow faces syncing everyt...
Bruno Capuano
 
PPTX
2020 11 19 MVP Days Israel 2020 - Introduction to Machine Learning.Net and Au...
Bruno Capuano
 
PPTX
2020 10 22 AI Fundamentals - Azure Machine Learning
Bruno Capuano
 
PPTX
2020 09 24 - CONDG ML.Net
Bruno Capuano
 
PPTX
2020 08 06 Global XR Talks - Lessons Learned creating a multiplatform AI proj...
Bruno Capuano
 
PPTX
2020 06 27 Global AI On Tour Virtual GTA
Bruno Capuano
 
PPTX
2020 06 13 Best of Build 2020 - Canada Community Edition - Artificial Intelli...
Bruno Capuano
 
PPTX
Global Azure AI Tour Buenos Aires Argentina, Drones and AI
Bruno Capuano
 
PPTX
2020 04 18 Global AI On Tour Monterrey - Program a Drone using AI
Bruno Capuano
 
PPTX
2020 04 10 Catch IT - Getting started with ML.Net
Bruno Capuano
 
PPTX
2020 04 09 Global AI Community Virtual Tour - Drones and AI
Bruno Capuano
 
PPTX
2020 04 04 NetCoreConf - Machine Learning.Net
Bruno Capuano
 
PPTX
2020 02 29 TechDay Conf - Getting started with Machine Learning.Net
Bruno Capuano
 
Let's code a drone to follow faces using Python 🐍
Bruno Capuano
 
Using Azure IoT to feed my squirrels ️
Bruno Capuano
 
2021 12 01 Global XR Conference - My experiences adapting a Digital Twin WebG...
Bruno Capuano
 
2021 06 19 ms student ambassadors nigeria ml net 01 slide-share
Bruno Capuano
 
Global AI on Virtual Tour Oslo - Anomaly Detection using ML.Net on a drone te...
Bruno Capuano
 
2021 04 21 Azure Sydney User Group - Scaling a POC to an Enterprise using Azu...
Bruno Capuano
 
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
Bruno Capuano
 
2021 02 13 CodeGen Verona - Let’s code a drone to follow faces syncing everyt...
Bruno Capuano
 
2020 11 19 MVP Days Israel 2020 - Introduction to Machine Learning.Net and Au...
Bruno Capuano
 
2020 10 22 AI Fundamentals - Azure Machine Learning
Bruno Capuano
 
2020 09 24 - CONDG ML.Net
Bruno Capuano
 
2020 08 06 Global XR Talks - Lessons Learned creating a multiplatform AI proj...
Bruno Capuano
 
2020 06 27 Global AI On Tour Virtual GTA
Bruno Capuano
 
2020 06 13 Best of Build 2020 - Canada Community Edition - Artificial Intelli...
Bruno Capuano
 
Global Azure AI Tour Buenos Aires Argentina, Drones and AI
Bruno Capuano
 
2020 04 18 Global AI On Tour Monterrey - Program a Drone using AI
Bruno Capuano
 
2020 04 10 Catch IT - Getting started with ML.Net
Bruno Capuano
 
2020 04 09 Global AI Community Virtual Tour - Drones and AI
Bruno Capuano
 
2020 04 04 NetCoreConf - Machine Learning.Net
Bruno Capuano
 
2020 02 29 TechDay Conf - Getting started with Machine Learning.Net
Bruno Capuano
 

Recently uploaded (20)

PDF
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
PPTX
Agile Chennai 18-19 July 2025 Ideathon | AI Powered Microfinance Literacy Gui...
AgileNetwork
 
PPTX
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PPTX
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
PPTX
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PDF
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
PPTX
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
PDF
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
PDF
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
PDF
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
PPTX
IT Runs Better with ThousandEyes AI-driven Assurance
ThousandEyes
 
PDF
Software Development Methodologies in 2025
KodekX
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PPTX
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 
A Strategic Analysis of the MVNO Wave in Emerging Markets.pdf
IPLOOK Networks
 
Agile Chennai 18-19 July 2025 Ideathon | AI Powered Microfinance Literacy Gui...
AgileNetwork
 
What-is-the-World-Wide-Web -- Introduction
tonifi9488
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
The-Ethical-Hackers-Imperative-Safeguarding-the-Digital-Frontier.pptx
sujalchauhan1305
 
Introduction to Flutter by Ayush Desai.pptx
ayushdesai204
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
AI-Cloud-Business-Management-Platforms-The-Key-to-Efficiency-Growth.pdf
Artjoker Software Development Company
 
Applied-Statistics-Mastering-Data-Driven-Decisions.pptx
parmaryashparmaryash
 
Responsible AI and AI Ethics - By Sylvester Ebhonu
Sylvester Ebhonu
 
GDG Cloud Munich - Intro - Luiz Carneiro - #BuildWithAI - July - Abdel.pdf
Luiz Carneiro
 
OFFOFFBOX™ – A New Era for African Film | Startup Presentation
ambaicciwalkerbrian
 
IT Runs Better with ThousandEyes AI-driven Assurance
ThousandEyes
 
Software Development Methodologies in 2025
KodekX
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Agile Chennai 18-19 July 2025 | Emerging patterns in Agentic AI by Bharani Su...
AgileNetwork
 

2014 09 12 Dia Programador Session Materials

Editor's Notes

  • #38: Window Store app development: Being able to integrate the latest human computing technology into Windows apps and publish those to the Windows Store will give our developers the ability to reach more customers and open up access to natural user experiences in the home. Unity Support: We are committed to supporting the broader developer community with a mix of languages, frameworks, and protocols. With support for Unity this summer, more developers will be able to build and publish their apps to the Windows Store by using tools they already know. Improved anatomical accuracy: With the first-generation SDK, developers were able to track up to two people simultaneously; now, their apps can track up to six. And the number of joints that can be tracked has increased from 20 to 25 joints per person. Lastly, joint orientation is better. The result is skeletal tracking that’s greatly enhanced overall, making it possible for developers to deliver new and improved applications with skeletal tracking, which our preview participants are calling “seamless.” Simultaneous, multi-app support: Multiple Kinect-enabled applications can run simultaneously. Our community has frequently requested this feature and we’re excited to be able to give it to them with the upcoming release.
  • #40: Improved reliability and accuracy More reliable lock-on and more stable joints More anatomically correct skeleton Hips in the right place, new shoulder parent Six players tracked at all times Simplified engagement, bystander involvement Hand-tip and thumb joints Enables subtle and more nuanced hand gestures V1 -> 20 joints, V2 -> 25 Per-joint orientation Great for avateering