Matlab crashing using .NET object
조회 수: 8 (최근 30일)
이전 댓글 표시
I'm trying to use the Microsoft Kinect SDK through MATLAB but MATLAB crashes when I try to start the stream object. The code is included below. Any help much appreciated as I'm not experienced with using .NET through MATLAB.
function captureVoice( )
a = NET.addAssembly('C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Research.Kinect\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Research.Kinect.dll');
try
b = Microsoft.Research.Kinect.Audio.KinectAudioSource();
b.FeatureMode = true;
b.AutomaticGainControl = false;
b.SystemMode = Microsoft.Research.Kinect.Audio.SystemMode.OptibeamArrayOnly;
%s = Microsoft.Research.Kinect.Audio.KinectAudioStream();
s = b.Start();
for i = 1:10
i
pause(1);
end
b.Stop()
catch err
'There was an error'
end
end
댓글 수: 0
답변 (1개)
Veera Kanmani
2018년 4월 20일
https://stackoverflow.com/questions/25774904/matlab-continuously-crashes-when-using-simulink
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Acquisition Using Kinect for Windows Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!