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の使用を避けようとしています