Utilizzo Kinect (Microsoft SDK) con XNA. Voglio usare GRATF per l'indicatore di riconoscimentoConverti Kinect ColorImageFrame in Bitmap
Come convertire i dati di un Kinect ColorImageFrame
ad un System.Drawing.Bitmap
o AForge.Imaging.UnmanagedImage
che posso lavorare con GRATF?
void kinectSensor_ColorFrameReady(object sender, ColorImageFrameReadyEventArgs e)
{
Bitmap bitmap = null;
ColorImageFrame frame = e.OpenColorImageFrame();
byte[] buffer = new byte[frame.PixelDataLength];
frame.CopyPixelData(buffer);
// how to convert the data in buffer to a bitmap?
var glyphs = recognizer.FindGlyphs(bitmap);
...
}
un'occhiata a questo articolo: http://www.codeproject.com/Articles/730842/Kinect-for-Windows-version-Color-depth- e-infra (so che questo è vecchio, ma per chiunque lo veda ora) – ThunderWiring