aboutsummaryrefslogtreecommitdiff
path: root/docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md
diff options
context:
space:
mode:
authorThéo de la Hogue2024-04-17 17:04:38 +0200
committerThéo de la Hogue2024-04-17 17:04:38 +0200
commitee10651a9aa0d87fa323423d1a7489798e083b90 (patch)
tree3198f864c5fe26fca64d6ebd37dbc5a83d263f90 /docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md
parent9958a965725764aee7150a67d9f63e241b4c345e (diff)
downloadargaze-ee10651a9aa0d87fa323423d1a7489798e083b90.zip
argaze-ee10651a9aa0d87fa323423d1a7489798e083b90.tar.gz
argaze-ee10651a9aa0d87fa323423d1a7489798e083b90.tar.bz2
argaze-ee10651a9aa0d87fa323423d1a7489798e083b90.tar.xz
Improving orthographic and grammar.
Diffstat (limited to 'docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md')
-rw-r--r--docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md b/docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md
index 7bbfc63..625f257 100644
--- a/docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md
+++ b/docs/user_guide/aruco_marker_pipeline/advanced_topics/optic_parameters_calibration.md
@@ -7,7 +7,7 @@ A camera device have to be calibrated to compensate its optical distorsion.
## Print calibration board
-The first step to calibrate a camera is to create an [ArUcoBoard](../../../argaze.md/#argaze.ArUcoMarker.ArUcoBoard) like in the code below:
+The first step to calibrating a camera is to create an [ArUcoBoard](../../../argaze.md/#argaze.ArUcoMarker.ArUcoBoard) like in the code below:
```python
from argaze.ArUcoMarker import ArUcoMarkerDictionary, ArUcoBoard
@@ -23,13 +23,13 @@ aruco_board.save('./calibration_board.png', 300)
```
!!! note
- There is **A3_DICT_APRILTAG_16h5_3cm_35cmx25cm.pdf** file located in *./src/argaze/ArUcoMarker/utils/* folder ready to be printed on A3 paper sheet.
+ There is **A3_DICT_APRILTAG_16h5_3cm_35cmx25cm.pdf** file located in *./src/argaze/ArUcoMarker/utils/* folder ready to be printed on an A3 paper sheet.
-Let's print the calibration board before to go further.
+Let's print the calibration board before going further.
## Capture board pictures
-Then, the calibration process needs to make many different captures of an [ArUcoBoard](../../../argaze.md/#argaze.ArUcoMarker.ArUcoBoard) through the camera and then, pass them to an [ArUcoDetector](../../../argaze.md/#argaze.ArUcoMarker.ArUcoDetector.ArUcoDetector) instance to detect board corners and store them as calibration data into an [ArUcoOpticCalibrator](../../../argaze.md/#argaze.ArUcoMarker.ArUcoOpticCalibrator) for final calibration process.
+Then, the calibration process needs to make many different captures of an [ArUcoBoard](../../../argaze.md/#argaze.ArUcoMarker.ArUcoBoard) through the camera and then, pass them to an [ArUcoDetector](../../../argaze.md/#argaze.ArUcoMarker.ArUcoDetector.ArUcoDetector) instance to detect board corners and store them as calibration data into an [ArUcoOpticCalibrator](../../../argaze.md/#argaze.ArUcoMarker.ArUcoOpticCalibrator) for the final calibration process.
![Calibration step](../../../img/optic_calibration_step.png)