Developer

The CanberraUAV Outback Challenge team has put together a package that will allow anyone to try the image recognition system we developed for our successful 2012 OBC entry. We hope that by releasing this in an easier to use form that other OBC teams and anyone interested in image recognition in UAVs will be able to reproduce what we've done and build upon it for their own systems.

The fundamental problem that our system is meant to solve is providing real-time recognition of objects on the ground from a UAV, while requiring only a low bandwidth radio link between the aircraft and the ground station. A lot of UAVs are run using analog video links from the plane to the ground, but we think that is not a good way to do many search and rescue and environmental tasks. The problems with an analog video link are:

  • the quality of the video is often greatly degraded by being sent over the analog link, making it hard to spot small objects
  • the task of an operator staring at a video screen for hours is much too hard. The operator may notice something flash by, then has to decide whether to rewind (possibly missing something else in the search) or to skip the object
  • in many (most?) parts of the world analog video links may violate local radio licensing regulations

We think the solution is for the aircraft to do an initial pass of image recognition to find "interesting" objects on the ground, and then to show small (low bandwidth) thumbnails of those objects on the ground station, overlaid on a satellite map of the area. The operator can then select which of these thumbnails to look at more closely, bringing down a full high resolution image around that object from the plane over the telemetry link when needed. When using this method the operator gets a complete overview of the search area, and can quickly focus on areas of interest, using the human to decide which of the objects that the computer shows up are worth investigating. That was the strategy we successfully used in our 2012 OBC flight.

Up to now the image recognition code we developed for that competition was fairly deeply embedded in the MAVProxy module we used, making it hard for other teams or UAV researchers to run the algorithm over their own data to see how it performs. So to address that we have now put together a set of packages that can be installed on Linux, Windows or MacOS to try the system for yourself.

The new tool is called geosearch.py, and is a standalone UAV search tool that operates offline on a set of images, using either EXIF positioning data in the images, or a MAVLink telemetry log for geo-referencing. It runs the same code that we use in our real-time system embedded in the aircraft, but converted to run as a local GUI tool on a desktop computer. Note that the algorithms we use are tuned for speed. They are not state of the art computer vision algorithms, but they are fast, allowing them to run in real-time on a low power ARM Linux box embedded in an aircraft. We originally tried to use algorithms from the excellent OpenCV system, but found them too slow for our application. We do however use some OpenCV helper functions in our code to make the system a bit simpler.

Release of data from our OBC flight

As a companion to this tool we have released the images captured from our OBC 2012 flight for anyone to download, along with the telemetry logs and other files needed to reproduce the result. The images are kindly hosted by CSIRO in Australia, and are available from the CSIRO Outback Challenge website.

On that site you will find a set of 20 zip files containing the raw images from our flight. If you download and extract those zip files you will end up with a directory called 'raw' which contains 17042 pgm image files. Those files are 8 bit raw Bayer grid files of 1280x960, which are the raw images from our PtGrey Chameleon camera. We're hoping those files will be useful to anyone wanting a decent sized set of UAV images for research, or for training an algorithm for the next Outback Challenge.

(NOTE: as of the time of writing the CSIRO site has the images as 17k separate image files, those should be converted to the 20 zip files for easier download soon).

We also provide a tool called pgm_convert.py which will take those pgm raw images and convert them to other formats, most commonly to lossless PNG files.

How to try our system for yourself

If you watch the video and want to try our system on your own data, or on the data from our OBC flight, then you will need to install a set of python packages that provide the basic system tools we use in our code.

On Windows you need Python 2.7, plus a set of extra python packages. To make life easier for windows users we have collected all of the packages you need in this directory. Note that this includes both the packages needed to run our tools, and the packages needed to build our tools for yourself for when you want to modify the code.On Linux installing the basic python tools is a bit easier. For example, on an Ubuntu Linux system the following command should be enough:

  sudo apt-get install python-wxgtk2.8 python-matplotlib python-numpy python-pyexiv2 python-opencv python-httplib2 libjpeg-turbo-progs

If you are using MacOS, then you should install a suitable Python 2.7 package first, then use easy_install to add the required additional packages.

Once you have the basic tools installed, the next step is to install the 3 CanberraUAV python packages, pymavlink, MAVProxy and cuav. You can get those packages from the python packaging index:

