Next Article in Journal
Hitchhiking Based Symbiotic Multi-Robot Navigation in Sensor Networks
Previous Article in Journal
Calibration of UR10 Robot Controller through Simple Auto-Tuning Approach
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Development of an EMG-Controlled Mobile Robot

Design Engineering and Mathematics Department, Middlesex University, London NW4 4BT, UK
*
Author to whom correspondence should be addressed.
Robotics 2018, 7(3), 36; https://doi.org/10.3390/robotics7030036
Submission received: 22 May 2018 / Revised: 22 June 2018 / Accepted: 26 June 2018 / Published: 5 July 2018

Abstract

:
This paper presents the development of a Robot Operating System (ROS)-based mobile robot control using electromyography (EMG) signals. The proposed robot’s structure is specifically designed to provide modularity and is controlled by a Raspberry Pi 3 running on top of an ROS application and a Teensy microcontroller. The EMG muscle commands are sent to the robot with hand gestures that are captured using a Thalmic Myo Armband and recognized using a k-Nearest Neighbour (k-NN) classifier. The robot’s performance is evaluated by navigating it through specific paths while solely controlling it through the EMG signals and using the collision avoidance approach. Thus, this paper aims to expand the research on the topic, introducing a more accurate classification system with a wider set of gestures, hoping to come closer to a usable real-life application.

1. Introduction

Applications using hand gesture recognition have usually relied on one of two methods, either visual-based or inertial-sensor-based [1,2]. The visual-based hand gesture recognition system allows a hand gesture to be perceived without the use of any wearable devices [3]. However, there are several drawbacks to this approach, such as complexity in modelling the hand motion and position, and the sensitivity of the system regarding lighting conditions and occlusions [4,5]. On the other hand, electromyography (EMG)-based recognition systems depend on muscle movement and capture surface EMG signals [6]. This type of system has already been used to control wheelchairs [6,7,8] and mobile robots [9,10], in addition to the electroencephalogram (EEG) brain–computer interface (BCI)-based approaches [11,12,13]. This paper aims to expand the research on the topic by introducing a more accurate classification system with a wider set of gestures, hoping to come closer to a usable real-life application.
The work presented in this paper focuses on the development of a mobile robot controlled solely by human gestures. This is achieved using the Thalmic Labs Myo Armband [14], a device for gesture recognition composed of eight different EMG sensors and one inertial measurement unit (IMU) sensor. The user’s arm gestures are captured by the EMG sensors and transmitted via Bluetooth to the microprocessor onboard the robot which analyzes the data and subsequently controls the robot movement. In this paper, a detailed design of the hardware and software for this modular mobile robot is presented along with the testing outcomes analyzed.
This paper is organized as follows: Section 2 describes the hardware components used to build the robot, including their specifications, with details of the kinematic formulas involved in the control of a differential drive robot and how these have been implemented on the microcontroller. This section also details the Robot Operating System (ROS) basics and the classification algorithm used to recognize the gestures, followed by implementation, outcome testing and accuracy analysis. Section 3 presents the experimental setup, controller design, ROS application and results, while Section 4 concludes the paper.

2. Materials and Methods

2.1. Computing Devices

Raspberry Pi 3 was chosen for the single board computer (SBC) as it has 1 GB SDRAM memory, 1.2 GHZ quad-core ARM Cortex A53 CPU, 4 USB Ports and many other features at a very low price which is suitable for mobile robot projects.
The Teensy 3.2 micro controller was used in the project as it is a powerful, inexpensive microcontroller with a small footprint. An H-bridge motor driver was used to control the flow of current between the motors and to alter the current provided to turn them in the desired direction. The TB6612FNG motor driver was selected to control the motors. It can drive two motors at a maximum current draw of 1.2A constant current; meanwhile, it can also control the motion direction and speed.

2.2. Sensors

Ultrasonic Sensors are common and efficient sensors that are typically used for collision avoidance. They can detect obstacles from 2 cm to 40 cm, which is a reasonable distance for a mobile robot to detect obstacles and avoid collision upon detection.
A wearable Myo armband (cf. Figure 1) was used to detect the hand gestures by obtaining surface electromyography signals from the human arm. The Myo armband consists of 8 EMG sensors with a high sensitive nine-axis IMU containing a three-axis gyroscope, three-axis accelerometer, and a three-axis magnetometer. The 8 channels of EMG signals detected by the Myo armband are passed via Bluetooth to the Raspberry Pi where all channels of signals are classified to detect the hand gestures.

