I'm currently combining the Qt library with the Kinect API, and attempting to show the video from the sensor in a QImage (being shown by a QLabel).
In my Kinect handling library, the function that receives the data from the video sensor is emitting the data as a BYTE* (pointing to something with RGB32 values).
In another little corner of my program, I have a slot receiving that BYTE* and attempting to update the QImage with the RGB32 data as follows:
videoCanvas->loadFromData(reinterpret_cast<const uchar*>(pBuffer), QImage::Format_RGB32);
Where pBuffer is passed into the slot by the signal, and is the aforementioned BYTE*.
This is not working for me, and I'm still stuck with a gray box where the image should be. I imagine that the issue is in the casting, because I have researched the data type and apparently QImage::Format_RGB32 is correct.
How should I proceed with this? :)