xiaohuits / camera_hand_eye_calibration

Calibrate camera parameters and hand-eye position all at once.
5 stars 3 forks source link

Unable to get extrinsic calibration results #1

Open arunkru1998 opened 11 months ago

arunkru1998 commented 11 months ago

I am trying to do calibration with the given package, it gives the intrinsic calibration results at the end but doesn't give extrinsic calibration. I downloaded opencv 4.7 from source for this.

Thanks

xiaohuits commented 11 months ago

I don't know your application needs. Is your camera mounted on a robot arm?

arunkru1998 commented 11 months ago

yes my camera is mounted on a URe5 robot. The camera I am using is a DSLR camera with a resolution of 61MP.

On Mon, Sep 25, 2023 at 10:24 AM Hui Xiao @.***> wrote:

I don't know your application needs. Is your camera mounted on a robot arm?

— Reply to this email directly, view it on GitHub https://urldefense.com/v3/__https://github.com/xiaohuits/camera_hand_eye_calibration/issues/1*issuecomment-1734172306__;Iw!!K-Hz7m0Vt54!mtsEIEwxUAHZaQFRng3tJM4gHRNNjpXWUuegOFIMIa-h7eIIUIEw9sDWeOa-4ETVO_eA5D9f1IneP65za2jwlhs$, or unsubscribe https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/A3LSZTS2RXD2WHL2DBM52FDX4G45JANCNFSM6AAAAAA5GMUZVQ__;!!K-Hz7m0Vt54!mtsEIEwxUAHZaQFRng3tJM4gHRNNjpXWUuegOFIMIa-h7eIIUIEw9sDWeOa-4ETVO_eA5D9f1IneP65zE2zEeg8$ . You are receiving this because you authored the thread.Message ID: @.***>

--

Arun Nandagopal

MSME Student (2022 – 2024),

The University of Washington.

xiaohuits commented 11 months ago

You need to put more clarity on what is "extrinsic" in your application. Are you talking about the relative pose of the Aruco board with respect to the camera coordinate system?

If that is your need, you can get it via any pose estimation algorithm with the provided camera matrix.

This package is intended to give you the intrinsic camera parameters and the relative pose between the robot end-effector and the camera coordinate system. The latter is the so-called hand-eye calibration.

arunkru1998 commented 11 months ago

Yes I am talking about the eye in hand calibration ( pose from eef to camera)

On Tue, 26 Sept, 2023, 3:20 pm Hui Xiao, @.***> wrote:

You need to put more clarity on what is "extrinsic" in your application. Are you talking about the relative pose of the Aruco board with respect to the camera coordinate system?

If that is your need, you can get it via any pose estimation algorithm with the provided camera matrix.

This package is intended to give you the intrinsic camera parameters and the relative pose between the robot end-effector and the camera coordinate system. The latter is the so-called hand-eye calibration https://urldefense.com/v3/__https://en.wikipedia.org/wiki/Hand**Beye_calibration_problem__;4oCT!!K-Hz7m0Vt54!gt1hsw4PTz_QFUuV8Vb7yWi_P-NCf5Km7bEUf3ZJOsJp_qgrrgr-umTvp1kb8z7ddA4-9TO1JAsAHVM4UZgz0Qg$ .

— Reply to this email directly, view it on GitHub https://urldefense.com/v3/__https://github.com/xiaohuits/camera_hand_eye_calibration/issues/1*issuecomment-1736381712__;Iw!!K-Hz7m0Vt54!gt1hsw4PTz_QFUuV8Vb7yWi_P-NCf5Km7bEUf3ZJOsJp_qgrrgr-umTvp1kb8z7ddA4-9TO1JAsAHVM4oo7tzSc$, or unsubscribe https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/A3LSZTV7SCZVN3VBIPPALBLX4NIJTANCNFSM6AAAAAA5GMUZVQ__;!!K-Hz7m0Vt54!gt1hsw4PTz_QFUuV8Vb7yWi_P-NCf5Km7bEUf3ZJOsJp_qgrrgr-umTvp1kb8z7ddA4-9TO1JAsAHVM41OyMn58$ . You are receiving this because you authored the thread.Message ID: @.***>

xiaohuits commented 11 months ago

what’s does your generated yaml file looks like?

arunkru1998 commented 10 months ago

camera matrix: [4289.414741994477, 0, 603.3704025848159; 0, 4266.728655266447, 227.3862944746829; 0, 0, 1] distortion coefficients: [-0.3063627800244836, -1.020080173649123, 0.005750013893702339, -0.00306748688277267, 0.06485380209214184] hand eye pose: translation: [0; 0; 0] hand eye pose: rotation: [1, 0, 0; 0, 1, 0; 0, 0, 1] [ INFO] [1698098940.549116554]: calibration saved to 'camera_hand_eye_calibration.yaml

arunkru1998 commented 10 months ago

sorry for the delay in the response, I was out on a conference and didn't have access to the robot. As you can see the hand eye pose estimate is always zero matrix for translation and a identity matrix for rotation

arunkru1998 commented 10 months ago

I ran this with the opencv 4.2 base version on ROS neotic, as I found the detection to be working well