3689624585?profile=original

This blog is a continuation of my previous post.

How to build a High-Definition FPV UAV using a Rasperry PI with HD camera, using a high speed WiFi link

This post will discuss how to use GStreamer and Mission Planner together to display the HD video with a HUD (Head-Up-Display).

Note: I have only tested this feature on Windows so the instructions given here are for Windows only. 

To give proper credit, the HUD created here was borrowed from APM Planner, a Qt-Based app similar to Mission Planner. The HUD part was created from the Qt codebase QML HUD created by Bill Bonney who is on the APM Planner development team. To make the HUD work with the background video, I used a GStreamer library called "QtGStreamer" which integrates GStreamer plugins with painting on a Qt widget.  This library is available on the GStreamer website.

The end-result is dynamically added to Mission Planner using the plug-in architecture. 

In the previous posts I discussed used a Raspberry PI and a High-speed WiFi link using GStreamer on the PI and the ground station PC.  To get the HUD to work, you need to already have a successful link with the video on your ground station. 

Here are the steps to follow to install the plugin:

1) Install Mission Planner.

2) Download and install GStreamer from this link.  Use the x86 version, the x86_64 version will NOT work. (Use the default path 'C:\GStreamer' when installing). When installing GStreamer, select 'Custom' install and select ALL plugins to be installed.

3) Follow the steps in the previous blog noted above to get your video stream working.

4) Download and the MSI installer from this link. and run the installer.

If all went well, you should have the plugin installed.

Open Mission Planner and navigate to the "Flight Data" page and right-click on the map. You should see a menu item called "GStreamer HUD" as shown below:

3689624376?profile=original

Select this menu item and the following screen should appear:

3689624624?profile=original

In the upper-left corner is a context menu. Here is where you enter your GStreamer Pipeline string. If you had the video displaying without the HUD using a valid pipeline, enter it here.

Note: The GStreamer Pipeline string should be exactly the same as the string you used before, but WITHOUT the final video sink element. The video sink is the QtGStreamer element which will be added automatically by the plugin. The GStreamer pipe should therefore be the same, except remove the last element for the video sink.

Here is an example string I used on my setup:

udpsrc port=9000  buffer-size=60000 ! application/x-rtp,encoding-name=H264,payload=96 ! rtph264depay ! h264parse ! queue ! avdec_h264

If all is well, you can connect to your UAV and see the HUD elements moving.  To change the HUD, right click on the display and select which elements you want to display. The default is to display everything shown here. 

If anybody has problems, please post back and I'll update the blog in case I missed something, and you cannot get it to work.

Happy Flying!

E-mail me when people leave their comments –

You need to be a member of diydrones to add comments!

Join diydrones

Comments

  • @Tommy,  Getting the mavlink data is easy, but currently I don't have the parser or the framework in the plugin code. It will take some work to duplicate what is in MissionPlanner without pulling the entire app with it.  The plugin currently uses a class in MissionPlanner that already holds the current state of the UAV. I don't have this in the plugin yet so this will require some development. If someone else wants to contribute time to get this done, by all means, any help would be appreciated. 

  • @Patric: It shouldn't be a big thing to make it a stand-alone. In MP just press ctrl-f and then click "mavlink". Then you can forward all mavlink data to your hud via TCP. Or am i missing something here?

  • @ap105,  I'll post the source as soon as I get some time, possible later today. The current configuration is part of Mission Planner because of the plugin architecture so you will also need to get Mission Planner, and the dependencies for the plugin. This needs a bit of documentation, and also a 'cmake' file that checks for the needed dependencies which does not exist yet.  To build the plugin, you'll need MissionPlanner source, GStreamer (x86 dev) , QtGStreamer (from freedesktop.org), and Qt installed on your system.  The plugin is actually Qt-based, but the plugin DLL is .net (C#) and a proxy dll  written C++/CLI that actually connects MissionPlanner to the Qt HUD module.   My plan is to make the HUD a stand-alone app that can parse the Mavlink stream directly rather than use Mission Planner, but this is a bigger project.

  • @Patrick: ok. Are you still planning to post the source up to github? I am using this with the C920 and would love to put some camera control into the plugin instead of writing a separate app/plugin for that.

  • @ap105,  this is an issue with QtGstreamer when rendering the video.  There are some other options in the gstreamer plugin that may fix that issue but I have not had the time to play with the settings to figure it out. I may have to contact the original developer to understand the issue, but I think it has something to do with the auto-color balance which appears not to work correctly. When I render using the native video sink, it's fine so it's something in the gstreamer plugin that is changing the color balance. 

  • Patrick, awesome work!  The color effects with different hue/saturation levels are great, but I would like to get as close as possible to the original colors of the video which does not seem to work right now. Is there a working slider combination to do that?

  • @Andrew, I setup today to record a flight, but just before launch noticed a servo problem and had to abort. Possibly tomorrow I'll have some flight video.

    Also, when you record using a tee in the pipeline as in the example I posted before, you won't see the HUD in the video. I think this is the preferred record mode, and currently there is no method to record both the video and the HUD overlay. If someone wants that, I will have to add a new feature.
  • So does anyone have a flight video with this setup??

  • FYI, if you want to record the video, you have to 'tee' the pipeline. Here is an example pipeline string:

    udpsrc port=9000  buffer-size=60000 ! application/x-rtp,encoding-name=H264,payload=96 ! rtph264depay ! h264parse ! tee name=record ! queue ! avdec_h264 !  record. ! queue ! mp4mux ! filesink location = /temp/fpv.mp4

    the "avdec_h264" element should be the last element followed by the record tee pipeline elements. It's the same as the non-record pipeline without the video sink element, as the sink is added by the HUD automatically.

    Important!  To get the recording to actually save, you have to hit the "stop" button on popup menu located in the upper-left corner of the HUD. Otherwise the EOS signal is never sent to the pipeline and the MP4 header is not written. You will have raw data, but the header is missing so you won't be able to load the file into a viewer.  Once you hit 'start' again, the file you have specified will get clobbered, so rename it if you want to save it.

  • @Andrew,  glad to hear it works.  Please let me know if you have any other issues / suggestions for improvement.

This reply was deleted.