Running Kinect with Image Acquisition tool box
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi Everyone;
I just started using Microsoft Kinect with image acquisition tool box. So using the imaqtool command, I get the GUI that allows me preview/log the data.
However, when I connect it with Microsoft Kinect, the color camera causes MATLAB to crash. the error prompt that I get is "MATLAB has encountered an internal problem and needs to be closed"
The depth camera however works fine.
Anyone knows what the issue is?
I am using MATLAB R2013b
Thanks; Ali
답변 (1개)
Siddhesh Gotad
2015년 9월 26일
I was getting the same error with Matlab 2015a on kinect for xbox. I implemented the following code and got the desired output without any errors:
vid = videoinput('kinect', 1, 'RGB_640x480');
triggerconfig(vid,'manual');
set(vid,'FramesPerTrigger',1);
set(vid,'TriggerRepeat', Inf);
set(vid,'ReturnedColorSpace','rgb');
start(vid);
trigger(vid);
colorImage= getdata(vid);
stop(vid);
댓글 수: 0
참고 항목
카테고리
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!