<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>An Open Source Robotic Platform for Ambient Assisted Living</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Marco Carraro</string-name>
          <email>marco.carraro@dei.unipd.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Morris Antonello</string-name>
          <email>morris.antonello@dei.unipd.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Luca Tonin</string-name>
          <email>luca.tonin@dei.unipd.it</email>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Emanuele Menegatti</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Department of Information Engineering, University of Padova Via Ognissanti 72</institution>
          ,
          <addr-line>35129, Padova</addr-line>
          ,
          <country country="IT">Italy</country>
        </aff>
      </contrib-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        Last years have seen a worldwide lengthening of life expectancy [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] and, as a
consequence, an increment of advanced assistive solutions for integrated care models.
In this context, ICT can enhance home assistance services for elderly people and
thus, the economical burden for health-care institutions. Indeed, recent studies
report that 89% wish to stay at home for sentimental reasons or because they
cannot a ord nursing homes [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]. In addition, the shortage of professional
caregivers is a well-known issue and relatives or friends must face with emotional
distress negatively impacting also their productivity at work [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]. In this
perspective, home robots will play a crucial role. Not only they will keep their house safe
by monitoring and detecting anomalies or sources of hazards but they can also
be companions able to enhance their social life, e.g. by better connecting them
with their relatives and friends. Examples of recent projects that have tried to
develop such a kind of systems are Hobbit [
        <xref ref-type="bibr" rid="ref4 ref5">4, 5</xref>
        ], Astro [
        <xref ref-type="bibr" rid="ref6 ref7">6, 7</xref>
        ] and Gira plus [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ].
The di culties in creating a robust and reliable prototype and the encountered
challenges in computer vision and autonomous robotics have been well-explained
in [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]. This work aims at presenting an open-source1 and practical solution for
an autonomous robotic platform for home care. The nal goal is to develop a set
of arti cial intelligence services for indoor autonomous and safe navigation, fall
detection, people recognition, speech interaction and telepresence. In Section 2
and 3 respectively, the prototype and the tasks currently implemented are
described. We have developed these functions in ROS: Robot Operating System [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]
which provides many algorithms and a standard communication framework. The
need for standards and open solutions have been already pointed out in [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ].
Future works are reported in Section 4: this project enables research in many elds
like scene understanding, human robot interaction, socially assistive/intelligent
robotics and sensor integration.
      </p>
      <sec id="sec-1-1">
        <title>1 https://bitbucket.org/iaslab-unipd/orobot</title>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>Hardware Con guration</title>
      <p>Our prototype of home robot, shown in Fig. 1a, is built on top of a commercial
open-source mobile platform, the Turtlebot 22, which is already equipped with
odometry, a gyroscope, bumpers, cli sensors, wheel drop sensors and a docking
IR receiver. Furthermore, this platform is a smart choice also because of the
available API to interface with ROS and the existence of a worldwide community
working with it. For our purposes, we have added an Hokuyo URG-04LX-UG01
2D scanning laser range nder and a Microsoft Kinect v2. The former is placed
at a height of 15 cm so as to easily detect low obstacles; the latter at a height of
almost 115 cm which is the best trade-o for the people detection at di erence
distances. The robot control is accomplished by the Lenovo Y50-70 laptop with
Ubuntu 14.04 and ROS Indigo.
The software of our robot is entirely based on ROS. The standard robot's task
is the complete visit of the house while registering all events around it. Such a
task has a low priority and can be preempted whenever any other web request
like a teleoperation one or a video-conference call occurs. The robot has also the
capability of autodocking, i.e. to autonomously return to the docking station for
recharging. The software architecture is characterized by the layers in Fig. 1b.
The end-user level, the highest, provides human-robot functionalities while the
middle level implements navigation and people monitoring functionalities. At
the lowest level, ROS nodes control motors, sensors and low-level behaviours
like auto-docking. Algorithm parameters can be modi ed online thanks to the
dynamic recon gure o ered by ROS. Each implemented functionality will be
described in the following sections.</p>
      <sec id="sec-2-1">
        <title>2 http://www.turtlebot.com/</title>
        <sec id="sec-2-1-1">
          <title>Laser Filtering</title>
          <p>
            The raw data acquired with the laser scanner is subject to many inaccuracies
