You are probably familiar with optical flow sensors which provide extremely precise measurement of ground speed (and therefore position) for quadcopters and computer mice. The PX4FLOW is the most-recent example but there are many others.
The optical flow sensor provides a 2D measurement of the angular speed of the image that is moving through its field of view, which is perfect for a mouse but by itself not that useful for a free-flying robot. It cannot differentiate between a near thing moving slowly, a far thing moving quickly, or its own camera rotating. Optical flow must be integrated with other kinds of sensor data for it to make sense in 3D space.
For those familiar with trigonometry, the diagram at right provides an intuitively-correct way of understanding how the various sensors are integrated, and how it can be possible to calculate an unknown value from known measurements.
So, given altitude from sonar, pitch rate from the IMU, and optical flow, we can calculate ground speed.
While helpful for visualizing the math, the trigonometric method is only actually correct at α = 0. At α = 90°, a and h hit infinity, which is obviously nonsense. To calculate the actual distance traveled, you must calculate the sum of the movement across point C, which, when you do the calculus, ends up being the exact same formula used to calculate the length of the curved section of a circle segment. I've illustrated this with the second diagram at right.
It might seem that adding that curve to the equation has hopelessly complicated things, but in reality it makes the equation simpler, with no trigonometric functions at all. If I take out the obvious unit conversions, it looks like this:
ground speed = (optical flow - pitch rate) × altitude
In the above formula altitude is a known value directly measured by sonar. Sonar works well in quadcopters and other craft which fly in a hover regime, but tends to be much less reliable in planes, where accurate AGL measurement is probably even more important, especially for landing.
Fortunately, ground speed is not an unknown in planes. GPS and airspeed measurements provide highly-accurate ground speed measurements (there are errors but they’re small compared to the higher speed of the craft). With ground speed solved, we can use basic algebra to move the terms around and solve for a different unknown:
altitude = ground speed / (optical flow - pitch rate)
Thus, we have a reliable and accurate measurement of altitude which works at even greater range than sonar.
The new PX4FLOW has its own sonar altimeter and gyros and performs all sensor integration internally. To add ground speed as an input and altitude as an output, one of the following will need to occur:
The second option is the winner in my opinion, as it enables drop-in use of less complex optical flow hardware. I really don’t understand why a redundant IMU was placed on the PX4FLOW in the first place.
Please note that I’m not in a position to do this work myself. My own plane does not have any optical flow sensor, and probably won’t for a long time. I’m OK with hard landings. I’m just offering the math that you’ll need to implement your own.
You may find that your optical flow sensor stops sending intelligible data as the ground gets close. This problem is also encountered with sonar, which has a minimum measurable distance due to the sensor deafening itself while generating the same sound that it needs to listen for. Optical flow fails for a different reason. If we solve for a different unknown we can see why:
optical flow = (ground speed / altitude) + pitch rate
As altitude approaches zero, optical flow will approach infinity. I don’t know the limits of the PX4FLOW (and I don’t have one to test) but I assume the limits are lower than you would want. There are several solutions to mix and match:
Comment by avionics on February 14, 2013 at 1:47am where is the Picture you referring to ?
Comment by Bharat Tak on February 14, 2013 at 1:55am the pic!
Comment by Jonathan Price on February 14, 2013 at 9:26am Sorry about the missing pics. They were there when I wrote, previewed, and submitted the post but somehow disappeared when the moderator approved it. I was asleep by then. Whoever fixed it, thanks!
Comment by Jonathan Price on February 14, 2013 at 9:52am @Noth:
I see your point about the task overloading the CPU. I don't think it will, but the story of the camel's back and the straw does come to mind.
In case I gave that impression, I wasn't talking about making the host CPU process the raw video data. That task is best performed on the PX4FLOW. In my scenario, the only thing sent to the host CPU would be the optical flow reports, just two whole integers indicating how many pixels the image shifted during that frame. This is how most optical flow boards work.
As I demonstrate above, that last step --sensor integration-- is not that hard: It's just a fixed-point subtract and then 1-3 multiplies, 250 times a second. If APM can't handle it, I think PX4 certainly can.
Comment by PT on February 14, 2013 at 10:54am The PX4FLOW outputs the raw pixels, you can use them as you wish, even better, the output is at 50Hz, so I think APM should also be able to handle it.

Nice article Jonathan! I've been thinking about using PX4FLOW for altitude in ArduPlane as well.
Perhaps there is no need to change the software on the PX4FLOW. The plane can just report a fake altitude to the PX4FLOW board, for example just the barometric altitude. The PX4FLOW will then report a ground speed based on that altitude. The ratio of the PX4FLOW reported ground speed and the GPS ground speed gives you the correction factor for the altitude. So you then multiply the altitude you supplied to the PX4FLOW by that ratio and you get the true altitude.
I also don't think that the limits of PX4FLOW as you come in to land are really a problem. As long as you know when it starts to break down, you can use the last good point as a baseline and use barometric changes from then on. The barometric altitude is quite accurate as a relative measure over the time it would take to go from 10m altitude to landing.
What I don't know yet is how accurate the PX4FLOW will be when used in this way. Time for some experiments!
There are other nice things you can do with this as well:
Cheers, Tridge
Comment by Veikko Vierola on February 14, 2013 at 2:38pm @Tridgell
"when you lose GPS, you can switch to barometer for altitude, and use PX4FLOW for ground speed, allowing for nice long term dead reckoning navigation even without an airspeed sensor"
Do you have some estimation how long and with what kind of accuracy the dead reckoning could be done with optical flow sensor in plane?

Hi Veikko,
Do you have some estimation how long and with what kind of accuracy the dead reckoning could be done with optical flow sensor in plane?
Well, that depends on what you ask it to do. ArduPlane already switches to dead-reckoning automatically when GPS fails, using the airspeed sensor plus the last wind estimate for ground speed, or the last ground speed value it got from the GPS if there is no airspeed sensor. It then uses the compass for navigation.
If all you are doing is RTL then it should get the heading to within a few degrees, so it should be able to come back to home quite well. If you ask it to continue flying a complex mission then it will lose position much more quickly. I usually count on "reasonable" accuracy for about 3 minutes, to within about 100m position, but that varies a lot depending on how much the wind varies.
The main source of errors are in the ground speed and ground course (which of course is what you need to navigate!). The optical flow gives you both of those, as long as the ground height doesn't vary too much. If flying over hilly terrain then the optical flow sensor will give poor ground speed, but over flat terrain I'd hope its speed will be within 5% or better, but I won't know until I try it. What is really nice is that an optical flow sensor can also give ground course, which means you can continue to update the wind estimate while flying without a GPS. I think that means you could navigate quite long distances (perhaps 10s or kilometers) with quite good accuracy. I'd also expect the error to accumulate linearly with distance, which means it won't suddenly explode as happens with accelerometer based techniques.
It's all guesses till we try it though!
Cheers, Tridge
Season Two of the Trust Time Trial (T3) Contest has now begun. The fourth round is an accuracy round for multicopters, which requires contestants to fly a cube. The deadline is April 14th.1299 members
12 members
249 members
183 members
693 members
© 2013 Created by Chris Anderson.
Powered by

You need to be a member of DIY Drones to add comments!
Join DIY Drones