ebooksgratis.com

See also ebooksgratis.com: no banners, no cookies, totally FREE.

CLASSICISTRANIERI HOME PAGE - YOUTUBE CHANNEL
Privacy Policy Cookie Policy Terms and Conditions
URBI - Wikipedia, the free encyclopedia

URBI

From Wikipedia, the free encyclopedia

URBI
Paradigm Parallel and Event-driven Interface Language
Appeared in 2003
Designed by Jean-Christophe Baillie
Developer Gostai
Latest release 1.0/ April 11, 2007
Influenced by C++, Ruby, Io
OS Cross-platform
License UObject is GPL, URBI Engine is proprietary

URBI is a cross-platform software platform used to develop applications for robotics and artificial intelligence. It is based on the URBI Language which is a parallel and event-driven script language with a C++ like syntax. URBI also integrates a distributed component architecture called UObject, that facilitates the integration of C++ objects in the language as linked or remotely running components.

Contents

[edit] The URBI Language

URBI has been developed since 2003 by Jean-Christophe Baillie in the Cognitive Robotics Lab of ENSTA, Paris. It is now actively and further developed in the industry through the Gostai company founded in 2006.

URBI as a language can be best described as an interface script language: like LUA in video games, URBI can be used to glue together C++ components into a functional behavior, the CPU-intensive algorithmic part being left to C++ and the behavior scripting part being left to the script language which is more flexible, easy to maintain and allows dynamic interaction during the program execution. As an interface language, URBI also brings some new useful abstractions to the programmer by having parallelism and event-based programming part of the language semantics. Scripting parallel behaviors and reacting to events being core requirements of most robotics or complex AI applications, this makes URBI especially appropriate for these types of applications.

One of the key focus of the URBI language development is its simplicity, trying to provide a friendly intuitive interface for beginners while offering more advanced features for core programmers.

[edit] Features

  • Parallelism and event-based programming
  • Prototype-based programming
  • Familiar C++ like syntax
  • C++ based component architecture (UObject) with possibility to link objects or run them remotely
  • Client/Server based architecture
  • Client interfaces with Java and Matlab (URBI SDK)
  • Cross platform: Linux, Mac, Windows and more. Embeddable, URBI can run on various processors: x86, ARM, mips, powerPC and more...
  • Taggable commands for execution flow control

[edit] Examples

The example below shows how to write a ball tracking action/perception loop in URBI: headPan/headTilt are two motor objects, and ball is the ball detection object:

 whenever (ball.visible) 
 {
   headPan.val  = headPan.val  + camera.xfov * ball.x
   &
   headTilt.val = headTilt.val + camera.yfov * ball.y
 };

whenever is used to trigger a piece of code in loops as long as the associated condition is true. The & sign is used to specify that both commands should start at the same time, thus running in parallel.

Other notable event-driven constructs include at, which triggers the associated code once, at the time when the condition becomes true:

 at (speech.hear("hello"))
 {
   voice.say("How are you?") &
   robot.standup();
 }

Every command or group of commands is taggable, which provides a way to stop it later if needed:

 mytag: while(true) { echo "This is a never ending loop" },
 at (button.pressed) stop mytag;

Note in the example above the comma at the end of the command. It will put the preceding command in background, allowing the flow execution to carry on, in particular the next 'at' command to be executed.

[edit] UObject component architecture

The UObject component architecture, currently based on the C++ UObject library, allows to interface any C++ object within URBI, making selected methods and attributes visible in the script language, while in fact being C++ code. Special notifiers can be set on any of the object's attributes to notify the C++ side of any change on these attributes on the URBI side.

UObject uses C++ templates to transparently map any requested method to an interface machinery taking care of the type checking.

A C++ UObject can be used in plugged mode if it is directly linked to the URBI Engine at compile time or with dynamic loading. In that case, the C++ object shares the URBI Kernel memory directly, resulting in efficient integration. This is typically used for time critical components like motor or sensor drivers. The same C++ UObject can also be used without modifications as a remote component. In that case, it will become an autonomous program to be executed with the IP address of the URBI Engine as a parameter. In both cases, the object will transparently appear in URBI as a native URBI object.

[edit] Components for Robotics: speech, face/object detection, SLAM

Several plug&play UObject components useful for robotics are available through Gostai:

  • voice recognition
  • voice synthesis
  • face detection (including a bridge with Opencv)
  • face recognition
  • SLAM
  • color blob detection
  • SIFT based object recognition

Free GPL components developed by the community can be found and exchanged on the urbiforge community website of URBI.

[edit] Robotics Simulators compatible with URBI

Webots is the official robot simulator compatible with URBI.

Integration with Player/Stage has been reported, although it is not currently released.

Marilou Robotics Studio is URBI ready and let you mount several URBI servers, according to the robot-specific devices.

[edit] "URBI-fied" robots & Simulators

Released:

Announced:

[edit] Development environments

URBI comes with URBI Studio that integrates a motion editor for designing dances and animations, and a behavior editor to graphically create finite state machines whose states are simple URBI programs. URBI Studio is cross platform and generates URBI Code as an output.

[edit] External links

Languages


aa - ab - af - ak - als - am - an - ang - ar - arc - as - ast - av - ay - az - ba - bar - bat_smg - bcl - be - be_x_old - bg - bh - bi - bm - bn - bo - bpy - br - bs - bug - bxr - ca - cbk_zam - cdo - ce - ceb - ch - cho - chr - chy - co - cr - crh - cs - csb - cu - cv - cy - da - de - diq - dsb - dv - dz - ee - el - eml - en - eo - es - et - eu - ext - fa - ff - fi - fiu_vro - fj - fo - fr - frp - fur - fy - ga - gan - gd - gl - glk - gn - got - gu - gv - ha - hak - haw - he - hi - hif - ho - hr - hsb - ht - hu - hy - hz - ia - id - ie - ig - ii - ik - ilo - io - is - it - iu - ja - jbo - jv - ka - kaa - kab - kg - ki - kj - kk - kl - km - kn - ko - kr - ks - ksh - ku - kv - kw - ky - la - lad - lb - lbe - lg - li - lij - lmo - ln - lo - lt - lv - map_bms - mdf - mg - mh - mi - mk - ml - mn - mo - mr - mt - mus - my - myv - mzn - na - nah - nap - nds - nds_nl - ne - new - ng - nl - nn - no - nov - nrm - nv - ny - oc - om - or - os - pa - pag - pam - pap - pdc - pi - pih - pl - pms - ps - pt - qu - quality - rm - rmy - rn - ro - roa_rup - roa_tara - ru - rw - sa - sah - sc - scn - sco - sd - se - sg - sh - si - simple - sk - sl - sm - sn - so - sr - srn - ss - st - stq - su - sv - sw - szl - ta - te - tet - tg - th - ti - tk - tl - tlh - tn - to - tpi - tr - ts - tt - tum - tw - ty - udm - ug - uk - ur - uz - ve - vec - vi - vls - vo - wa - war - wo - wuu - xal - xh - yi - yo - za - zea - zh - zh_classical - zh_min_nan - zh_yue - zu -