due to the technology it is based on. There are issues with transparent and black
surfaces producing frequent outliers. Nonetheless, the laser scanner is the core
sensor for the navigation so the less inaccuracies occur, the better the navigation
algorithm performs. For this reason, we have adopted an interpolation lter
from the ROS packet laser lters3. The laser streams data to the raw scan ROS
topic; the lter reads, processes and nally publishes the ltered data to the
scan ROS topic. This one is subscribed by the robot functionalities. In Fig. 2a
the comparison of the same map built with the raw scan topic (left) and the
ltered one (right) is shown. In the un ltered map we can see how the outliers
can result in extremely noisy borders. In contrast, the interpolated map shows
signi cant improvements.
Building a map is a core functionality in mobile robotics. In literature this
problem is known as Simultaneous Localization And Mapping (SLAM) and there
exist several implementations in ROS. For this purpose, we are exploiting the
well-known technique described in [
            <xref ref-type="bibr" rid="ref11">11</xref>
            ] and implemented in the GMapping 4 ROS
package. We have tested it successfully in several natural environments (e.g.,
ofce, corridors, homes). Once we have a static map representing the environment,
a method for reaching a point maintaining the localization within the map during
the robot movement is of concern. The technique used is based on AMCL [
            <xref ref-type="bibr" rid="ref12">12</xref>
            ]
(Adaptive Monte Carlo Localization) ROS packet. This algorithm is based on
two maps: the static one and the dynamic one which is computed on-line. For
reaching a goal G (Fig. 2b), it computes a static plan from its initial position
to the goal basing the decision on the static map. After this phase, the control
of the movements of the robot passes to the dynamic map which is computed
          </p>
        </sec>
      </sec>
      <sec id="sec-2-2">
        <title>3 http://wiki.ros.org/laser_filters</title>
      </sec>
      <sec id="sec-2-3">
        <title>4 http://wiki.ros.org/gmapping</title>
        <p>in real-time. With this map, AMCL algorithm checks whether the initial plan
can be performed without collisions. In this case, the robot makes its moves
maintaining the localization inside the static map with the GMapping package.
Otherwise, the plan is modi ed to avoid it. If there are no possible new plans,
the robot tries to rotate around itself to see if other paths are available given
the dynamic map, otherwise it fails to reach the goal with an error which can be
caught and managed. For instance, in the coverage algorithm (see Section 3.3),
there is no guarantee that the various computed goals will be reachable without
collisions because they are computed only on the static map. For each
unreachable goal, the coverage algorithm catches the error and the robot is sent to the
next goal in the coverage array, or to the docking station if it is the last one.
3.3</p>
        <sec id="sec-2-3-1">
          <title>Coverage</title>
          <p>
            Finding a map coverage (i.e. to visit all the map) is a sensitive problem for
di erent kind of robots such as automatic lawn-mower, cleaning robots and so
on. For our purposes, we use the coverage for monitoring all signi cant events
happening in the house. The most used algorithm in literature is the one in [
            <xref ref-type="bibr" rid="ref13">13</xref>
            ].
