Getting Started With RealSense In C# |
Written by Harry Fairhead | ||||
Thursday, 12 March 2015 | ||||
Page 3 of 3
The complete program for the WPF Version is:
A Windows Forms VersionIf you want to work with Windows Forms then there is nothing really new but there is a small problem when you try to display the 16-bit gray image generated by the depth stream. The problem is that the Windows Form PictureBox control cannot display a gray level image. The solution is to convert the gray level image to a false color image using direct bit manipulation and this is a good place to introduce this technique although there is a lot more to say about it in general. To create a Windows Forms version of the program all you need to do is start a new Windows Forms Project, add the two libraries in the same way as before and place a button, textbox and two PictureBoxes on the form. The Button's click event handler is exactly the same as the WPF version with minor changes to deal with the different UI controls. The first major change is in the conversion of the samples to a bitmap that is suitable for display. For the color image we need:
Notice that we are now using ToBitmap because Windows Forms doesn't support WriteableBitmap. The real problem is what to do with the depth data. It is supplied as a 16-bit gray level image and, as already stated, the PictureBox control cannot display this. We need to convert it to a false color bitmap. One answer, although it is a bit of a cheat, is to simply use the Format16bppRgb555 format which is supported. This treats a 16-bit value so that 5 bits are used for each of R,G and B and the topmost bit is ignored. To perform this conversion we can't simply assign to the PixelFormat property - it is read only. Instead we have to create a new Bitmap object of the correct size and PixelFormat and move the data from the original into it. First we need the depth data as a standard 16-bit integer array:
Next we need a suitable Bitmap of the correct size and format:
Finally we need to lock the data buffer in memory and use the Marshal.copy method to transfer the data into the buffer:
This is a technique that is very useful when you are trying to convert data stored in a standard array i.e. buffer into a viewable image. Now we simply display the result:
There are better ways to map depth to color but this one has the advantage of being easy to implement.
The complete click event handler is:
Where Next?At this point you know how to read a sample from the data streams. However one sample isn't usually enough and so you either have to discover how to use this method to poll the camera in a separate thread or use an callback method of access. We also haven't discovered how to control the basic camera's operation or how to deal with the higher level processing modules. More soon. You can download the code for both versions of this program from the CodeBin (note you have to register first). Real RealSense In C#
Related Articles
To be informed about new articles on I Programmer, install the I Programmer Toolbar, subscribe to the RSS feed, follow us on, Twitter, Facebook, Google+ or Linkedin, or sign up for our weekly newsletter.
Comments
or email your comment to: comments@i-programmer.info |
||||
Last Updated ( Friday, 26 January 2018 ) |