Is there anyway that I can use the kinect as a webcam in Matlab?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mo'ath Al-Hayek
il 20 Ott 2018
Commentato: Walter Roberson
il 23 Ott 2018
I want to use it in StreamingFaceRecognition.m
I don't know how to use the kinect camera as a webcam so I can capture image and process it.
0 Commenti
Risposta accettata
Walter Roberson
il 20 Ott 2018
Modificato: Walter Roberson
il 23 Ott 2018
Kinect v2 or Kinect For Windows v1 can be used with videoinput()
Kinect For Xbox v1 cannot be used for depth sensor in any release. For color it might be possible to get it to work with some older matlab.
4 Commenti
Walter Roberson
il 23 Ott 2018
Change
vidObj = webcam;
to
vidObj = videoinput('kinect');
change
RGBFrame = snapshot(vidObj);
to
RGBFrame = getsnapshot(vidObj);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Kinect For Windows Sensor in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!