翻訳と辞書
Words near each other
・ D'Wayne Bates
・ D'wayne Wiggins
・ D'Wäschfra (2010)
・ D'X-Man
・ D'Ye Ken John Peel?
・ D'yer Mak'er
・ D'You Know What I Mean?
・ D'Youville Academy
・ D'Youville College
・ D'Yves Air Pub
・ D'Yves Yvasion 2000
・ D'ZRT
・ D'ække bare, bare Bernt
・ D'Étampes de Valençay
・ D(-)-tartrate dehydratase
D*
・ D*Face
・ D*Minds
・ D*Note
・ D+
・ D+ (band)
・ D+C Development and Cooperation
・ D+D Real Czech Challenge
・ D+D Real Czech Masters
・ D+D Real Slovakia Challenge
・ D-
・ D-1 (Sony)
・ D-10 tank gun
・ D-161
・ D-17 (film)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

D* : ウィキペディア英語版
D*

D
* (pronounced "D star") is any one of the following three related incremental search algorithms:
* The original D
*, by Anthony Stentz, is an informed incremental search algorithm.
* Focused D
* is an informed incremental heuristic search algorithm by Anthony Stentz that combines ideas of A
*
and the original D
*. Focused D
* resulted from a further development of the original D
*.
* D
* Lite is an incremental heuristic search algorithm by Sven Koenig and Maxim Likhachev that builds on LPA
*, an incremental heuristic search algorithm that combines ideas of A
*
and Dynamic SWSF-FP.
All three search algorithms solve the same assumption-based path planning problems, including planning with the freespace assumption, where a robot has to navigate to given goal coordinates in unknown terrain. It makes assumptions about the unknown part of the terrain (for example: that it contains no obstacles) and finds a shortest path from its current coordinates to the goal coordinates under these assumptions. The robot then follows the path. When it observes new map information (such as previously unknown obstacles), it adds the information to its map and, if necessary, replans a new shortest path from its current coordinates to the given goal coordinates. It repeats the process until it reaches the goal coordinates or determines that the goal coordinates cannot be reached. When traversing unknown terrain, new obstacles may be discovered frequently, so this replanning needs to be fast. Incremental (heuristic) search algorithms speed up searches for sequences of similar search problems by using experience with the previous problems to speed up the search for the current one. Assuming the goal coordinates do not change, all three search algorithms are more efficient than repeated A
* searches.
D
* and its variants have been widely used for mobile robot and autonomous vehicle navigation. Current systems are typically based on D
* Lite rather than the original D
* or Focused D
*. In fact, even Stentz's lab uses D
* Lite rather than D
* in some implementations. Such navigation systems include a prototype system tested on the Mars rovers Opportunity and Spirit and the navigation system of the winning entry in the DARPA Urban Challenge, both developed at Carnegie Mellon University.
The original D
* was introduced by Anthony Stentz in 1994. The name D
* comes from the term "Dynamic A
*", because the algorithm behaves like A
* except that the arc costs can change as the algorithm runs.
== Operation ==

The basic operation of D
* is outlined below.
Like Dijkstra's algorithm and A
*, D
* maintains a list of nodes to be evaluated, known as the "OPEN list". Nodes are marked as having one of several states:
* NEW, meaning it has never been placed on the OPEN list
* OPEN, meaning it is currently on the OPEN list
* CLOSED, meaning it is no longer on the OPEN list
* RAISE, indicating its cost is higher than the last time it was on the OPEN list
* LOWER, indicating its cost is lower than the last time it was on the OPEN list

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「D*」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.