Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions docs/source/docs/calibration/calibration.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ The calibration data collected during calibration is specific to each physical c

## Calibration Tips

:::{warning}
The usage of chessboards can result in bad calibration results if multiple similar images are taken. We strongly recommend that teams use chArUco boards instead!
:::

Accurate camera calibration is required in order to get accurate pose measurements when using AprilTags and 3D mode. The tips below should help ensure success:

01. Ensure the images you take have the target in different positions and angles, with as big of a difference between angles as possible. It is important to make sure the target overlay still lines up with the board while doing this. Tilt no more than 45 degrees.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ public void createObjectPoints() {
objectPoints.push_back(new MatOfPoint3f(new Point3(boardXCoord, boardYCoord, 0.0)));
}
}
logger.warn("The usage of chessboards can result in bad calibration results if multiple similar images are taken. We strongly recommend that teams use chArUco boards instead!");
} else if (params.type() == UICalibrationData.BoardType.CHARUCOBOARD) {
board =
new CharucoBoard(
Expand Down