2CVBpy Example Script for AQS12 Calibration - Use Case 1.
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.
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
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
25def print_trafo(trafo: cvb.AffineMatrix3D) ->
None:
26 print(
"Estimated transformation:")
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)}]]")
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}")
54def print_point_3d_list(points: list[
cvb.Point3D]) ->
None:
57 data_list.append(f
"[{p.x}, {p.y}, {p.z}]")
59 print(f
"[{delimiter.join(data_list)}]")
62def print_residuals(points: list[
cvb.Point3D]) ->
None:
64 print_point_3d_list(points)
67def print_aqs12_points(points: list[
cvb.Point3D]) ->
None:
68 print(
"AQS12 points:")
69 print_point_3d_list(points)
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):
102print(
"Estimation of homography and affine transformation (correcting an "
103 "inclined laser plane)")
106print(
"Loading range map.")
108 "tutorial",
"Metric",
"Images",
109 "RangeMapCalibrationPattern.tif")
112print(f
"Range map loaded with size of {range_map.width} x {range_map.height} "
113 f
"from {range_map_file}.")
116aqs12 = create_aqs12()
120print(
"Estimating homography and affine matrix.")
122 cvb.foundation.SegmentationMethod.KmeansClustering)
126 range_map.planes[0], segmentor, config)
128transformation_, transformation_parameters_ = \
129 calibrator_.correction_of_laser_plane_inclination
133 print_trafo(transformation_)
135print_residuals(residuals_)
137if transformation_parameters_:
138 print_trafo_parameters(transformation_parameters_)
141desired_accuracy_ = 0.05
142if check_accuracy(residuals_, desired_accuracy_):
143 print(
"The calibration was successful and accuracy is < "
144 f
"{desired_accuracy_} mm.")
147 print(
"Creating calibrated point cloud.")
149 range_map.planes[0], calibrator_,
150 cvb.PointCloudFlags.Float | cvb.PointCloudFlags.XYZConfidence)
154 cloud.save(
"cloud.ply")
156 print(
"Results do not have desired accuracy. Check face segmentation and "
157 "extracted AQS12 points...")
160 print(
"Segmenting AQ12 faces on range map.")
161 faces_aqs12 = segmentor.face_segmentation_from_piece(range_map.planes[0])
165 faces_aqs12.save(
"AQS12faces.bmp")
168 print(
"Extracting AQ12 corner points on range map.")
169 points_aqs12 = segmentor.extract_projected_points_from_piece(
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