2.3. Motors and Wheels

The final weight of the mobile robot was estimated to be 5 kg with 7 cm diameter wheels. The robot moves with a speed of 0.22 m/s which requires a total torque of 1.25 kg-cm and 31 revolutions per minute. Since this is a two-wheeled robot driven by two motors, the total torque is divided into two equal halves of torque needed by each of the motors. DC motors are ideal motors as they are reasonably cheap, and the gear box increases the torque of the motor and reduces the motor speed. The geared DC motors used each had a torque of 0.7 kg-cm on the load and 158 ± 10% rpm. These motors were a suitable choice as they meet the requirements of the application.

2.4. The Robot Operating System (ROS)

The software application controlling the robot was developed using the ROS framework. The ROS structure is based on the execution of different C++ or Python scripts—called nodes—that can communicate without being aware of each other, working independently on the messages they receive and send on their topics of interest. This design encourages modularity and thus, is perfectly in line with the robot’s structure and hardware design.

2.5. The k-Nearest Neighbor (KNN) Classifier

To precisely predict a gesture from the Myo Armband, a classifier script was prepared using a KNN algorithm [15]. The KNN algorithm computes the distance between the sample that must be recognized and all the samples used to train the classifier; the class that represents the majority among the K nearest samples—in this case, K is set to 10—is the one used to label the tested one. This algorithm was chosen because of its fast execution and accuracy when multiple classes must be recognized from a large set of parameters [16]. Initially, the classifier was trained to recognize ten different classes, namely, rest, spread, wave out, wave in, fist, cut out, cut in, snap, ‘V’, and horn (cf. Figure 2), but for the final application, the unused ones were removed, and this enhanced the accuracy of the classification.

2.6. Differential Drive Kinematics

Differential drive robots are devices that are capable of moving using two independent wheels that are mounted on a common axis, each driven by a motor for forward and backward motions (cf. Figure 3). The direction of the robot is closely related to the composition of the velocity of each wheel and rotation about a point that lies on the common axis called ICC—Instantaneous Centre of Curvature (or ICR—Instantaneous Centre of Rotation) [17]. This is, therefore, completely different from our previous work on ROS-based bipedal robot control [18].
Since the angular speed (ω) at the ICC must be the same for both wheels, the following equations were used [20]:
  ω ( R + l 2 ) = V r
  ω ( R l 2 ) = V l
where l is the distance between the centres of the two wheels, V r and V l are the right and left wheel linear velocities along the ground, and R is the distance from the ICC to the midpoint between the wheels. At any instant in time, we can solve for R and ω:
  R = l 2 ( V l + V r V r V l )
ω = V r V l l .
Three cases can be analyzed from the equations:
  • If V l = V r , then this is linear motion in a straight line. R becomes infinite and ω is zero, and there is no rotation.
  • If V l = V r , then R = 0 , and this represents rotation around the midpoint of the wheel axis; the robot rotates in place.
  • If V l = 0 , then there is rotation around the left wheel. In this case, R = l 2   . The same is true if V r = 0 .
Given the angular velocities, ω l and ω r , of the left and right wheels, the linear and angular velocities, V and ω , of the robot can be computed with
  V = r ω r + ω l 2
ω = r ω r ω l l .
Vice versa, by knowing the overall velocity of the system, the velocity of each wheel can be found with
  ω r = V + ( l / 2 ) ω r
ω l = V ( l / 2 ) ω r .
V and ω are used as the desired velocity that is published from the ROS system to the Teensy microcontroller to drive the motors.

3. Experimental Setup and Results

Based on the discussion in Section 2, the experiment set up is presented, and the test outcomes are shown below.

3.1. Hardware Setup

