It is time to support the cameraIntrinsics function to accept a 3-by-3 intrinsic matrix K
cui,xingxing
le 6 Mar 2025 à 7:07
Dernière activité Réponse par Mike Croucher
le 7 Mar 2025 à 11:48
It is time to support the cameraIntrinsics function to accept a 3-by-3 intrinsic matrix K as an input parameter for constructing the object. Currently, the built-in cameraIntrinsics function can only be constructed by explicitly specifying focalLength, principalPoint, and imageSize. This approach has drawbacks, as it is not very intuitive. In most application scenarios, using the intrinsic matrix
K=[fx,0,cx;
0,fy,cy;
0,0,1]
is much more straightforward and effective!
intrinsics = cameraIntrinsics(K)
1 commentaire
Connectez-vous pour participer
Thanks for the idea. This has been reported to development as an enhancement request