In Halcon's sample camera_calibration_multi_image.hdev
there is following code:
image_points_to_world_plane (CamParam, Pose, Row, Col, 'mm', X1, Y1)
distance_pp (X1[0:11], Y1[0:11], X1[1:12], Y1[1:12], Distance)
Documentation says that x and y contain the X
and Y
coordinates of the points in the world coordinate system. So if Col and Row can be arrays, X1 and Y1 also have to be arrays.. but in the next line, they are accessed like this:X1[0:11]
and I cant figure out what this means.. what 0 and 11 refer to since its simply a list of 12 points in this sample...