The hardware implementation of a mobile robot consists of three layers (cf. Figure 4). The base layer incorporates two geared DC motors with an encoder, a motor board shield with Teensy 3.2, a motor bridge, and a caster wheel. The motor board drives and controls the motors. The caster wheel is used to balance the robot base.
The second layer consists of a Raspberry Pi 3 and two ultrasonic sensors facing the front and the back side of the robot for collision avoidance. The Ubuntu Mate is installed in the Raspberry Pi as the operating system, with the ROS installed as well. The Raspberry Pi receives the signals from the Ultrasonic sensors and sends the twist message to control the linear and angular speeds of the robot.
The third layer is used as the protective layer, and the breadboard is attached at the back side of the third layer for short wiring purpose. The breadboard can create a mutable circuit design between Raspberry Pi, the motor board, and the Ultrasonic sensors. A Raspberry Connector is used to connect the Raspberry Pi with the breadboard.

3.2. The Controller Design

The Arduino Teensy 3.2 microcontroller takes care of the low-level control of the actuators, translating the messages from an ROS format to PWM commands to drive the motors. To perform such tasks, a dedicated protocol, called rosserial_arduino, was used to wrap standard ROS messages, topics, and services over a serial port, so that the controller acts like a ROS node.
After the definition of all the necessary variables and the ROS related structures like the node handle, messages, publishers and subscribers, the critical function of the entire script is the callback executed when a message is received. The cmdVelCB function receives a Twist message carrying the desired speed commands issued at the higher level published on the topic /cmd_vel, and, using Equations (7) and (8), computes the velocities of left and right wheels which then are used as direct PWM commands on the motors.
At the same time, the encoders embedded on each motor provide the actual speed of the wheels. Depending on the size of the wheel and the encoder counts during the rotation, it is possible to calculate the travelled distance and the speed via dead reckoning:
  D = 2 π r C C r
where D is the distance, r is the radius of the wheel, C the current encoder counts and CR is the total counts per revolution. From (9), the V and ω for each wheel can be found:
  V = D T = 2 π r C T   C r
  ω = V r = 2 π C T   C r
where T is the time passed during the movement. The computation of the speed from the encoder counts is executed in a time interrupt every 0.2 s. From (11), ω r and ω l are published on the topics /left_wheel_pub and /right_wheel_pub. These topics are available to the ROS system to monitor the robot. By using Equations (5) and (6), the current linear and angular velocities of the robot are calculated and published in a ROS Twist message on the topic: /robot_vel_pub.

3.3. KNN Classifier Design and Test

To enhance the KNN classifier performance in our work, the EMG samples received were preprocessed and the features were extracted. Different signal lengths were tested to find the best compromise between accuracy and time, and it was decided that five samples would be used for the feature extraction. By analyzing the graphs of the various EMG channels, it was noticed that during the execution of a gesture, the signals did not show significant variation, but rather had steady recurring values. Since, in the final application, each gesture must be recognized while it is being held and not during the transition between gestures, we decided to use features that could cancel out the average value of the different channels while the gestures were performed, rather than looking for variation in the signal itself. Several studies have explored potential feature selection approaches for raw EMG signals [21,22]. The features chosen for this work were Integrated EMG (IEMG), Mean Average Value (MAV), Simple Square Integral (SSI), Root Mean Square (RMS), Log Detector (LOG) and Variance (VAR) [21,23,24,25], primarily because these features are easy to compute and are computationally less intensive:
I E M G =   k = 1 N | X k | ,
M A V =   1 N k = 1 N | X k | ,
S S I =   k = 1 N | X k 2 | ,
R M S =   1 N   k = 1 N | X k 2 | ,
L O G =   e 1 N k = 1 N log ( | X k | ) ,
V A R =   1 N 1   k = 1 N | X k 2 |   .
By applying these six features to the signals of the eight Myo’s channels a vector of forty-eight values representing a gesture is obtained. To avoid redundancy or to reduce cross-class typical values, the vector was transformed applying the Principal Components Analysis (PCA) algorithm. The PCA is an algorithm that applies an orthogonal transformation to a set of elements and extracts the principal components of it [26].
The algorithm was tested on four subjects by recording samples of their gestures. The recording procedure was executed with the subject holding each gesture three times for five seconds and resting for five seconds between each. The samples were recorded only when a key was pressed on the keyboard, so there were no transition samples recorded that had to be discarded. Then, each gesture was recorded again for five seconds to obtain a set of samples to be used for the testing. The samples were tested using different k values for the KNN algorithm and different numbers of principal components after the PCA transformation. In the end, it was chosen to use a k value of 15 and to keep nine components. The first accuracy test showed good results for most of the gestures, but not all of them. Better results were achieved by extracting fewer features from the signals, thus reducing the presence of cross-class typical values. The final version of the classifier applied only two features—MAV and RMS—and showed better performances, both in terms of accuracy and classifying time. Finally, the performances were again improved when the classifier was modified to suit the final application, since the number of classes that had to be recognized was cut down from ten to six—only rest, wave out, wave in, fist, cut out and cut in were kept. The accuracy rates of the three different algorithms can be seen in Table 1, Table 2 and Table 3.
It must be considered that the EMG signals produced by a person’s muscles while performing a gesture can change depending on the person’s conditions. Elements like the quantity of caffeine and other substances in the body or the level of stress affect the values read by the Myo Armband and thus, the classifier performance. The accuracy tables shown in this section refer to tests done a few minutes after the train samples were recorded, so that the subject status was as similar as possible. While testing the controls moving the robot, it was observed that sometimes the classifier is not as reliable as seen in the tests. This may impact the robot’s performance, but rarely in an excessive way.

