Is there anyway that I can use the kinect as a webcam in Matlab?

3 ビュー (過去 30 日間)
Mo'ath Al-Hayek
Mo'ath Al-Hayek 2018 年 10 月 20 日
コメント済み: Walter Roberson 2018 年 10 月 23 日
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.

採用された回答

Walter Roberson
Walter Roberson 2018 年 10 月 20 日
編集済み: Walter Roberson 2018 年 10 月 23 日
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 件のコメント
Mo'ath Al-Hayek
Mo'ath Al-Hayek 2018 年 10 月 23 日
Thanks a lot, I want to use the kinect as input camera ( Like the webcam ) so I can benefit from it and from its quality,
Walter Roberson
Walter Roberson 2018 年 10 月 23 日
Change
vidObj = webcam;
to
vidObj = videoinput('kinect');
change
RGBFrame = snapshot(vidObj);
to
RGBFrame = getsnapshot(vidObj);

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by