CVBpy 15.0
foundation/MetricCalibration
1"""
2CVBpy Example Script for AQS12 Calibration - Use Case 1.
3
4This example shows how to calibrate range maps acquired by a modular laser
5triangulation setup (camera and laser separated), where the intrinsic calibration
6parameters are not given.
7
8See also use case 1 described in the CVB Metric documentation:
9https://help.commonvisionblox.com/NextGen/15.0/md_theory_of_operation_tools__metric.html#calibration_setup
10
11This example program estimates homography and an affine transformation.
12The affine transformation:
13- corrects errors induced by an incline laser plane
14- corrects scaling in x, y, z
15- moves the point cloud to the coordinate system given by the reference
16points of the AQS12
17"""
18
19import os
20
21import cvb
22import cvb.foundation
23
24
25def print_trafo(trafo: cvb.AffineMatrix3D) -> None:
26 print("Estimated transformation:")
27 print("Translation:")
28 print(f"[{trafo.translation.x}, {trafo.translation.y}, "
29 f"{trafo.translation.z}]")
30 print("Transformation matrix:")
31 print(f"[[{trafo.matrix.at(0, 0)}, "
32 f"{trafo.matrix.at(0, 1)}, "
33 f"{trafo.matrix.at(0, 2)}],")
34 print(f"[{trafo.matrix.at(1, 0)}, "
35 f"{trafo.matrix.at(1, 1)}, "
36 f"{trafo.matrix.at(1, 2)}],")
37 print(f"[{trafo.matrix.at(2, 0)}, "
38 f"{trafo.matrix.at(2, 1)}, "
39 f"{trafo.matrix.at(2, 2)}]]")
40
41
42def print_trafo_parameters(atp: cvb.AffineTransformationParameters) -> None:
43 print("Rotation angles about X, Y, Z axis in degrees:")
44 print(f"{atp.rotation_angles.x}, {atp.rotation_angles.y}, "
45 f"{atp.rotation_angles.z}")
46 print("Shear Syx, Syz:")
47 print(f"{atp.s_yx}, {atp.s_yz}")
48 print("Inclination of laser plane about X, Z axis in degrees:")
49 print(f"{atp.inclination_x}, {atp.inclination_z}")
50 print("Scale in X, Y, Z:")
51 print(f"{atp.scale.x}, {atp.scale.y}, {atp.scale.z}")
52
53
54def print_point_3d_list(points: list[cvb.Point3D]) -> None:
55 data_list = list()
56 for p in points:
57 data_list.append(f"[{p.x}, {p.y}, {p.z}]")
58 delimiter = ",\n"
59 print(f"[{delimiter.join(data_list)}]")
60
61
62def print_residuals(points: list[cvb.Point3D]) -> None:
63 print("Residuals:")
64 print_point_3d_list(points)
65
66
67def print_aqs12_points(points: list[cvb.Point3D]) -> None:
68 print("AQS12 points:")
69 print_point_3d_list(points)
70
71
72def create_aqs12():
73 # list of known point coordinates of the AQS12
74 points = [
75 cvb.Point3D(20.0018, 44.9941, 15.0000),
76 cvb.Point3D(24.0018, 39.9942, 14.9994),
77 cvb.Point3D(23.9994, 24.9972, 15.0001),
78 cvb.Point3D(20.0021, 20.0035, 15.0011),
79 cvb.Point3D(15.9994, 25.0079, 15.0016),
80 cvb.Point3D(16.0000, 39.9919, 15.0010),
81 cvb.Point3D(20.0095, 59.9985, 4.9902),
82 cvb.Point3D(32.0093, 44.9958, 4.9909),
83 cvb.Point3D(32.0052, 19.9925, 4.9920),
84 cvb.Point3D(20.0021, 4.9961, 4.9939),
85 cvb.Point3D(8.0024, 19.9980, 5.0009),
86 cvb.Point3D(8.0065, 45.0009, 4.9984)]
87 return cvb.foundation.AQS12Piece(points, 0)
88
89
90def check_accuracy(residuals: list[cvb.Point3D], desired_accuracy: float):
91 for point in residuals:
92 if (abs(point.x) > desired_accuracy or
93 abs(point.y) > desired_accuracy or
94 abs(point.z) > desired_accuracy):
95 return False
96 return True
97
98
99# If you like to save intermediate and final results, turn this flag on:
100save = False
101
102print("Estimation of homography and affine transformation (correcting an "
103 "inclined laser plane)")
104
105# load range map of the calibration target AQS12
106print("Loading range map.")
107range_map_file = os.path.join(cvb.install_path(),
108 "tutorial", "Metric", "Images",
109 "RangeMapCalibrationPattern.tif")
110range_map = cvb.Image(range_map_file)
111
112print(f"Range map loaded with size of {range_map.width} x {range_map.height} "
113 f"from {range_map_file}.")
114
115# create calibration configuration object
116aqs12 = create_aqs12()
118
119# create AQS12 segmentor for the range maps
120print("Estimating homography and affine matrix.")
122 cvb.foundation.SegmentationMethod.KmeansClustering)
123
124# estimate calibration parameters
126 range_map.planes[0], segmentor, config)
127
128transformation_, transformation_parameters_ = \
129 calibrator_.correction_of_laser_plane_inclination
130
131# show result
132if transformation_:
133 print_trafo(transformation_)
134
135print_residuals(residuals_)
136
137if transformation_parameters_:
138 print_trafo_parameters(transformation_parameters_)
139
140# check residuals
141desired_accuracy_ = 0.05 # mm
142if check_accuracy(residuals_, desired_accuracy_):
143 print("The calibration was successful and accuracy is < "
144 f"{desired_accuracy_} mm.")
145
146 # create calibrated cloud
147 print("Creating calibrated point cloud.")
149 range_map.planes[0], calibrator_,
150 cvb.PointCloudFlags.Float | cvb.PointCloudFlags.XYZConfidence)
151
152 # save calibrated point cloud
153 if save:
154 cloud.save("cloud.ply")
155else:
156 print("Results do not have desired accuracy. Check face segmentation and "
157 "extracted AQS12 points...")
158
159 # segment AQS12 faces
160 print("Segmenting AQ12 faces on range map.")
161 faces_aqs12 = segmentor.face_segmentation_from_piece(range_map.planes[0])
162
163 # save image with segmented faces:
164 if save:
165 faces_aqs12.save("AQS12faces.bmp")
166
167 # extract AQS12 points on range map (might take some time...)
168 print("Extracting AQ12 corner points on range map.")
169 points_aqs12 = segmentor.extract_projected_points_from_piece(
170 range_map.planes[0])
171 print_aqs12_points(points_aqs12)
The Common Vision Blox image.
Definition: __init__.py:2097
Multi-purpose 3D vector class.
Definition: __init__.py:4322
Union[cvb.PointCloud, cvb.DensePointCloud, cvb.SparsePointCloud] create(cvb.ImagePlane range_map, cvb.Calibrator3D calibrator, int flags, Union[Type[cvb.PointCloud|cvb.DensePointCloud|cvb.SparsePointCloud]] point_cloud_type=DensePointCloud)
Creates a new Cartesian 3D point cloud from the given 2.5D range map image.
Definition: __init__.py:4701
Object to collect all input parameters for the AQS12 calibration piece.
Definition: __init__.py:76
cvb.foundation.AQS12RangeMapSegmentor create(int method)
Creates an AQS12 segmentor for range maps based on given segmentation method.
Definition: __init__.py:101
cvb.foundation.CalibrationConfiguration create(cvb.foundation.AQS12Piece aqs12)
Creates a calibration configuration object.
Definition: __init__.py:272
Common Vision Blox Foundation module for Python.
Definition: __init__.py:1
Tuple[cvb.LaserPlaneHomographyCalibrator3D, List[cvb.Point3D]] create_calibrator_from_aqs12_piece(cvb.ImagePlane image_plane, cvb.foundation.AQS12RangeMapSegmentor segmentor, cvb.foundation.CalibrationConfiguration config, Optional[cvb.Rect] aoi=None)
Calculates intrinsic calibration parameters from the given range map image of an AQS12 calibration pi...
Definition: __init__.py:2939
str install_path()
Directory Common Vision Blox has been installed to.
Definition: __init__.py:8318