3.4. Robot Application

The ROS framework is used for the robot application, which is composed of five nodes; its rqt graph is shown in Figure 5. The nodes myo_interface.py and ultrasonic_node.py read the data of the Myo Armband and the two ultrasonic range sensors, respectively, and publish them. The range data is published on only one topic and each message is labeled according to the sensor that produces it. The classifier_node.py implements a ROS interface for the KNN gesture classifier that was developed separately and which was described in Section 2.5. It subscribes to the EMG data topic and publishes the recognized gestures on a specific topic. The controller_node.py uses both the gesture and the range data to produce a cmd_vel message. The last node—the serial_port—is implemented by ROS and it allows the application to interface with a microcontroller as it is a ROS node. It receives the cmd_vel Twist messages and forwards them to the motor controller and publishes the robot velocity.
The robot is controlled by six different gestures: rest, fist, wave out, wave in, cut out, and cut in. These are used to move it at a set linear and angular speed. Fist makes the robot move forward, cut out and cut in make it turn right and left on the spot, wave out stops it, wave in makes it move backwards, and finally, the rest position is used to continue the use of the command of the last gesture received. While the robot is moving forward or backward, the relative range sensor is checked to slow it down or eventually, stop it. To do this, the linear speed is multiplied by a K factor that depends on the range data detected by the sensor that is pointing in the same direction as the speed. This K is equal to 0 when the distance is 5 cm or less. It grows linearly to 1 from 5 cm to 30 cm, and above that, it is always set to 1. (cf. Figure 6).
During real-time tests, it was noticed that while holding a gesture, one sample could be misclassified, and that this could impact on the robot’s efficiency. Thus, we chose to modify the classifier_node.py to improve its accuracy. The node now stacks up the samples from the emg before beginning the classification. When it reaches fifteen samples, it classifies the whole signal received using a sliding window of five samples, thus getting ten predictions. If at least nine of them belong to the same class, then the gesture is accepted; otherwise it is rejected, and the node starts stacking up new samples without producing any result. This process increased the time required to select a gesture, but it also produced good results by increasing the precision of the controls and it still maintains a classification time low enough to have an almost immediate response from the robot. The frequency at which the EMG samples are received is 100 Hz—which means one sample each 10 ms—and the time required by the algorithm to extract the features, select the principal components and calculate the K neighbors varies between 3.1 ms and 3.3 ms. Rounding up the classification time to 3.5 ms to get the worst time possible, it takes, in total, 185 ms for the script to recognize a gesture—150 ms to receive the fifteen samples and 35 ms to compute the ten predictions.

3.5. Results