This algorithm decomposes the map in square cells, it computes its minimum
spanning tree and makes the robot circumnavigate it. This approach is perfect
from a theoretical point of view, but in our case the robot does not know exactly
where the obstacles are until it is close to them. Our arti cial intelligence method
is based on a simpler approach and ensures a good coverage which gives an open
view of the scene to the Kinect v2. The algorithm consists of three steps:
{ cell decomposition of the map: a grid is built on the map;
{ marking phase: only the empty cells are kept in the matrix;
{ zig-zag fashion array lling: we divide the empty cells in rows and we ll an
array with a visit in a zig-zag fashion of them. In this way, the cells of each
row are all in the coverage path, but the robot makes a smart visit of them,
by minimizing the space to be traversed.
4
          </p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Conclusions and Future Works</title>
      <p>In this work we have developed an open-source, autonomous robot for elder care
assistance. Currently, the robot can navigate autonomously with both static
and dynamic obstacle avoidance and has been tested in di erent environments
like a laboratory, a home, an o ce and many classrooms in our department.
Furthermore, it can also perform additional tasks such as auto-docking and
automatic coverage of known maps. In future, our research will be focused on the
human-robot interaction to implement on-board people detection, tracking and
re-identi cation modules via vision algorithms based on Kinect v2. Afterwards,
our work will be more end-user oriented developing the web reporting
application, the video-conference system and, in general, all the web-based features of
the robot.</p>
      <p>Acknowledgments. This work is supported by Omitech Srl</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>United</given-names>
            <surname>Nations</surname>
          </string-name>
          . Department of Economic, World population ageing,
          <year>1950</year>
          -
          <fpage>2050</fpage>
          . No.
          <volume>207</volume>
          , New York: United Nations,
          <year>2002</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>L.</given-names>
            <surname>Jeannotte</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. J.</given-names>
            <surname>Moore</surname>
          </string-name>
          , et al.,
          <article-title>The State of aging and health in America 2007</article-title>
          . Merck Company Foundation,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>P.</given-names>
            <surname>Rashidi</surname>
          </string-name>
          and
          <string-name>
            <given-names>A.</given-names>
            <surname>Mihailidis</surname>
          </string-name>
          , \
          <article-title>A survey on ambient-assisted living tools for older adults," Biomedical and Health Informatics</article-title>
          ,
          <source>IEEE Journal of</source>
          , vol.
          <volume>17</volume>
          , no.
          <issue>3</issue>
          , pp.
          <volume>579</volume>
          {
          <issue>590</issue>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>D.</given-names>
            <surname>Fischinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Einramhof</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wohlkinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Papoutsakis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Mayer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Panek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Koertner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hofmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Argyros</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Vincze</surname>
          </string-name>
          , et al., \
          <article-title>Hobbit-the mutual care robot,"</article-title>
          <source>in Workshop on Assistance and Service Robotics in a Human Environment Workshop in conjunction with IEEE/RSJ International Conference on Intelligent Robots and Systems</source>
          , vol.
          <year>2013</year>
          ,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>D.</given-names>
            <surname>Fischinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Einramhof</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Papoutsakis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Wohlkinger</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Mayer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Panek</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Hofmann</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Koertner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Weiss</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Argyros</surname>
          </string-name>
          , et al.,
          <article-title>\Hobbit, a care robot supporting independent living at home: First prototype and lessons learned,"</article-title>
          <source>Robotics and Autonomous Systems</source>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>F.</given-names>
            <surname>Cavallo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Aquilano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bonaccorsi</surname>
          </string-name>
          , I. Mannari,
          <string-name>
            <given-names>M.</given-names>
            <surname>Carrozza</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Dario</surname>
          </string-name>
          , \
          <article-title>Multidisciplinary approach for developing a new robotic system for domiciliary assistance to elderly people," in Engineering in Medicine and Biology Society</article-title>
          , EMBC, 2011 Annual International Conference of the IEEE, pp.
          <volume>5327</volume>
          {
          <issue>5330</issue>
          , IEEE,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>F.</given-names>
            <surname>Cavallo</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Aquilano</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Bonaccorsi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Limosani</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Manzi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Carrozza</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P.</given-names>
            <surname>Dario</surname>
          </string-name>
          , \
          <article-title>On the design, development and experimentation of the astro assistive robot integrated in smart environments," in Robotics and Automation (ICRA</article-title>
          ),
          <year>2013</year>
          IEEE International Conference on, pp.
          <volume>4310</volume>
          {
          <issue>4315</issue>
          , IEEE,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>S.</given-names>
            <surname>Coradeschi</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Cesta</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G.</given-names>
            <surname>Cortellessa</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Coraci</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Gonzalez</surname>
          </string-name>
          ,
          <string-name>
            <given-names>L.</given-names>
            <surname>Karlsson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Furfari</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Lout</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Orlandini</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Palumbo</surname>
          </string-name>
          , et al., \
          <article-title>Gira plus: Combining social interaction and long term monitoring for promoting independent living," in Human System Interaction (HSI</article-title>
          ),
          <year>2013</year>
          The 6th International Conference on, pp.
          <volume>578</volume>
          {
          <issue>585</issue>
          , IEEE,
          <year>2013</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>M.</given-names>
            <surname>Quigley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Conley</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B.</given-names>
            <surname>Gerkey</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Faust</surname>
          </string-name>
          ,
          <string-name>
            <given-names>T.</given-names>
            <surname>Foote</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J.</given-names>
            <surname>Leibs</surname>
          </string-name>
          ,
          <string-name>
            <given-names>R.</given-names>
            <surname>Wheeler</surname>
          </string-name>
          ,
          <article-title>and</article-title>
          <string-name>
            <given-names>A. Y.</given-names>
            <surname>Ng</surname>
          </string-name>
          , \
          <article-title>Ros: an open-source robot operating system,"</article-title>
          <source>in ICRA workshop on open source software</source>
          , vol.
          <volume>3</volume>
          , p.
          <fpage>5</fpage>
          ,
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>M. Memon</surname>
            ,
            <given-names>S. R.</given-names>
          </string-name>
          <string-name>
            <surname>Wagner</surname>
            ,
            <given-names>C. F.</given-names>
          </string-name>
          <string-name>
            <surname>Pedersen</surname>
            ,
            <given-names>F. H. A.</given-names>
          </string-name>
          <string-name>
            <surname>Beevi</surname>
            , and
            <given-names>F. O.</given-names>
          </string-name>
          <string-name>
            <surname>Hansen</surname>
          </string-name>
          , \
          <article-title>Ambient assisted living healthcare frameworks, platforms, standards, and quality attributes,"</article-title>
          <source>Sensors</source>
          , vol.
          <volume>14</volume>
          , no.
          <issue>3</issue>
          , pp.
          <volume>4312</volume>
          {
          <issue>4341</issue>
          ,
          <year>2014</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11. G. Grisetti,
          <string-name>
            <given-names>C.</given-names>
            <surname>Stachniss</surname>
          </string-name>
          , and W. Burgard, \
          <article-title>Improving grid-based slam with raoblackwellized particle lters by adaptive proposals and selective resampling,"</article-title>
          <source>in Robotics and Automation</source>
          ,
          <year>2005</year>
          .
          <article-title>ICRA 2005</article-title>
          .
          <source>Proceedings of the 2005 IEEE International Conference on</source>
          , pp.
          <volume>2432</volume>
          {
          <issue>2437</issue>
          , IEEE,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <given-names>D.</given-names>
            <surname>Fox</surname>
          </string-name>
          ,
          <string-name>
            <given-names>W.</given-names>
            <surname>Burgard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>F.</given-names>
            <surname>Dellaert</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S.</given-names>
            <surname>Thrun</surname>
          </string-name>
          , \
          <article-title>Monte carlo localization: E cient position estimation for mobile robots,"</article-title>
          <source>AAAI/IAAI</source>
          , vol.
          <year>1999</year>
          , pp.
          <volume>343</volume>
          {
          <issue>349</issue>
          ,
          <year>1999</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <given-names>Y.</given-names>
            <surname>Gabriely</surname>
          </string-name>
          and E. Rimon, \
          <article-title>Spanning-tree based coverage of continuous areas by a mobile robot,"</article-title>
          <source>Annals of Mathematics and Arti cial Intelligence</source>
          , vol.
          <volume>31</volume>
          , no.
          <issue>1-4</issue>
          , pp.
          <volume>77</volume>
          {
          <issue>98</issue>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>