That will allow you to download tar balls or windows installers for each package. If you are going to modify the code, then you will be better off downloading the source from our github repository.

To build the packages yourself (instead of using the pre-built packages), you would use the following commands in each of the 3 package directories. For Linux or MacOS, use this:

  python setup.py build install --user

for Windows use this:

  python setup.py build -c mingw32 install

Note that for building on WIndows you also need to install the MinGW package.

How it all works

To see how it all works, you can either read the code (just follow the above links to our code repository) or you can watch a presentation I gave in January 2012 which explains the algorithm to some extent (video and slides).

We'd also encourage you to ask questions on the CanberraUAV mailing list, or on the Outback Challenge discussion group.

How much bandwidth does it use?

The aim of this system is to allow for real-time UAV search with only a low bandwidth telemetry link to the aircraft. It is possible to run the system with a 64 kbit/s ISM band radio, such as the excellent RFD900 radio.

To make this possible we developed a new network transport protocol called block_xmit (mp4-video, ogg-video, slides, implementation), which allows us to intermix low bandwidth thumbnail images and python objects with normal MAVLink telemetry over a single radio link. The system also scales up to higher bandwidth links, so if you happen to have a high bandwidth ethernet bridge (such as a Ubiquity Bullet) in your aircraft, and you are close enough to the ground station to have a good link, then the system will transmit real-time images that gives the effect of a digital video link. That capability can be seen in the demonstration video above.

The block_xmit protocol also prioritizes images based on the image score from the recognition algorithm, so you can set quite a low threshold for what images to send, and if a high scoring object (such as Joe!) turns up it will jump the queue in the radio link and be shown to the operator quickly.

For our aircraft we combine both types of radio link, with the results of our imaging system coming over both a 5.8GHz Ubiquity ethernet bridge and a 900MHz RFD900 telemetry radio (with smaller thumbnail sizes to save bandwidth). That gives us redundancy in case a particular radio technology does not perform well on the day.

Geo-referencing

Included in the system is a geo-referencing system that uses the MAVLink telemetry stream along with image timestamps to work out the geographic location (latitude/longitude) of any region of interest in the image. These are displayed on the map in various formats (degrees decimal, degrees/minutes/seconds and UTM grid coordinates).

If you instead have a camera with a built-in GPS that tags images with EXIF geo-referencing tags the the code can instead use those for geo-referencing. That tends to result in much less accuracy however, as the EXIF tags don't contain nearly as much information about the aircraft attitude, which makes a big difference.

Also note that our current system uses local timestamps in the raw pgm filenames to work match the time to the MAVLink log. That is a mistake which we will fix in a future release. It means that if you are using our OBC data in a timezone other than Queensland you need to use the time offset option in the geosearch.py program to adjust the time to match the times in the MAVLink log. For example, if you are perth, which is 2 hours west of Queensland, then you would use an offset of -7200 seconds.

Next Steps

Some parts of our algorithm were tuned for the expected object sizes of the OBC competition (about 2 meters by 0.5 meters) and for the altitude and images sizes we used. We'd like to parametrize those aspects of the code to make it easier to use for a wider variety of tasks and camera systems.

We'd also like to make it easier to plug in different scoring filters. The recognition algorithm works in two stages, a first stage that finds anything unusual in the image, then a second stage that converts that region to HSV colour space and applies some simple heuristics to score the region. We'd like users to be able to easily plugin different scoring systems to suit their own image search task, as not everyone is looking for a lost hiker wearing blue jeans and a yellow shirt!

We are also interested in adapting our system to thermal cameras, such as the Tamarisk 640, and we hope to do some testing with that system later this year.

Please share your improvements

If you use this code in your own system then please share your improvements! You can clone our repository on github, or post an issue, or just discuss your changes on our mailing list. If we work together we can create a system which will end up saving lives, so please don't just keep your improvements to yourself.

E-mail me when people leave their comments –

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

Join diydrones