Since both the robot’s structure and controls were designed from the ground up, it was necessary to test their efficiency. At first, the robot was driven for some time by all subjects to make sure it could be controlled without any problems. No data was collected during these free tests, since the objective was just to check the presence of possible problems. For this test, the robot’s linear velocity was set to 0.22 m/s, and its angular velocity was set to 60°/s. During the test, these values proved to be a good compromise between speed and ease of control. It was observed that the disposition of the hardware components and their weights could affect the speed of the robot and cause it to gain angular speed during the forward and backward movements. This was solved positioning the boards, breadboard, and battery in a symmetrical way with respect to the robot’s linear movement direction. The range sensors worked well, even though it was noticed that they performed better when detecting flat surfaces. When pointing to an irregular obstacle—a leg for instance—the read values were more variable, resulting in sudden changes in speed. We also checked how the distance between the subject and the robot could impact on the controls. For this purpose, the subjects stood in a corridor 20 m away from the robot, with a closed door in between. There was no delay noticed in the robot’s reaction to the commands.
The next test concerned the minimum distance and rotation that could be performed by the robot. This test was necessary because the way the robot is controlled implies a delay between an order and its execution and thus, a minimum time span between two commands. This means that between a movement and a stop command, the robot will always cover a minimum distance. The test was performed with the subjects giving a movement command—forward for the first test and a left turn for the second one—and then a stop command as soon as possible. During these tests, the robot was driven over a sheet of paper on which its reference starting positions were signed, so that it was possible to calculate the differences between distance and rotation later. The test was repeated five times by each subject. The results can be seen in Table 4 and Table 5. On average, the minimum distance covered by the robot was 12.79 cm, and the minimum rotation was 38.35°.
In the final test (cf. Figure 7), the subjects drove the robot from a start point to an end target while avoiding obstacles. The distance between the two points was 6 m. Each subject completed the task two times, and for each one, the time duration to complete the task and the number of commands required were noted. The results are shown in Table 6, and a sample video demonstration by one subject is shown in [27]. They vary a lot despite the overall good accuracies found in the classifier test, probably because—as stated in the previous section—the classifier’s accuracy depends on the subject’s state.

4. Discussion and Conclusions

In this project a mobile robot base was developed. The Myo gesture control armband was used to obtain the surface EMG signals from the human arm which were then classified using a KNN algorithm to recognize the gestures.
Initially, the algorithm was programmed to recognize 10 different gestures. Four test subjects were tested to calculate the accuracy of all classes on each subject. Then, unused classes were removed which, in turn, improved the accuracy of the ones been used. The robot application comprised five ROS nodes that were used to read the data signals from the Myo armband and ultrasonic sensors, detect gestures, and control the movement of the robot. Several tests were conducted with four subjects to test the feasibility and the efficiency of the robot and the software system.
This approach proposed here to control mobile robots could become a valid method thanks to its direct interaction with the human body that makes it quick and intuitive. To make it a viable option though, it will be necessary to overcome the flaws found during the tests. First, it was observed that the delay between gesture execution and gesture recognition can strongly affect the minimum distance and rotation that the robot can cover, thus influencing its maneuverability, making a compromise between speed and ease of control necessary. Second, during the track test, it was noticed how the processing of physiological signals and the way they can vary greatly due to a huge number of factors sometimes make the gesture recognition algorithm too unreliable to be usable. This last problem could be solved in the future by adding the possibility to do quick and non-permanent re-training on the subject to adjust the values of one or two gestures to check how the average has moved.
Due to time constraints, some features that were supposed to be developed, were not included in the end. Future improvements will primarily focus on integrating these features. For instance, a PID control for the motors, a wider number of commands that allow the combination of linear and angular speed, and the possibility of increasing and decreasing the robot’s speed using the Myo’s IMU sensor.

Author Contributions

V.G. and Z.Y. conceived the original idea and supervised the work; S.B., L.D.L., and B.S. planned and carried out the experiments; Al authors discussed the results and contributed to the final manuscript.

Funding

