Skip to content

add external sensors documentation to appendix #1159

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/modules/12_appendix/appendix_main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ Appendix
steering_motion_model
Kalmanfilter_basics
Kalmanfilter_basics_2
external_sensors

56 changes: 56 additions & 0 deletions docs/modules/12_appendix/external_sensors_main.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
External Sensors for Robots
============================

Introduction
------------

In recent years, the application of robotic technology has advanced,
particularly in areas such as autonomous vehicles and disaster response robots.
A crucial element in these technologies is external recognition—the robot's ability to understand its surrounding environment, identify safe zones, and detect moving objects using onboard sensors. Achieving effective external recognition involves various techniques, but equally important is the selection of appropriate sensors. Robots, like the sensors they employ, come in many forms, but external recognition sensors can be broadly categorized into three types. Developing an advanced external recognition system requires a thorough understanding of each sensor's principles and characteristics to determine their optimal application. This article summarizes the principles and features of these sensors for personal study purposes.

Laser Sensors
-------------

Laser sensors measure distances by utilizing light, commonly referred to as Light Detection and Ranging (LIDAR). They operate by emitting light towards an object and calculating the distance based on the time it takes for the reflected light to return, using the speed of light as a constant.

Radar Sensors
-------------

TBD


Monocular Cameras
-----------------

Monocular cameras utilize a single camera to recognize the external environment. Compared to other sensors, they can detect color and brightness information, making them primarily useful for object recognition. However, they face challenges in independently measuring distances to surrounding objects and may struggle in low-light or dark conditions.

Requirements for Cameras and Image Processing in Robotics
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

While camera sensors are widely used in applications like surveillance, deploying them in robotics necessitates meeting specific requirements:

1. High dynamic range to adapt to various lighting conditions
2. Wide measurement range
3. Capability for three-dimensional measurement through techniques like motion stereo
4. Real-time processing with high frame rates
5. Cost-effectiveness

Stereo Cameras
--------------

Stereo cameras employ multiple cameras to measure distances to surrounding objects. By knowing the positions and orientations of each camera and analyzing the disparity in the images (parallax), the distance to a specific point (the object represented by a particular pixel) can be calculated.

Characteristics of Stereo Cameras
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Advantages of stereo cameras include the ability to obtain high-precision and high-density distance information at close range, depending on factors like camera resolution and the distance between cameras (baseline). This makes them suitable for indoor robots that require precise shape recognition of nearby objects. Additionally, stereo cameras are relatively cost-effective compared to other sensors, leading to their use in consumer products like Subaru's EyeSight system. However, stereo cameras are less effective for long-distance measurements due to a decrease in accuracy proportional to the square of the distance. They are also susceptible to environmental factors such as lighting conditions.

Ultrasonic Sensors
------------------

Ultrasonic sensors are commonly used in indoor robots and some automotive autonomous driving systems. Their features include affordability compared to laser or radar sensors, the ability to detect very close objects, and the capability to sense materials like glass, which may be challenging for lasers or cameras. However, they have limitations such as shorter maximum measurement distances and lower resolution and accuracy.

References
----------

TBD