본문 바로가기

Programming/C#/Xna/Kinect/WPF

[Kinect] 키넥트 1.6 에서 프로그램 종료시 프리즈 되는 현상

I have the same problem.

In my debugging i noticed that problem appears only when i use skeleton stream.

Add this line:

sensor.SkeletonStream.Disable();

before:

this.sensor.Stop();
this.sensor = null;

Application hangs on line where Skeleton stream is disabled.

I am using SDK 1.6.

Interesting is that from moment error happens once, it will hang always until i reconnect camera from USB port.


->

Installed 1.5 and this hanging hasn't occurred. 

Josh


키넥트 1.6 버전에서 프로그램을 종료시키면 센서의 Skeleton Stream 부분을 Stop 하는 과정에서 프로세스가 무한루프를 도는 현상이 생김.

짜증나서 구글링해본 결과 같은 문제들이 많이 일어나고 있고, 1.5를 쓰면 아무 문제 없어짐.

아마 최신버전이라 문제가 좀 있는듯

이거땜에 1시간 삽질..


결론 : 1.5로 되돌리니까 문제가 해결됬다. 아직은 일단 1.5 써라.



'Programming > C#/Xna/Kinect/WPF' 카테고리의 다른 글

[XNA] A Simple 2D Camera  (0) 2013.05.08
[C#] String Split (Unity3D)  (0) 2013.02.19
[C#] 컴파일러와 dll파일  (0) 2012.11.20
[C#] ListView에서 Tag의 활용  (0) 2012.11.15
[C#] Cross Thread 처리방법  (0) 2012.11.12