This research received no external funding.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Chakraborty, B.K.; Sarma, D.; Bhuyan, M.K.; MacDorman, K.F. Review of constraints on vision-based gesture recognition for human–computer interaction. IET Comput. Vis. 2017, 12, 3–15. [Google Scholar] [CrossRef]
  2. Pasarica, A.; Miron, C.; Arotaritei, D.; Andruseac, G.; Costin, H.; Rotariu, C. Remote control of a robotic platform based on hand gesture recognition. In Proceedings of the E-Health and Bioengineering Conference (EHB), Sinaia, Romania, 22–24 June 2017; pp. 643–646. [Google Scholar]
  3. Abualola, H.; Al Ghothani, H.; Eddin, A.N.; Almoosa, N.; Poon, K. Flexible gesture recognition using wearable inertial sensors. In Proceedings of the IEEE 59th International Midwest Symposium on Circuits and Systems (MWSCAS), Abu Dhabi, UAE, 16–19 October 2016; pp. 1–4. [Google Scholar]
  4. Maqueda, A.I.; del-Blanco, C.R.; Jaureguizar, F.; García, N. Human-computer interaction based on visual hand-gesture recognition using volumetric spatiograms of local binary patterns. Comput. Vis. Image Underst. 2015, 141, 126–137. [Google Scholar] [CrossRef]
  5. Rahman, S.A.; Song, I.; Leung, M.K.; Lee, I.; Lee, K. Fast action recognition using negative space features. Expert Syst. Appl. 2014, 41, 574–587. [Google Scholar] [CrossRef]
  6. Gandhi, V.; McGinnity, T.M. Quantum neural network based surface EMG signal filtering for control of robotic hand. In Proceedings of the IEEE International Joint Conference on Neural Networks, Dallas, TX, USA, 4–9 August 2013. [Google Scholar]
  7. Moon, I.; Lee, M.; Ryu, J.; Mun, M. Intelligent robotic wheelchair with EMG-, gesture-, and voice-based interfaces. In Proceedings of the IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS 2003), Las Vegas, NV, USA, 27–31 October 2003; pp. 3453–3458. [Google Scholar]
  8. Kucukyildiz, G.; Ocak, H.; Karakaya, S.; Sayli, O. Design and implementation of a multi sensor based brain computer interface for a robotic wheelchair. J. Intell. Robot. Syst. 2017, 87, 247–263. [Google Scholar] [CrossRef]
  9. Shin, S.; Kim, D.; Seo, Y. Controlling mobile robot using imu and emg sensor-based gesture recognition. In Proceedings of the Ninth International Conference on Broadband and Wireless Computing, Communication and Applications (BWCCA), Guangdong, China, 8–10 November 2014; pp. 554–557. [Google Scholar]
  10. Luh, G.C.; Lin, H.A.; Ma, Y.H.; Yen, C.J. Intuitive muscle-gesture based robot navigation control using wearable gesture armband. In Proceedings of the International Conference on Machine Learning and Cybernetics (ICMLC), Guangzhou, China, 12–15 July 2015; pp. 389–395. [Google Scholar]
  11. Gandhi, V. Brain-Computer Interfacing for Assistive Robotics: Electroencephalograms, Recurrent Quantum Neural Networks, and User-Centric Graphical Interfaces; Academic Press: Cambridge, MA, USA, 2014. [Google Scholar]
  12. Gandhi, V.; Prasad, G.; Coyle, D.; Behera, L.; McGinnity, T.M. EEG based mobile robot control through an adaptive brain-robot interface. IEEE Trans. Syst. Man Cybern. Syst. 2014, 44, 1278–1285. [Google Scholar] [CrossRef]
  13. Gandhi, V.; Prasad, G.; Coyle, D.; Behera, L.; McGinnity, T.M. Quantum neural network based EEG filtering for a Brain-computer interface. IEEE Trans. Neural Netw. Learn. Syst. 2014, 25, 278–288. [Google Scholar] [CrossRef] [PubMed]
  14. TechSpecs|Myo Battery Life, Dimensions, Compatibility and Moe. Available online: https://www.myo.com/techspecs (accessed on 22 June 2018).
  15. Altman, N.S. An introduction to kernel and nearest-neighbor nonparametric regression. Am. Stat. 1992, 46, 175–185. [Google Scholar]
  16. Islam, M.J.; Wu, Q.J.; Ahmadi, M.; Sid-Ahmed, M.A. Investigating the performance of naive-bayes classifiers and k-nearest neighbor classifiers. In Proceedings of the International Conference on Convergence Information Technology, Gyeongju, Korea, 21–23 November 2007; pp. 1541–1546. [Google Scholar]
  17. Hellström, T. Kinematics Equations for Differential Drive and Articulated Steering; Umeå University: Umeå, Sweden, 2011; p. 26. [Google Scholar]
  18. Kalyani, G.K.; Yang, Z.; Gandhi, V.; Geng, T. Using robot operating system (ROS) and single board computer to control bioloid robot motion. In Proceedings of the 18th Annual Conference on Towards Autonomous Robotic Systems, Guildford, UK, 19–21 July 2017; pp. 41–50. [Google Scholar]
  19. Dudek, G.; Jenkin, M. Computational Principles of Mobile Robotics; Cambridge University Press: Cambridge, UK, 2010. [Google Scholar]
  20. Malu, S.K.; Majumdar, J. Kinematics, Localization and Control of Differential Drive Mobile Robot. Glob. J. Res. Eng. 2014, 14, 1–9. [Google Scholar]
  21. Nazmi, N.; Abdul Rahman, M.A.; Yamamoto, S.I.; Ahmad, S.A.; Zamzuri, H.; Mazlan, S.A. A review of classification techniques of EMG signals during isotonic and isometric contractions. Sensors 2016, 16, 1304. [Google Scholar] [CrossRef] [PubMed]
  22. Daud, W.M.B.W.; Yahya, A.B.; Horng, C.S.; Sulaima, M.F.; Sudirman, R. Features extraction of electromyography signals in time domain on biceps Brachii muscle. Int. J. Model. Optim. 2013, 3, 515. [Google Scholar] [CrossRef]
  23. Adewuyi, A.A.; Hargrove, L.J.; Kuiken, T.A. Evaluating EMG feature and classifier selection for application to partial-hand prosthesis control. Front. Neurorobot. 2016, 10, 15. [Google Scholar] [CrossRef] [PubMed]
  24. Phinyomark, A.; Khushaba, R.N.; Scheme, E. Feature Extraction and Selection for Myoelectric Control Based on Wearable EMG Sensors. Sensors 2018, 18, 1615. [Google Scholar] [CrossRef] [PubMed]
  25. Negi, S.; Kumar, Y.; Mishra, V. Feature extraction and classification for EMG signals using linear discriminant analysis. In Proceedings of the International Conference on Advances in Computing, Communication, & Automation (ICACCA), Bareilly, India, 30 September–1 October 2016; pp. 1–6. [Google Scholar]
  26. Mackiewicz, A.; Ratajczak, W. Principal components analysis (PCA). Comput. Geosci. 1993, 19, 303–342. [Google Scholar] [CrossRef]
  27. Development of an EMG-Controlled Mobile Robot. Available online: https://youtu.be/LoTeNckPois (accessed on 22 June 2018).
