Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
AI Open Source Software Technology Games News

Testing AI Methods With FlightGear 66

mikejuk writes "The open source flight simulator Flight Gear is great fun but it can also be used for serious research. Suppose you want to develop a drone that can roam the seas and spot debris so that ships can be directed to it and pick it up. It's a good idea, but how do you test your methods? The obvious way is to take to the sea and fly a drone over real debris and see what happens. It uses a lot of fuel and generates a lot of sea sickness. Why not just fly a simulated drone over a simulated sea and save the sea sickness? This is what Curtis Olson, project manager at FlightGear and he explains how to get OpenCV to use the simulator as if it was a camera."
This discussion has been archived. No new comments can be posted.

Testing AI Methods With FlightGear

Comments Filter:
  • Tacos (Score:3, Funny)

    by SCPRedMage ( 838040 ) on Tuesday April 03, 2012 @12:08PM (#39561205)
    But can it simulate taco delivery drones?
  • Drones get seasick? (Score:5, Informative)

    by Dynedain ( 141758 ) <slashdot2NO@SPAManthonymclin.com> on Tuesday April 03, 2012 @12:10PM (#39561233) Homepage

    The obvious way is to take to the sea and fly a drone over real debris and see what happens. It uses a lot of fuel and generates a lot of sea sickness.

    If it's a drone, how is there sea sickness?

    • Re: (Score:3, Informative)

      by kidgenius ( 704962 )
      They are implying that you are controlling the drone from a boat on the sea. Thus you would get sea-sick.
      • by dcw3 ( 649211 )

        They are implying that you are controlling the drone from a boat on the sea. Thus you would get sea-sick.

        Interesting, but that would be a bad assumption considering the ability of many drones to be controlled at great distance (from land) for many hours. And, even if they were controlled from sea, why would you want to skip part of that, making your simulation unrealistic?

        • by Richard_at_work ( 517087 ) on Tuesday April 03, 2012 @01:15PM (#39562019)

          You would still have to "seed" the search area with identifiable items so that your test is proper, and clear the search area for the "no results" outcome, rather than simply relying on whatever is drifting around when you got there.

          You know, actually engineer a proper test environment...

        • Re: (Score:3, Insightful)

          by clolson ( 2609805 )
          There are really really expensive drones that can fly for days on end, but the folks that typically are interested in environmental issues and searching for marine debris (even NOAA.gov) have trouble affording to buy them. From a practical and economic standpoint it makes much more sense to focus on smaller, less expensive drones that operate near the ship (and there for would be launched from the ship and recovered back to the ship.) Also consider a ship that travels at most about 10 kts. If you fly mor
  • by Mattygfunk1 ( 596840 ) * on Tuesday April 03, 2012 @12:14PM (#39561283)
    What are we looking for here? Remnants of an aircraft or ship? What other debris is out there?

    Am I wrong in thinking that leaving a busted up craft to sink isn't the worst crime? It's not much pollution. Is this to help looking for bodies?
  • Surely they can think of a better reason to research this other than flying around looking for debris.
    • Surely they can think of a better reason to research this other than flying around looking for debris.

      We all know the 'better' reason: to look for people to kill. However, looking for people to kill would upset some people, so we call it 'looking for debris'.

      • We all know the 'better' reason: to look for people to kill. However, looking for people to kill would upset some people, so we call it 'looking for debris'.

        Exactly. "Debris". The fact that they aren't debris yet is just semantics.

  • by MisterMidi ( 1119653 ) on Tuesday April 03, 2012 @12:55PM (#39561765) Homepage
    Let me get this right. They're using a simulated drone flying in simulated air over a simulated ocean to develop algorithms to look for simulated debris? I can see this work within the limits of the software models, but I don't think the real world cares about those limits.
    • The world does not care about those limits, but at least you can test against trivial cases. You may need to tweak it in the field to fit the "real world" limits, but using the simulator should get you closer to a working model. Otherwise you are wasting money on fuel, possible crashes, and data processing. There's many steps that need to be tested before hitting the real world tests to make a complete system capable.
      • Re:Simulation (Score:4, Interesting)

        by clolson ( 2609805 ) on Tuesday April 03, 2012 @01:46PM (#39562411)
        pitchingchris: exactly. No simulation is perfect, but is the simulation useful? If the simulation allows you to develop and test the bulk of your code in a comfortable environment, it may just be useful. No one wants to be in the hot seat chasing down a segfault while the ship is costing $20k per day just to idle and drift, and then you have a crew of 20-30 folks sitting around twiddling their thumbs waiting for your code to compile -- you are supposed to be flying and working. The other question to ask is how well do the simulation results translate to the real world. Here is where savvy engineering enters the picture. A savvy engineer will use the simulation as a *tool*. They will know and understand what aspects apply to the real world and what aspects don't. They will probably have already done some validation testing to help them determine how well the simulation does match up with the real world -- which parts they can trust and which parts they should ignore. You obviously wouldn't want to optimize your computer vision algorithm for FlightGear computer generated imagery, but you can see your algorithm running, you can test things like saving and loading video, communication with other hardware and software components, user interfaces -- there is a ton of stuff that you can do when you have a plausible simulation on your desk that you really don't want to be wasting your time doing at sea when you are borderline seasick and everything is 10x more difficult.
  • by Rostin ( 691447 ) on Tuesday April 03, 2012 @01:01PM (#39561843)
    I find this article very satisfying because every time I see a story about robotics research where the main objective doesn't seem to be building robots but developing algorithms, I wonder why they wasted time and money building robots. Like, for instance, that research that made rounds in popular science articles a couple of years ago about robots that evolved the ability to lie. [botjunkie.com] Why bother building and programming little robots to physically carry out the task of gathering "food", when the whole thing obviously could have been simulated?
    • Re: (Score:3, Insightful)

      by clolson ( 2609805 )
      Ultimately the point of robotics and AI is to accomplish some useful real world task. The question to ask is what is the best, fastest, most economical way to build a system? A UAV mishap could set a small program back by months and 10's of thousands or 100's of thousands of $$$ (or a whole lot more if you look at the flag ship military drones.) The point of the original flightgear.org article is to show an example of how it is possible to construct a simulated environment and then leverage that to accel
      • One of the best comments on this article so far. Algorithmic development and optimization is not a trivial subset of problems in active robotics research.
    • by ceoyoyo ( 59147 )

      Because a simulation is only as good as the person who made it. You never know whether your simulated robots are actually doing something new/useful/whatever, or just exploiting some flaw in your simulation.

      Simulations are great for quick development, but at some point you need to move into the real world.

      • Simulations are great for quick development, but at some point you need to move into the real world.

        Absolutely. The ideal situation would be to develop with simulated and real world testing together, comparing and validating your simulated results against your real world results. The original article isn't advocating for 100% in-a-vacuum simulation-based development, but rather trying to show how much you can do with carefully applied simulation -- using a cool, real-world project as an example. For what it's worth, this is just one small slice of a much larger marine debris effort that involves modeli

        • by ceoyoyo ( 59147 )

          Yes, this project seems like a great use of an off the shelf simulation. I was replying to the GP who wrote:

          "Why bother building and programming little robots to physically carry out the task of gathering "food", when the whole thing obviously could have been simulated?"

          Checking something with pure simulation is a great way of checking that your assumptions are indeed correct given... your assumptions. As you point out, if you take the opportunity to test (and improve) your simulation against the real wor

      • by Rostin ( 691447 )
        That might be true in some circumstances. For example, if the goal of the research is to create new algorithms for self-driving or piloting, then at some point, you definitely want to actually build the car or the plane and let the software drive/fly it around. It would be impossible to incorporate every situation that a robot like that might encounter in the "real world" into a simulation. On the other hand, if you are interested in robots that scoot around on a smooth 2D surface and the only part of th
        • by ceoyoyo ( 59147 )

          "On the other hand, if you are interested in robots that scoot around on a smooth 2D surface and the only part of their behavior that interests you is how their communications with one another evolve, it's much more difficult to understand what you gain by actually building them."

          How did you model their communications? Did you adequately model their movement? Do the assumptions you made modelling their movement affect the behaviour you're interested in? What else have you assumed without realizing it?

          If

          • by Rostin ( 691447 )

            If you're only interested in how simulated robots behave, then go ahead and simulate them.

            Yes, that's my point. I'm glad that you agree.

            I guess you were never in grad school.

            Actually, it's because I have been that I've seen many, many instances of, "Look at the eyecatching but basically unnecessary and useless thing we did just because it looks cool!" Presentation and salesmanship is an important part of doing successful (funded) research.

  • Now they need to develop an AI that can detect and incoming stampede of slashdot readers so it has time to brace for impact!

  • Flightgear has been used for ages for testing drone software .For example, the Paparazzi [paparazzi.enac.fr] drone project has interfaces for flightgear to allow you to simulate a drone flying.

    I used just such a setup for testing out the software and seeing how it works before I actually get round to building a drone. I know some people use it for development as well, so unless I'm missing something, this isn't really new?

    • Re: (Score:3, Interesting)

      by clolson ( 2609805 )
      "There is nothing new under the sun." :-) However, within the context of FlightGear, the ability to draw realistic seascapes with waves, swells, sunglint, seafoam, ship wakes, etc. is relatively new. This graphical capability is what enables this particular use of FlightGear -- aiding the development and testing of AI/Computer Vision software for the ultimate purpose of automatically locating ocean debris. Paparazzi is good stuff, their hardware/software seems to often do well at UAV competitions. :-)
      • Aaaaah, I see, that makes more sense, thanks for the explanation! :-)

        And yeah I am very impressed with Paparazzi, I am actually surprised it doesn't get as much mention as other (arduino-based) drone systems. I was looking at developing a simple loitering drone with cameras, at the request of some companies and individuals who are interested in securing their compounds a bit better (getting a "birds-eye" view), and Paparazzi seems to be a good match for it. Now I just have to get off my arse and develop the

  • by milbournosphere ( 1273186 ) on Tuesday April 03, 2012 @02:00PM (#39562583)
    James wears a hat, Jeremy plays "a nice game of chess", and the Stig flies a drone! *cue intro music*
  • by nurb432 ( 527695 ) on Tuesday April 03, 2012 @02:00PM (#39562593) Homepage Journal

    Well, you know the drill... How long before someone like the HSD goes out and tries to ban simulation software that has 'performance' beyond a certain level.

    Much as they did with encryption decades ago, classifying them as munitions and legally limiting access to 'high quality encryption'. My old copy of windows 1.0 still has the export restriction sticker, due to encryption.

  • Off-topic shout out, sorry. I got my first job as a "real" Unix sysadmin in 1992 or so, when Curt left GE Medical Systems to go work on FGFS and other projects. Really cool to see it's going well and he's getting some top recognition. Good on ya, Curt! (I worked for Paul O. at your old desk after you left, we've talked a few times).
  • Computing power is finally getting there.
    Just imagine a computer with a screen grabber playing the game. We could even make tourneys where AIs fight each other :o

  • Head 'sploded....

    OK, so you have these drones that fly in the sky (re-purposed military drone perhaps?), and now you propose to give them AI? Why not just start the machine revolution right now?

    So rather than use these things in "real life", you are going to simulate debris, in a simulated ocean, on a simulated earth? Don't forget to at least put the women in red in there as well...

    All I know is that we burned the sky...

    • Simulation is useful because the "Great Pacific Garbage patch" is about 1000 nm miles from the nearest point of land (draw a line straight north from HI and straight west from LA/San Fran and you'll be right about in the middle of it.) But you can't just pick a nice afternoon and run out there for a quick test flight. :-)
      • Does ANY drone have a range of 2000nm? I doubt it, which makes it all a bit implausible anyway. I suppose you could make a little drone aircraft carrier (heck make that automated also)... Of course then you would have to make autonomous destroyers and subs to defend it... :) Of course you would need some autonomous satellites to control the whole thing... SkyNet wasn't built in a day!

        This really just sounds like cheapo software testing, where they simulate the environment rather than using real testing... O

    • You mean "Stealth" [imdb.com]?
      • Are you using that as an example of a simulated movie?

        If you are, it wasn't a very good simulation. I know I didn't find it believable as a movie anyway... :)

  • FlightGear is a wonderful flight simulator. I have been tracking its progress for the past eight or so years and it's great to see how it has progressed.

    If there's something that it doesn't do well, you can always make it better yourself.

"What man has done, man can aspire to do." -- Jerry Pournelle, about space flight

Working...