Missing properties of Kinect 360 V1 Matlab 2017a - no TrackingMode, no Skeleton
Show older comments
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.

Now, the image of what i have got:

%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 Comments
Walter Roberson
on 11 Sep 2017
I do not have a Kinect of any kind to test with.
Note: the only Kinect V1 that was supported was Kinect For Windows V1. Some of the other Kinect worked partly with the older versions of the support package, but the upgrades to the support package to support Kinect V2 might have lost some accidental compatibility.
Walter Roberson
on 11 Sep 2017
In a follow-up duplicate question, the poster clarified that this is a Kinect 360 v1
Jose Marques
on 11 Sep 2017
Accepted Answer
More Answers (1)
ANDREA JARAMILLO
on 12 Oct 2018
0 votes
Hi, I have the same problem, how you solve it??
2 Comments
Jose Marques
on 12 Oct 2018
William Sánchez
on 13 May 2021
so, I can use that version to work with the kinect 360?
Categories
Find more on Kinect For Windows Sensor in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!