Figure 1. The Thalmic Myo Armband.
Figure 1. The Thalmic Myo Armband.
Robotics 07 00036 g001
Figure 2. The ten gestures for classification.
Figure 2. The ten gestures for classification.
Robotics 07 00036 g002
Figure 3. The differential drive kinematics schema (reproduced from [19]).
Figure 3. The differential drive kinematics schema (reproduced from [19]).
Robotics 07 00036 g003
Figure 4. Proposed robot design.
Figure 4. Proposed robot design.
Robotics 07 00036 g004
Figure 5. The ROS rqt graph showing various nodes of the application and the topics they use to communicate.
Figure 5. The ROS rqt graph showing various nodes of the application and the topics they use to communicate.
Robotics 07 00036 g005
Figure 6. Effect of K on the enhancement of linear speed changes according to the distance from an obstacle.
Figure 6. Effect of K on the enhancement of linear speed changes according to the distance from an obstacle.
Robotics 07 00036 g006
Figure 7. Test arena with Turtlebot robots as obstacles [27].
Figure 7. Test arena with Turtlebot robots as obstacles [27].
Robotics 07 00036 g007
Table 1. Classification accuracy (in percentage) using the six features to recognize ten classes.
Table 1. Classification accuracy (in percentage) using the six features to recognize ten classes.
Subject 1Subject 2 Subject 3Subject 4
Class 0 (Rest)97.00100.0072.7299.00
Class 1 (Spread)62.6286.8781.0055.55
Class 2 (Wave Out)100.00100.0099.00100.00
Class 3 (Wave In)98.9999.00100.007.07
Class 4 (Fist)98.0099.00100.00100.00
Class 5 (Cut Out)80.00100.00100.00100.00
Class 6 (Cut In)43.00100.00100.0095.95
Class 7 (Snap)56.0058.5889.9033.33
Class 8 (“V”) 69.7095.9565.6597.98
Class 9 (Horn)19.1960.6056.5686.87
Average Classification Time = 5.26 ms
Table 2. Classification accuracy (in percentage) using the two features to recognize ten classes.
Table 2. Classification accuracy (in percentage) using the two features to recognize ten classes.
Subject 1Subject 2 Subject 3Subject 4
Class 0 (Rest)97.00100.0069.69100.00
Class 1 (Spread)87.8899.0090.0035.35
Class 2 (Wave Out)100.00100.00100.0095.00
Class 3 (Wave In)98.00100.00100.0030.30
Class 4 (Fist)100.00100.00100.00100.00
Class 5 (Cut Out)98.00100.00100.00100.00
Class 6 (Cut In)82.00100.00100.00100.00
Class 7 (Snap)71.0060.6096.9718.18
Class 8 (“V”) 73.7399.0070.70100.00
Class 9 (Horn)15.1583.8472.7292.93
Average Classification Time = 3.26 ms
Table 3. Classification accuracy (in percentage) using the two features to recognize six classes.
Table 3. Classification accuracy (in percentage) using the two features to recognize six classes.
Subject 1Subject 2 Subject 3Subject 4
Class 0 (Rest)100.00100.0094.95100.00
Class 1 (Wave Out)100.00100.00100.0095.00
Class 2 (Wave In)99.00100.00100.0030.30
Class 3 (Fist)100.00100.0076.76100.00
Class 4 (Cut Out)100.00100.0094.00100.00
Class 5 (Cut In)97.00100.00100.00100.00
Average Classification Time = 3.17 ms
Table 4. Minimum distance test.
Table 4. Minimum distance test.
Subject 1Subject 2Subject 3Subject 4
Trial 115 cm11.6 cm16.5 cm14.1 cm
Trial 25.5 cm12.4 cm11.5 cm13.1 cm
Trial 312.5 cm12.1 cm11 cm15.6 cm
Trial 416 cm12 cm10.8 cm9 cm
Trial 512 cm12.6 cm17.8 cm14.7 cm
Average12.2 cm12.14 cm13.52 cm13.3 cm
Average Minimum Distance = 12.79 cm
Table 5. Minimum rotation test.
Table 5. Minimum rotation test.
Subject 1Subject 2Subject 3Subject 4
Trial 150°10°35°48°
Trial 240°31°40°55°
Trial 337°12°35°35°
Trial 440°35°40°35°
Trial 550°28°60°51°
Average43.4°23.2°42°44.8°
Average Minimum Distance = 38.35°
Table 6. Track test.
Table 6. Track test.
Trial No.TimeCommands
Subject 1
Trial 11.32 m53
Trial 21.55 m59
Subject 2
Trial 11.27 m31
Trial 20.55 m21
Subject 3
Trial 11.58 m36
Trial 21.42 m29
Subject 4
Trial 11.39 m41
Trial 21.50 m53

Share and Cite

MDPI and ACS Style

Bisi, S.; De Luca, L.; Shrestha, B.; Yang, Z.; Gandhi, V. Development of an EMG-Controlled Mobile Robot. Robotics 2018, 7, 36. https://doi.org/10.3390/robotics7030036

AMA Style

Bisi S, De Luca L, Shrestha B, Yang Z, Gandhi V. Development of an EMG-Controlled Mobile Robot. Robotics. 2018; 7(3):36. https://doi.org/10.3390/robotics7030036

Chicago/Turabian Style

Bisi, Stefano, Luca De Luca, Bikash Shrestha, Zhijun Yang, and Vaibhav Gandhi. 2018. "Development of an EMG-Controlled Mobile Robot" Robotics 7, no. 3: 36. https://doi.org/10.3390/robotics7030036

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop