mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
* Refactor module links and improve code documentation. Updated documentation to rename "API" sections to "Code Link" for clarity and consistency. Enhanced docstrings for `circle_fitting` and `kmeans_clustering` functions, improving parameter descriptions and adding return value details. Fixed typos in function and file names in the ray casting grid map module. * Fix import typo in ray casting grid map test module. Corrected the import statement in the test file by updating the module's name to `ray_casting_grid_map` for consistency with the source file. This ensures proper functionality of the test suite.
18 lines
547 B
ReStructuredText
18 lines
547 B
ReStructuredText
Object shape recognition using circle fitting
|
|
---------------------------------------------
|
|
|
|
This is an object shape recognition using circle fitting.
|
|
|
|
.. image:: https://github.com/AtsushiSakai/PythonRoboticsGifs/raw/master/Mapping/circle_fitting/animation.gif
|
|
|
|
The blue circle is the true object shape.
|
|
|
|
The red crosses are observations from a ranging sensor.
|
|
|
|
The red circle is the estimated object shape using circle fitting.
|
|
|
|
Code Link
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
.. autofunction:: Mapping.circle_fitting.circle_fitting.circle_fitting
|