Skip to content
forked from rtv/stg.idw

Stage controller: Improved Dynamic Window local navigation [Berti et al 2008]

Notifications You must be signed in to change notification settings

squiddon/stg.idw

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stg.idw  README
------------------------

** NOTE: this code in development and should not be used for anything at all. It probably does not work. These instructions are probably wrong. **

An implementation of the Improved Dynamic Window Approach for local obstacle avoidance, based on [Berti et al 2008].

 - rtv ([email protected])  2011.12.29

Instructions
----------------

Assuming Stage is working in your environment (see notes below), you should be able to
build and run this template controller from the directory containing
this README file as follows:

$ cmake .

If you see errors, read the notes below on setting up your environment.

$ make

Check to see that the module "dw.so" has been built successfully
into the current directory. If not, carefully read the build output to
see what went wrong.

Tell Stage to look in the current directory for controller modules

$ export STAGEPATH=.

Now run Stage with the test world:

$ stage worlds/dw.world


References
----------
[Berti et al 2008]  IMPROVED DYNAMIC WINDOW APPROACH BY USING LYAPUNOV STABILITY CRITERIA.  
                    H. BERTI, A.D. SAPPA and O.E. AGAMENNONI. Journal of Latin American Applied Research 38:289-298 (2008)


Notes on setting up your environment
--------------------------------------------------

If you installed Stage to the default location for your platform, you
should not need to do any special environment setup.

if you installed Stage to a non-default location, i.e. you specified
-DCMAKE_INSTALL_PREFIX=<stage install prefix> when running CMake to
configure Stage, you need to set PKG_CONFIG_PATH to include <stage
install prefix>/lib/pkgconfig since the build script uses pkg-config
to find Stage's compiler and linker settings. You probably also need
to set LD_LIBRARY_PATH on Linux,or DYLD_LIBRARY_PATH on OS X to <stage
install prefix>/lib. If you want toFor convenience, you may also want to add Stage's
the directory containing Stage's binary to your PATH. Here are the
relevant lines from my $HOME/.profile file:

# my install prefix
STAGE=$HOME/stg

export PATH="$STAGE/bin:$PATH"
export PKG_CONFIG_PATH=$STAGE/lib/pkgconfig

#Linux, etc.
export LD_LIBRARY_PATH=$STAGE/lib:.

#OS X
#export DYLD_LIBRARY_PATH=$STAGE/lib:.

About

Stage controller: Improved Dynamic Window local navigation [Berti et al 2008]

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 64.3%
  • SourcePawn 32.9%
  • PHP 1.5%
  • CMake 1.3%