티스토리 뷰
clc; clear all; close all; imaqreset; depthVid = videoinput('kinect',2); triggerconfig(depthVid, 'manual'); depthVid.FramesPerTrigger = 1; depthVid.TriggerRepeat = inf; set(getselectedsource(depthVid), 'TrackingMode', 'Skeleton'); viewer = vision.DeployableVideoPlayer(); start(depthVid); himg = figure; while ishandle(himg) trigger(depthVid); [depthMap, ~, depthMetaData] = getdata(depthVid); idx = find(depthMetaData.IsSkeletonTracked); imshow(depthMap, [0 4096]); if idx ~= 0 rightHand = depthMetaData.JointDepthIndices(12,:,idx); rightHandWorldCoordinate = depthMetaData.JointWorldCoordinates(12,:,idx); zCoord = 1e3*min(depthMetaData.JointWorldCoordinates(12,:,idx)); radius = round(90 - zCoord / 50); rightHandBox = [rightHand-0.5*radius 1.2*radius 1.2*radius]; rectangle('position', rightHandBox, 'EdgeColor', [1 1 0]) end end
stop(depthVid);
역시 matlab 강좌에서 뽑아온 코드. 실행하면 오른쪽 손을 기준으로 노란색 네모가 따라다닌다.
동작영상은 다음과 같다.
'Kinect' 카테고리의 다른 글
[Kinect] kinect 수화 프로그램 (8) | 2014.06.09 |
---|---|
[kinect] kinect in matlab - handtracking with background subtraction (6) | 2014.06.05 |
[kinect] kinect in matlab - Realtime Skeleton tracking (2) | 2014.06.05 |
[kinect] kinect in matlab - depthMetaData (0) | 2014.06.04 |
[Kinect] Kinect in matlab - installation (0) | 2014.06.03 |
[Kinect Project] Dive into KinectInteraction Example (2) Concepts (0) | 2013.12.16 |
[Kinect Project] Dive into KinectInteraction Example (1) Architecture (0) | 2013.12.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- DepthStream
- Off-policy
- Variance
- Pipeline
- windows 8
- RL
- ai
- Kinect
- Offline RL
- PowerPoint
- Expression Blend 4
- Gan
- 한빛미디어
- 파이썬
- Windows Phone 7
- ColorStream
- Policy Gradient
- TensorFlow Lite
- 강화학습
- Kinect for windows
- dynamic programming
- SketchFlow
- Distribution
- End-To-End
- arduino
- reward
- processing
- Kinect SDK
- 딥러닝
- bias
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함