Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Kinect Workshop
Search
Seiya Konno
April 16, 2012
Technology
1
150
Kinect Workshop
Seiya Konno
April 16, 2012
Tweet
Share
More Decks by Seiya Konno
See All by Seiya Konno
NuxtHub で作る生成 AI アプリケーション
nulltask
0
64
About node-canvas (#tng7)
nulltask
0
1.3k
Introduction of WebRTC
nulltask
1
250
Node and Face (Tokyo Node Academy #5)
nulltask
1
3.5k
Introduction of Perfume Hackathon
nulltask
1
440
Other Decks in Technology
See All in Technology
Exadata Database Service on Dedicated Infrastructure(ExaDB-D) UI スクリーン・キャプチャ集
oracle4engineer
PRO
8
7.2k
聲の形にみるアクセシビリティ
tomokusaba
0
160
フルカイテン株式会社 エンジニア向け採用資料
fullkaiten
0
11k
ナレッジワーク IT情報系キャリア研究セッション資料(情報処理学会 第88回全国大会 )
kworkdev
PRO
0
160
LINE Messengerの次世代ストレージ選定
lycorptech_jp
PRO
19
7.7k
PMBOK第8版は第7版から何が変わったのか(PMBOK第8版概要解説) / 20260304 Takeshi Watarai
shift_evolve
PRO
0
110
20260311 ビジネスSWG活動報告(デジタルアイデンティティ人材育成推進WG Ph2 活動報告会)
oidfj
0
200
OCI Security サービス 概要
oracle4engineer
PRO
2
13k
開発組織の課題解決を加速するための権限委譲 -する側、される側としての向き合い方-
daitasu
5
490
ビズリーチにおける検索・推薦の取り組み / DEIM2026
visional_engineering_and_design
1
140
S3はフラットである –AWS公式SDKにも存在した、 署名付きURLにおけるパストラバーサル脆弱性– / JAWS DAYS 2026
flatt_security
0
1.6k
DX Improvement at Scale
ntk1000
3
450
Featured
See All Featured
Skip the Path - Find Your Career Trail
mkilby
1
75
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4.2k
So, you think you're a good person
axbom
PRO
2
1.9k
Testing 201, or: Great Expectations
jmmastey
46
8.1k
Mobile First: as difficult as doing things right
swwweet
225
10k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
10k
Conquering PDFs: document understanding beyond plain text
inesmontani
PRO
4
2.4k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.3k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
10
1.1k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.3k
Paper Plane (Part 1)
katiecoart
PRO
0
5.4k
How People are Using Generative and Agentic AI to Supercharge Their Products, Projects, Services and Value Streams Today
helenjbeal
1
140
Transcript
2012/02/07 KINECT WORKSHOP
• What is Kinect • How to Kinect Hacking •
Setup! AGENDA
WHAT IS KINECT • Motion sensing input device • Designed
for Microsoft Xbox 360 • Components • 3D depth sensor • RGB Camera • Microphones / Motorized tilt
USAGE
KINECT HACKING BRINGS... • Demo • http://vimeo.com/17836665 • http://www.youtube.com/watch?v=lajP7HO7ZyE •
http://mrdoob.com/lab/javascript/webgl/kinect/ • http://vimeo.com/24546394
RECIPE • Mac and OS X 10.6 or later •
Kinect • Driver for Mac • Xcode • openFrameworks
DRIVER FOR PC • libfreenect • First Kinect driver for
PCs • Simple and Fast. • OpenNI • PrimeSense officially released. • Can detect bones
XCODE • For compiling openFrameworks projects. • Bundles many useful
development tools. • Compilers (gcc) • Mac OS X Software development kit.
HOMEBREW • Homebrew (a.k.a. brew) is Package manager for OS
X • Easiest way to install missing Unix tools. • $ brew install opencv • Require compiler. (provided by Xcode)
OPENFRAMEWORKS • Written by C++ • Insanely fast! • Flexible
API. Processing like. (setup, update, draw) • Many addons (OpenCV, OSC etc...) • Exists library for Kinect. • ofxKinect, ofxOpenNI
INSTALLATION • Download Xcode installer from Mac App Store
INSTALLATION • Install Homebrew • Google: homebrew install
INSTALLATION • Install libfreenect, libusb-freenect by Homebrew • cd `brew
--prefix`/Library/Formula • $ curl --insecure -O "https://raw.github.com/OpenKinect/ libfreenect/master/platform/osx/homebrew/libfreenect.rb" • $ curl --insecure -O "https://raw.github.com/OpenKinect/ libfreenect/master/platform/osx/homebrew/libusb- freenect.rb" • $ brew install libfreenect
INSTALLATION • Download openFrameworks v007 • http://openframeworks.cc •
INSTALLATION • Put openFrameworks to your home directory • /Users/anyone/of_preRelease_v007_osx
INSTALLATION • Download ofxOpenNI (includes OpenNI Libraries) • Google: ofxopenni
• https://github.com/gameoverhack/ofxOpenNI
INSTALLATION • Rename gameoverhack-ofxOpenNI-xxxx to ofxOpenNI • Put ofxOpenNI to
openFrameworks addons directory
INSTALLATION • Make application directory • of_preRelease_v007_osx/apps/myapps • Move example
project to application directory • of_preRelease_v007_osx/addons/ofxOpenNI/example/ openNI-demoAllFeatures • of_preRelease_v007_osx/apps/myapps/openNI- demoAllFeatures
INSTALLATION • Copy libraries to project folder • src: of_preRelease_v007_osx/addons/ofxOpenNI/mac/
copy_to_data_openni_path/lib • dest: of_preRelease_v007_osx/apps/myapps/openNI- demoAllFeatures/bin/data/openni
OPEN PROJECT • Open Xcode Projet file • of_preRelease_v007_osx/apps/myapps/openNI- demoAllFeatures/openNiSample007.xcodeproj
DON’T FORGET!! • Switch compiler Apple LLVM compiler to LLVM
GCC • Apple LLVM compiler cannot build openFrameworks project • Set deployment target to Mac OS X 10.6 • 10.7 cannot build for Mac OS X SDK reason
None
RUN AND ENJOY!
CALIBRATING
TO BE CONTINUED...