Project and Development of an Autonomous R/C Car

Total Page:16

File Type:pdf, Size:1020Kb

Project and Development of an Autonomous R/C Car v.2, n.1, p.2-18, 2019. CarNotFound: Project and Development of an Autonomous R/C Car Isabelle Diniz Orlandi, Daniel Pereira Cinalli, Italo Milhomem de Abreu Lanza, Thiago Lima de Almeida, Tito Caco Curimbaba Spadini, Pedro Ivo da Cruz, Filipe Ieda Fazanaro Federal University of ABC (UFABC) ABSTRACT Robots are fascinating, mainly, due to the fact that it is essential that the acknowledgment of different areas - as electrical engineering, computer engineering, mechanical engineering, physics, mathematics and biology - must be integrated so that the robot can interact with the environment. In the context of autonomous robots, it is also fundamental the capability to locate itself without any human interference, only by processing the information obtained by numerous types of sensors. The work described here aims to study the essential concepts associated with autonomous robots, specifically, an autonomous R/C car capable to navigate in a closed environment, following a dashed reference line, using only a single camera. The processing of the images acquired and the execution of the control system were performed by a Raspberry Pi 3B+ using codes in Python and OpenCV. The results obtained indicate strong dependence on the rate of the processed frames per second and, moreover, a simple PD controller was sufficient to adjust the direction of the car along the trajectory to be followed. Keywords: Monocular vision, OpenCV, PD controller, PiCamera, Python, Raspberry Pi 3B+. INTRODUCTION Since Leonardo da Vinci’s first sketches, through the initial decades of the 20th century and gaining more attention after the publications of Isaac Asimov’s works, robotics have become a topic that excites the human imagination. Although we are a long way from having the robots as described in science fiction, i.e. humanoid robots interacting with human beings or assisting pilots on rebel spaceships fighting against the Empire, it is relatively affordable to buy simple structures - compared to fiction -, such as a vacuum cleaner robot, to help in the daily activities. An incipient view about robotics would be associated with the robot manipulators [1] cooperatively operating in an automotive production line. The manipulators has transcended this barrier long ago and nowadays are employed in several aspects of the society. In medicine, for example, there were developed studies showing how robotics has assisted surgical procedures, diagnoses and remotely monitor the patients [2], being the medical robotic system Da Vinci one of the the most important [3]. 2 v.2, n.1, p.2-18, 2019. Throughout the last decades, the world contemplated the development of another class of robotics, named mobile robots. As there are studies and research related to different types of such robots, e.g. the ones which are capable to move through the air [4, 5, 6] or in the water [7, 8], its core arises from the 1920s, when the first radio controlled vehicles were developed [9]. In this context, probably autonomous cars can be seen to be one of the most emblematic example of mobile robots. In recent years, it has been possible to see a constant growing interest in the research related to autonomous vehicles led, mainly, by companies such as Google, Tesla, Amazon, NVidia and Intel. However, a project of this nature is extremely complex and until now has open questions [10]. In this context, the work reported here aims to roughly understand such questions and studies the fundamental techniques necessary to allow a vehicle - in this case, a radio controlled (R/C) 1:14 scale car - to move autonomously within a closed envi- ronment, using a single camera and computer vision concepts, respecting the initial motivation of the project: the RoboCar Race [11]. In the next sections, it is presented the main aspects related to the vehicle’s deve- lopment, followed by the concepts used to implement its control system and the results obtained during the experiments. Finally, some discussions and conclusions about the project are presented. AN OVERVIEW ABOUT THE VEHICLE DEVELOPED The vehicle’s development can be analyzed considering the hardware - which is related to the motors, the power system and all the embedded electronic - and the software, which is associated with the computational vision algorithm and the control system. The main aspects of both are briefly described in the following. Hardware: the main aspects The embedded electronic of the vehicle was based on simple and basic components [12] and can be synthesized with the help of the block diagram presented in Figure 1. Power System Raspberry Powerbank PiCamera V2 Pi 3B+ • 7.2V Battery LM298 Driver Servomotor DC Motors • Figure 1. An overview describing how the embedded electronic is structured. As illustrated in Figure 1, a Raspberry Pi 3B+ (RPi) [13] is the responsible for processing the visual information obtained by a PiCamera V2 [14] and controlling the DC motors. The car contains two DC motors [15] (Motor A and B installed, respectively, at the right and at the left sides of the chassis) which are driven by an H-bridge (L298N) [16]. In Figure 2, it is possible to observe the signals IN1A, IN1B, IN2A and IN2B which are directly 3 v.2, n.1, p.2-18, 2019. connected, in pairs, to the RPi’s GPIO, i.e. IN1A and IN1B are both connected to the GPIO BCM 23, and IN2A and IN2B to the GPIO BCM 22. This solution allowed to drive both DC motors (e.g. rotate clockwise, counterclockwise and stop) at the same time, because it was not necessary to separately control their rotation. Figure 2. Illustration of how the DC motors were connected to the GPIOs of the Raspberry Pi. The LD-1501MG servomotor [17] was installed in the front of the chassis and used to rotate the front wheels and, consequently, adjusting the direction of the car. This servomotor can be controlled by employing a PWM signal generated at the RPi by software - using any GPIO -, or by hardware (GPIO BCM 13; dedicated pin) [18]. As can be seen in Figure 3, the behavior of the PWM generated by software is noisier when compared to the signal generated by hardware. During some initial experiments, this characteristic caused the servomotor to slightly move when no command was being sent and, therefore, it was used the hardware PWM to control the servomotor. Figure 3. Comparation of the PWM signals generated by the RPi. The curve in blue (at the top) was generated by hardware. In both cases, the duty cycle is 25% and the high voltage is 3.3V. From Figure 1, it is also possible to observe that the power system is divided in two subsystems. A common NiCd 7.2V/2200mAh battery - used in R/C cars - was employed to supply the necessary energy for the DC motors. A Xiaomi Mi Powerbank 2i (model PLM09ZM), with two outputs with 5V/2.4A each, was connected to the RPi. The servomotor was connected directly to the GPIO 2 (or 4) of the RPi. Hardware: some informations about the camera The most important sensor employed in this project - in fact, the only one - was the PiCamera V2 [14]. Although it was possible to use standard USB webcams, the advantage of the PiCamera is that it is connected directly to 4 v.2, n.1, p.2-18, 2019. the RPi’s CPU (BCM2837 SoC) through an CSI-2 interface, with a 2 Gpbs bandwidth. The PiCamera captures the image using a rolling shutter mechanism [19] where each image is built from the pixels values of each line of its sensor, i.e. each line of a single frame is obtained at different time instants. To avoid possible distortions in the frame captured, i.e. to ensure that continuous reading of frames always occurs within the same time, the associated capture processing is performed by the RPi’s GPU - which runs its own real-time operating system (VCOS). For further information, it is strongly recommended to review the reference [20, section 6.1.5. - Division of labor]. Hardware: the “404” autonomous R/C car As previously mentioned, the rules of the Robocar Race [11] establishes that just one camera could be used for sensing the environment and all the processing must be done in a Raspberry Pi (any model). Additionally, the chassis dimensions must be smaller than 420mm (length) × 200mm (width). The chassis used [21] and all the embedded electronic are shown in Figure 4. Figure 4. An image of the car. It is possible to see all the embedded electronic and the power system. Some general considerations about the software Since a RaspberryPi was employed as the processing unit, it was used the Raspbian Lite (version 2018-10-09; Linux kernel 4.14.79) as the operational system. It was defined a script which initializes during the OS booting and is the responsible to configure the PIGPIO library and the hardware PWM [18]. It must be observed that all the programs were developed using Python 3.5.3 programming language and based on object oriented con- cepts - which facilitated the debugging and the development itself, and, more important, the code portability. Some additional libraries and packages, as the NumPy (mathematical functions and arrays manipulations) and the RPi.GPIO (control of the IO peripherals), were also employed. Finally, the computer vision algo- rithms were developed using the OpenCV (version 3.4.3) library which were installed from the source using the tutorial presented in [22]. Further explanations of how the algorithms were developed and some related 5 v.2, n.1, p.2-18, 2019. discussions are presented in the following. IMAGE PROCESSING AND CAR CONTROL The main objective of the competition consists in an autonomous R/C car being capable to travel along a pre-established course in the shortest possible time.
Recommended publications
  • Robotics and Autonomous Systems
    Spring 2015 Industry Study Final Report Robotics and Autonomous Systems The Dwight D. Eisenhower School for National Security and Resource Strategy National Defense University Fort McNair, Washington, D.C. 20319-5062 i ROBOTICS AND AUTONOMOUS SYSTEMS 2015 ABSTRACT: The Robotics and Autonomous Systems (RAS) industry plays a critical role producing America’s preferred means of global power projection: unmanned aircraft systems. But in a larger sense, RAS technology has also altered the defense industry’s relationship with DoD, as the defense sector increasingly finds itself following commercial sector innovations. This report outlines the major issues affecting the defense sector of the RAS industry and DoD’s ability to acquire and employ RAS. It then makes recommendations to enable DoD to better capitalize on the technology, strengthen its relationship with the industry and ultimately improve the nation’s warfighting capability. BG Mordechay Baruch, Israeli Defense Force LTC Clinton Cox, US Army Mr. Terry Emmert, Office Secretary Defense COL Daniel Friend, US Army Mr. Riley Jay, National Geospatial Agency Lt Col Linell Letendre, US Air Force Lt Col Robert Masaitis, US Air Force Mr. David Mico, Dept of State Lt Col Kevin Murray, US Marine Corps Lt Col Richard Neitzey, US Marine Corps Dr. Jeffery Paull, Dept of Navy CDR Jerome Smith, US Navy COL Stephanie Tutton, US Army Mr. Thomas Wilson, Veterans Affairs Lt Col Lori Winn, US Air Force CAPT Matthew Pregmon, US Navy, Faculty lead COL David Shugart, US Army, Faculty ii PLACES VISITED Domestic:
    [Show full text]
  • The Robotics Market First Half 2012 Results and Trends
    The Robotics Market First Half 2012 Results and Trends This report is based on data supplied to RIA by its member companies. The numbers represent the industrial robot units ordered and shipped, plus the dollar value added to the total robot system. RIA does not include numbers that other countries reporting to the International Federation of Robotics might include as robot units; e.g., RIA does not include four axis chip placement devices in standard electronic assembly machines. Table of Contents 1. First Half News Release 2. First Half 2012 -Application Trends — New Orders • Assembling and Disassembling • Processing • Dispensing • Welding and Soldering (all materials) • Handling Operations/Machine Tending • Other First Half 2012 - Application Trends — Shipments • Assembling and Disassembling • Processing • Dispensing • Welding and Soldering (all materials) • Handling Operations/Machine Tending • Other 3. 2012 vs. 2011 New Orders and Shipments Totals — Units 2012 vs. 2011 New Orders and Shipments Totals — Dollars Robotic Industries Association 900 Victors Way, Suite140 Contact: Jeff Burnstein Ann Arbor, Michigan 48108 USA President Telephone: (734) 994-6088 (734) 994-6088 Fax: (734) 994-3338 [email protected] www.Robotics.org PRESS RELEASE North American Robotics Industry Posts Best Quarter Ever, According to New Statistics from RIA (Ann Arbor, Michigan – July 26, 2012) North American robotics companies sold more industrial robots in the second quarter of 2012 than any previous quarter in history, according to new statistics released by Robotic Industries Association (RIA), the industry’s trade group. A total of 5,556 robots valued at $403.1 million were sold to North American companies, a jump of 14% in units and 28% in dollars over the same quarter in 2011.
    [Show full text]
  • Mobile Robotics: a Tool for Application-Based Integration of Multidisciplinary Undergraduate Concepts and Research
    AC 2010-22: MOBILE ROBOTICS: A TOOL FOR APPLICATION-BASED INTEGRATION OF MULTIDISCIPLINARY UNDERGRADUATE CONCEPTS AND RESEARCH Carlotta Berry, Rose-Hulman Institute of Technology Dr. Berry is an assistant professor in the department of electrical and computer engineering at Rose-Hulman Institute of Technology. She is one of the principal investigators on the multidisciplinary educational robotics initiative and the Rose building undergraduate diversity program. Her research areas include the design and evaluation of human-robot interfaces and innovations in engineering education using active learning and mobile robotics. Page 15.877.1 Page © American Society for Engineering Education, 2010 “Mobile Robotics: A tool for application-based integration of multidisciplinary undergraduate concepts and research” Abstract This paper presents the development of a mobile robotics course at the primarily undergraduate engineering school, Rose-Hulman Institute of Technology. This course is one of the final courses in the multidisciplinary educational robotics certificate program. The purpose of this course is to use the robot to provide the students with an appreciation of their discipline and how it applies to other disciplines. It is hypothesized that students will gain a more realistic model of their future workplace demographic while also learning about robotics theory and the open areas of robotics research. Introduction Undergraduate students in science and engineering frequently express a desire to relate the abstract theory presented in class to real-world or practical application. One method that can be used to integrate component theory with system or practical application is robotics. Since robotics theory includes topics such as sensors, controls, mechatronics, kinematics, microcontroller programming, embedded systems and software development; it is an ideal model for multidisciplinary application.
    [Show full text]
  • An Industrial Robotics Course for Manufacturing Engineers
    Paper ID #15654 An Industrial Robotics Course for Manufacturing Engineers Dr. Jeffrey L. Newcomer, Western Washington University Dr. Jeffrey L. Newcomer is a Professor of Manufacturing Engineering and Chair of the Engineering and Design Department at Western Washington University. He received his Ph.D. in Mechanical Engineering from Rensselaer Polytechnic Institute. c American Society for Engineering Education, 2016 An Industrial Robotics Course for Manufacturing Engineers For many years the automobile industry was the home to more than half of the robots used in U.S. manufacturing. Recently, however, many other industries have been or are planning to introduce robots into their manufacturing processes.1 In the Pacific Northwest region several companies in aerospace, electronics, apparel, and commercial cookware have either introduced robots or ex- panded their use in recent years. As such, an introduction to robotics in the context of manufac- turing is becoming more important for students pursuing degrees in Manufacturing Engineering. There is, however, always a challenge when teaching robotics to find the correct balance between application and modeling. Many robotics courses taught in Electrical or Mechanical Engineering Departments have a tendency to emphasize modeling over application, but a well-prepared Man- ufacturing Engineer needs to understand where the challenges in robotics applications lie as well as understanding what is going on ‘under the hood’. A quick survey of the 21 ABET accredited Manufacturing Engineering programs indicates that only five have a manufacturing specific ro- botics course, and three of those are special topics courses that are not offered consistently.2 Other programs have robotics integrated into a general automation class, have cross-listed classes with other programs, or have graduate classes on robotics that are available to seniors, so there are not the same opportunities for depth or focus on manufacturing applications.
    [Show full text]
  • "Rethink Robotics: Finding a Market". Stanford Casepublisher 204-2013
    S TANFORD U NIVERSITY 2 0 1 3 - 2 0 4 - 1 S CHOOL OF E NGINEERING C ASEP UBLISHER Rev. June 3, 2013 Duhamel et al. “Rethink Robotics - Finding a Market” Stanford CasePublisher 204-2013-1. 20 May 2013. RETHINK ROBOTICS - FINDING A MARKET T ABLE OF C ONTENTS Introduction 1. Industry Overview 2. History of Rethink Robotics 3. Management 4. Technology 5. Financing 6. Rethink Corporate Strategy 7. Future Trends 8. References 9. Exhibits 10. Authors Professors Micah Siegel (Stanford University) and Fred Gibbons (Stanford University) guided the de- velopment of this case using the CasePublisher service as the basis for class discussion rather than to i$us- trate either e%ective or ine%ective handling of a business situation. S TANFORD 204-2013-01 Rethink Robotics Introduction !Since 1980, millions of manufacturing jobs have been outsourced to reduce labor costs in order to maintain competitiveness in the evolving global market for products. "1] While reducing cost, this has reduced the number of middle-income jobs in developed na- tions. Furthermore, outsourcing has created problems for firms that now operate in politi- cally and/or economically unstable regions. "2] Rethink Robotics hopes that its automated manufacturing robot, Baxter, will enable domestic firms to competitively insource manufac- turing jobs and thus improve e%ciency. Rethink Robotics was founded by Rodney Brooks in 2008 to build a low-cost, adaptive manufacturing robot. The original name, Heartland Robotics, reflects the company's ambi- tions to combat outsourcing. "3] In a 2012 press release, Brooks stated, “Rethink Robot- ics…will do for manufacturing workers what the PC did for o%ce workers & increase their productivity by giving them direct access to technological tools.” "4] Their distinctive ro- botic workforce is marketed as simpler, safer, smarter, and cheaper than traditional indus- trial robots.
    [Show full text]
  • Using a Single Cell to Create an Entire Organ
    Message from the LARS/SBR 2016 General and Program Chairs The 13th Latin American Robotics Symposium (LARS 2016) and the 4th Brazilian Symposium on Robotics (SBR 2016) aims to promote a comprehensive scientific meeting in the area of intelligent robotics, bringing together researchers and undergraduate and graduate students studying computer science, electrical engineering, mechatronics engineering, mechanical engineering, and related areas. LARS/SBR 2016 can be considered the most important Latin American robotics symposium. LARS/SBR 2016 was the major scientific/academic event of Robotica 2016. There were some co-located events: the 15th Latin American Robotics Competition (LARC 2016), 14th Brazilian Robotics Competition (CBR 2016—14th Competição Brasileira de Robótica), Brazilian Robotics Olympiad (OBR 2016—Olimpíada Brasileira de Robótica), Mostra Nacional de Robótica (MNR 2016), 7th Workshop of Robotics in Education (WRE 2016), and Workshop on Thesis and Dissertations (WTDR 2016). These events were the result of a joint action of the Brazilian Computer Society (SBC), the IEEE Latin American Robotics Council, and the IEEE Robotics and Automation Society Chapter of Brazil. The joint conferences were held October 8–12, 2016, in Recife, PE, Brazil. The papers accepted for presentation at the symposium covered a large spectrum of topics, including active sensory processing and control; aerial vehicles; autonomous vehicles; bio- inspired robotics; CAD-based robotics; computing architectures; education issues in robotics; human/robot interaction;
    [Show full text]
  • An Inchworm-Inspired Motion Strategy for Robotic Swarms
    This article has been published in a revised form in Robotica [https://www.doi.org/10.1017/S0263574721000321]. This version is free to view and download for private research and study only. Not for re-distribution, re-sale or use in derivative works. © Cambridge University Press. An Inchworm-Inspired Motion Strategy for Robotic Swarms Kasra Eshaghi*ψ, Zendai Kashinoψ, Hyun Joong Yoonϕ, Goldie Nejatψ, Beno Benhabibψ ψ Department of Mechanical and Industrial Engineering, University of Toronto, 5 King’s College Road, Toronto, ON, M5S 3G8, Canada. Φ School of Mechanical and Automotive Engineering, Daegu Catholic University, Hayang, Gyeongsan, Gyeongbuk 712-702, Republic of Korea E-mails: [email protected], [email protected], [email protected], [email protected], [email protected] (Accepted __, First published online: __) SUMMARY Effective motion planning and localization are necessary tasks for swarm robotic systems to maintain a desired formation while maneuvering. Herein, we present an inchworm-inspired strategy that addresses both these tasks concurrently by using anchor robots. The proposed strategy is novel as, by dynamically and optimally selecting the anchor robots, it allows the swarm to maximize its localization performance while also considering secondary objectives, such as the swarm’s speed. A complementary novel method for swarm localization, that fuses inter-robot proximity measurements and motion commands, is also presented. Numerous simulated and physical experimental examples are included to illustrate
    [Show full text]
  • Call for Papers Important Dates: July, 1: Paper Submission August, 1: Notification to Authors
    I Workshop on MSc Dissertation and PhD Thesis in Robotic (WTDR-2012) I Best MSc Dissertation and PhD Thesis Contest in Robotic (CTDR-2012) Call for Papers Important Dates: July, 1: paper submission August, 1: notification to authors About WTDR WTDR-2012 is satellite event of the Latin American Robotics Symposium / Brazilian Robotics Symposium 2012 of the Joint Conference 2012, , which will be held in UNIFOR, University of Fortaleza at Fortaleza, Ceará, Brazil, on October 15-21. WTDR provides an opportunity for PhD and MSc students in Brazil to present their ongoing and/or recently concluded research with a panel of established researchers in Robotic. The workshop has the following objectives: to provide a setting for mutual feedback on participants' current research and guidance on future research directions; to develop a supportive community of scholars and a spirit of collaborative research; to contribute to the conference goals through interaction of graduate students with other researchers as well as participation in conference events; to increase the visibility of ongoing work for the academic and industrial community. About CTDR CTDR-2012 will take place in parallel to WTDR-2012. The main goals of CTDR are to divulge and award the best academic work in Robotics concluded in Brazilian Universities from June 2010 to June 2012. CTDIA expects papers with concluded work, with evaluation and results. The selected works will be presented and judged during the SBR-2012. Notice that in the submission phase, the main object of judgment is the paper; while in the second one (during the conference), the main object of judgment is the full thesis or dissertation (to be submitted if the paper was accepted).
    [Show full text]
  • Generation of the Whole-Body Motion for Humanoid Robots with the Complete Dynamics Oscar Efrain Ramos Ponce
    Generation of the whole-body motion for humanoid robots with the complete dynamics Oscar Efrain Ramos Ponce To cite this version: Oscar Efrain Ramos Ponce. Generation of the whole-body motion for humanoid robots with the complete dynamics. Robotics [cs.RO]. Universite Toulouse III Paul Sabatier, 2014. English. tel- 01134313 HAL Id: tel-01134313 https://tel.archives-ouvertes.fr/tel-01134313 Submitted on 23 Mar 2015 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Christine CHEVALLEREAU: Directeur de Recherche, École Centrale de Nantes, France Francesco NORI: Researcher, Italian Institute of Technology, Italy Patrick DANÈS: Professeur des Universités, Université de Toulouse III, France Ludovic RIGHETTI: Researcher, Max-Plank-Institute for Intelligent Systems, Germany Nicolas MANSARD: Chargé de Recherche, LAAS-CNRS, France Philippe SOUÈRES: Directeur de recherche, LAAS-CNRS, France Yuval TASSA: Researcher, University of Washington, USA Abstract This thesis aims at providing a solution to the problem of motion generation for humanoid robots. The proposed framework generates whole-body motion using the complete robot dy- namics in the task space satisfying contact constraints. This approach is known as operational- space inverse-dynamics control. The specification of the movements is done through objectives in the task space, and the high redundancy of the system is handled with a prioritized stack of tasks where lower priority tasks are only achieved if they do not interfere with higher priority ones.
    [Show full text]
  • The North American Robotics Market First Half of 2015 Results
    The North American Robotics Market First Half of 2015 Results This report is based on data supplied to RIA by its member companies. The numbers represent the industrial robot units ordered and shipped, plus the dollar value added to the total robot system. RIA does not include numbers that other countries reporting to the International Federation of Robotics might include as robot units; e.g., RIA does not include four axis chip placement devices in standard electronic assembly machines. Table of Contents 1. First Half of 2015 News Release 2. First Half of 2015 – Robot Applications — New Orders First Half of 2015 – Robot Applications — Shipments 3. 2015 vs. 2014 First Half Totals Comparison: New Orders and Shipments — Units New Orders and Shipments — Dollars 900 Victors Way, Suite140 Contact: Bob Doyle Ann Arbor, Michigan 48108 USA Director of Communications Telephone: (734) 994-6088 (734) 994-6088 Fax: (734) 994-3338 [email protected] www.robotics.org PRESS RELEASE North American Robotics Market Sets New Records in First Half of 2015 (Ann Arbor, Michigan, USA – August 3, 2015) The North American robotics market is off to its fastest start ever in 2015, according to new statistics released from Robotic Industries Association (RIA), the industry’s trade group. A record 14,232 robots, valued at $840 million were ordered from North American robotics companies in the first half of 2015, an increase of one percent in units and seven percent in revenue over the same period in 2014, which held the previous record. “We’re encouraged by the continued strength in the North American robotics market,” said Jeff Burnstein, President of RIA.
    [Show full text]
  • Alfredo Weitzenfeld CV P.1
    Prof. Alfredo Weitzenfeld CV p.1 Alfredo Weitzenfeld Professor Department of Computer Science and Engineering College of Engineering University of South Florida 4202 E. Fowler Ave., ENB314 Tampa, FL 33620-5399 Email: [email protected] Web: http://weitzenfeld.robolat.org Advisor: USF Robobulls http://www.usfrobobulls.org Executive Advisory Board: Journal of Intelligent & Robotic Systems http://www.springer.com/engineering/robotics/journal/10846 Executive Advisory Board: Latin American Robotics Council http://ewh.ieee.org/reg/9/robotica/ Internal Advisory Council: RoboCup Federation http://wiki.robocup.org/wiki/Organization_of_RoboCup#Internal_Advisory_Board Internal Advisory Board: Mexican Robotics Federation www.femexrobotica.org Research Interests Biologically-inspired Robotics, Cognitive Robotics, Humanoid Robots, Multi-Robot Systems, Human-Robot Interaction, and Neural Networks. Education PhD 1992, Computer Science, University of Southern California, Los Angeles, CA. Thesis: A Unified Computational Model for Schemas and Neural Networks in Concurrent Object-Oriented Programming, Advisor: Michael Arbib. MS 1985, Computer Engineering, University of Southern California, Los Angeles, CA. BS 1982, Electrical Engineering, TECHNION, Israel Institute of Technology, Haifa, Israel. Faculty Professor 2014-present, Computer Science and Engineering Department, College of Engineering, University of South Florida, Tampa, FL. Professor 2009-2014, Division of Information Technology, College of Engineering, University of South Florida, Lakeland, FL. Prof. Alfredo Weitzenfeld CV p.2 Visiting Summer 2010, Engineering, Polytech Marseille, France. Professor Visiting 2006-2008, Computer Science and Engineering Department, College of Professor Engineering, University of South Florida, Tampa, FL. Visiting Summer 2005, Computer Engineering Department, University of California, Professor Santa Cruz, CA. Visiting Summer 2004, Information and Computer Science Department, University of Professor California, Irvine, CA.
    [Show full text]
  • State-Of-The-Art of Intelligent Minimally Invasive Surgical Robots
    Front. Med. 2020, 14(4): 404–416 https://doi.org/10.1007/s11684-020-0743-3 REVIEW State-of-the-art of intelligent minimally invasive surgical robots Masakatsu G. Fujie, Bo Zhang (✉) Future Robotics Organization, Waseda University, Tokyo 1620044, Japan; Beijing Advanced Innovation Centre for Intelligent Robots and Systems, Beijing Institute of Technology, Beijing 100081, China © The Author(s) 2020. This article is published with open access at link.springer.com and journal.hep.com.cn 2020 Abstract A number of developed countries are rapidly turning into super-aged societies. Consequently, the demand for reduced surgical invasiveness and enhanced efficiency in the medical field has increased due to the need to reduce the physical burden on older patients and shorten their recovery period. Intelligent surgical robot systems offer high precision, high safety, and reduced invasiveness. This paper presents a review of current intelligent surgical robot systems. The history of robots and three types of intelligent surgical robots are discussed. The problems with current surgical robot systems are then analyzed. Several aspects that should be considered in designing new surgical systems are discussed in detail. The paper ends with a summary of the work and a discussion of future prospects for surgical robot development. Keywords robot history; medical robot; surgical robot; radiofrequency ablation; organ model Introduction types of patients to live independent and rewarding lives. The use of new surgical equipment also reduce pain and Personal robots have long been expected to be used in improve patients’ subsequent quality of life. practical applications. However, this expectation has yet to The increase in the elderly population has expanded the materialize because of two factors.
    [Show full text]