Missing properties of Kinect 360 V1 Matlab 2017a - no TrackingMode, no Skeleton
2 ビュー (過去 30 日間)
古いコメントを表示
Hello evereyone!
Has anyone used the Kinect 360 v1 in Matlab R2017a?
I have some troubles connecting Kinect 360 V1 with Matlab 2017a. I use all codes in Matlab 2013a and works perfectly. But in Matlab 2017a some properties are missing. There is no "TrackingMode", "BodyPosture", "DepthMode", "IREmitter" and "SkeletonsToTrack".
Above: exemple in Matlab tutorial.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/167082/image.png)
Now, the image of what i have got:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/167083/image.png)
%Testes iniciais para Kinect no Matlab 2017
clear all;
close all;
clc;
vid = videoinput('kinect',1,'RGB_640x480')
src = getselectedsource(vid)
src.BacklightCompensation = 'LowLightsPriority';
preview(vid);
pause();
closepreview(vid);
vid2 = videoinput('kinect',2,'Depth_640x480');
src = getselectedsource(vid2);
start(vid2);
% Get the data on the object.
[frame, ts, metaData] = getdata(vid2);
% Look at the metadata to see the parameters in the skeletal data.
metaData
metaData.IsSkeletonTracked
metaData.JointWorldCoordinates(:,:,1)
% View the segmentation data as an image.
imagesc(metaDataDepth.SegmentationData);
% Set the color map to jet to color code the people detected.
colormap(jet);
Someone can help me?
3 件のコメント
Walter Roberson
2017 年 9 月 11 日
In a follow-up duplicate question, the poster clarified that this is a Kinect 360 v1
採用された回答
Walter Roberson
2017 年 9 月 11 日
The Kinect 360 (for xbox) is not supported; see https://www.mathworks.com/hardware-support/kinect-windows.html . The 360 was never supported by Mathworks, but some earlier versions could talk to half of it.
6 件のコメント
Jan
2018 年 1 月 26 日
@Jose Marques: Please use flags only to inform admins and editors about contents, which might conflict with the terms of use.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Kinect For Windows Sensor についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!