aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThéo de la Hogue2024-03-11 17:18:42 +0100
committerThéo de la Hogue2024-03-11 17:18:42 +0100
commit6ebb4b5e418a0a69fce423eccfa35bcbb6502b70 (patch)
tree2da61e83bb619e5441c1b00bb8f0259c0474d608 /docs
parent78d2f6801e2b1c80d4685c9fb3186c205b7dc9e6 (diff)
downloadargaze-6ebb4b5e418a0a69fce423eccfa35bcbb6502b70.zip
argaze-6ebb4b5e418a0a69fce423eccfa35bcbb6502b70.tar.gz
argaze-6ebb4b5e418a0a69fce423eccfa35bcbb6502b70.tar.bz2
argaze-6ebb4b5e418a0a69fce423eccfa35bcbb6502b70.tar.xz
removing property decorator to method that was not an object property but an object status.
Diffstat (limited to 'docs')
-rw-r--r--docs/user_guide/aruco_markers_pipeline/advanced_topics/optic_parameters_calibration.md4
-rw-r--r--docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/user_guide/aruco_markers_pipeline/advanced_topics/optic_parameters_calibration.md b/docs/user_guide/aruco_markers_pipeline/advanced_topics/optic_parameters_calibration.md
index 148a910..c5cecac 100644
--- a/docs/user_guide/aruco_markers_pipeline/advanced_topics/optic_parameters_calibration.md
+++ b/docs/user_guide/aruco_markers_pipeline/advanced_topics/optic_parameters_calibration.md
@@ -72,13 +72,13 @@ aruco_detector = ArUcoDetector.ArUcoDetector(dictionary=aruco_dictionary)
aruco_detector.detect_board(image, expected_aruco_board, expected_aruco_board.markers_number)
# If all board corners are detected
- if aruco_detector.board_corners_number == expected_aruco_board.corners_number:
+ if aruco_detector.board_corners_number() == expected_aruco_board.corners_number:
# Draw board corners to show that board tracking succeeded
aruco_detector.draw_board(image)
# Append tracked board data for further calibration processing
- aruco_optic_calibrator.store_calibration_data(aruco_detector.board_corners, aruco_detector.board_corners_identifier)
+ aruco_optic_calibrator.store_calibration_data(aruco_detector.board_corners(), aruco_detector.board_corners_identifier())
# Start optic calibration processing for Full HD image resolution
print('Calibrating optic...')
diff --git a/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md b/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
index 30787b5..04d6a2f 100644
--- a/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
+++ b/docs/user_guide/aruco_markers_pipeline/advanced_topics/scripting.md
@@ -89,13 +89,13 @@ for name, aruco_scene in aruco_camera.scenes.items():
...
# Do something with detected_markers
- ... aruco_camera.aruco_detector.detected_markers
+ ... aruco_camera.aruco_detector.detected_markers()
```
Let's understand the meaning of each returned data.
-### *aruco_camera.aruco_detector.detected_markers*
+### *aruco_camera.aruco_detector.detected_markers()*
A dictionary containing all detected markers provided by [ArUcoDetector](../../../argaze.md/#argaze.ArUcoMarkers.ArUcoDetector) class.