-1
我正在使用Kinect SDK並嘗試添加顏色框。我正在使用的代碼:爲什麼不顯示彩色圖像?
byte[] pixels = new byte[sensor.ColorStream.FramePixelDataLength];
WriteableBitmap image = new WriteableBitmap(sensor.ColorStream.FrameWidth, sensor.ColorStream.FrameHeight, 96, 96,
PixelFormats.Bgra32, null);
video.Source = image;
colorFrame.CopyPixelDataTo(pixels);
image.WritePixels(new Int32Rect(0, 0, image.PixelWidth, image.PixelHeight), pixels, image.PixelWidth * sizeof(int), 0);
但圖像不顯示。我知道我可以連接到Kinect,因爲我可以改變仰角。我究竟做錯了什麼?提前致謝。 注:我試圖避免使用Coding4Fun
@downvoter有什麼不對? – 2012-08-14 19:37:27