티스토리 뷰
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); imshow(depthMap, [0 4096]); if sum(depthMetaData.IsSkeletonTracked) > 0 skeletonJoints = depthMetaData.JointDepthIndices(:,:,depthMetaData.IsSkeletonTracked); hold on; plot(skeletonJoints(:,1), skeletonJoints(:,2),'*'); hold off; end end stop(depthVid);
matlab kinect 강의 보고 따라친 코드. 약간 다르게 표현한 부분이 있다. 아무튼 이렇게 하면 realtime으로 Joint에 파란색 *이 출력되게 했다. 다음은 동영상.
'Kinect' 카테고리의 다른 글
[Kinect] kinect 수화 프로그램 (8) | 2014.06.09 |
---|---|
[kinect] kinect in matlab - handtracking with background subtraction (6) | 2014.06.05 |
[kinect] kinect in matlab - Hand Tracking (4) | 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
- Pipeline
- Kinect SDK
- reward
- PowerPoint
- DepthStream
- processing
- ColorStream
- 파이썬
- arduino
- SketchFlow
- 한빛미디어
- RL
- Kinect
- Off-policy
- bias
- Windows Phone 7
- Policy Gradient
- Expression Blend 4
- Offline RL
- Distribution
- Kinect for windows
- ai
- dynamic programming
- windows 8
- End-To-End
- TensorFlow Lite
- Variance
- 딥러닝
- 강화학습
- Gan
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함