Running Kinect with Image Acquisition tool box
3 views (last 30 days)
Show older comments
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
Answers (1)
Siddhesh Gotad
on 26 Sep 2015
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 Comments
See Also
Categories
Find more on Kinect For Windows Sensor in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!