Comments

  • Hi guys. I am very interested in this awesome piece of software. I saw you have benchmarked also the Raspberry Pi. I have tried also to replicate your software on a raspberry by, but I need some help here. After following your instructions I got stacked in installing the turbo-jpeg library. Finally I used the version of drgr33n (http://www.raspberrypi.org/phpBB3/viewtopic.php?t=64725&p=476810 ), and after decompressing the libraries manually in /opt/libjpeg-turbo/ I was able to build and install cuav. But when I try to run geosearch.py instead getting the input screen I just get "Illegal instruction". Any idea why?

  • Hi Jamie,

    When I asked the same question of the CanberraUAV team they advised me to look under the tests directory for test_plane.sh.  I think it sets up mavproxy to do what you want.

    Again the CanberraUAV team is your best bet as I am neither a linux or python expert just a hacker in both.  I know enough to be dangerous :-)

  • I looked though the code of the camera.py. Keep in mind, Im new to the programing and Python, but if I understood what I was seeing, it looks as though all I need to do is have the pandaboard boot into the camera.py program and it should run the program and take the pictures, scan the pics, generate the thumbnail and transmit it correct? How would I go about having it boot and run camera.py without any input from me?

  • Awesome stuff as usual Tridge & CUAV gang...Being summer again I've decided to get out and aloft again after nearly 12 months out of action (what a busy year...) - might finally get my UAS going before next Xmas - anyway I've been following your progress for some time now and only now for some reason watched the article that was done on the OBC for last year "Robots in Flight"  Is it just me or the Editing by Channel 10 was Far from satisfactory...

    Like we finally see CUAV launching (Inverse V-Tail) - only to then switch to the Rearfacing camera on the OpenUAS entry...and several other shots showing CUAV in turns only to swap back to OUAS entry...

    Tridge...just wondering have you thought about automating or at least semi-automating your antenna positioning? Does paul actually have a Compass or bearing indicator on the antenna gimble, or just using best guess?

  • Hi Jamie - basically you will be running the same setup as CanberraUAV did in the last OBC therefore you can use MavProxy almost off the shelf.

    There is a program called camera.py that you can have a look at in CUAV that basically sets up the camera and sends the thumbnails down using blockxmit.

    As to doing this I am the wrong person to ask.  CanberraUAV run a discussion board and I think have workshops on how to use Mavproxy.  The mailing list is in the original post.  You would be much better to contact them.

    We are only using Tridge's code as one of our techniques and we are not using a camera attached to the BBB.

  • I'll be running it on a PandaBoard ES with an IP camera inside the plane.  I want to use the RFD 900 to transmit the thumbnails along with the telemetry data from the autopilot. I have Ubuntu 12.04 on the PandaBoard.

  • Try this link in a minute and see how you go.

    https://drive.google.com/folderview?id=0B7zFZkI7EnZeekFCejJta1pvRGs...

  • I have it running really well on a Beagle Bone Black.  Follow this tutorial to install Ubuntu 12.04 onto a SD card.

    http://learn.adafruit.com/beaglebone-black-installing-operating-sys...

    This is the path to the image file

    http://www.armhf.com/index.php/boards/beaglebone-black/#precise

    I set it up on an 8GB card and expanded the file system.  I only use the SD card as the BBB boots automatically from the SD card now so I did not bother flashing the internal card.

    This does not install a GUI so you can only SSH in.  The image ethernet is set to DHCP so the only way to connect to it is by finding its IP address by a scan or looking on your router for the DHCP lease.

    Follow my instructions above to install cuav as it works OK.  The only addition is you may need is PIL.

    What I have done is to install 12.04 LUbuntu on a VM and got it working there as anything you do on the VM will be directly applicable to the BBB image you have installed.

    Finally I have hacked the GIU parts out of geosearch.py so it will run on the BBB.  The one I am using is only using the EXIF tags not any sort of logs.  It is just run from the tools directory.

    The hack job runs the scanner over an image in the source directory.  It then places any thumbnails of interesting objects into another destination directory.  It also scans both directories for any new files.  The ones in the source directory are scanned and the ones in the destination directory are FTP'd to the destination of your choice.

    I will try to place the file and if you are really desperate the image file that I use ready to go on a google drive that you should be able to download.

  • 300km

    I'm interested in any help too. I've tried it without luck on a RPi. I got stuck with libjpeg-turbo-progs not installing. But I see there have been some recent posts that I haven't tried yet so I'll try that. 

    If I can get it working as expected I'd upgrade (to a Udroid probably).

  • Jamie - have done some work on this - what are you going to run in the UAV?
This reply was deleted.