pub struct HandEyeSolveOptions {
pub robust_loss: RobustLoss,
pub default_fix: CameraFixMask,
pub camera_overrides: Vec<Option<CameraFixMask>>,
pub fix_extrinsics: Vec<bool>,
pub fix_handeye: bool,
pub fix_target_poses: Vec<usize>,
pub relax_target_poses: bool,
pub refine_robot_poses: bool,
pub robot_rot_sigma: Real,
pub robot_trans_sigma: Real,
}Expand description
Solve options for hand-eye calibration.
Fields§
§robust_loss: RobustLossRobust loss applied to reprojection residuals.
default_fix: CameraFixMaskDefault mask for fixing camera parameters (applied to all cameras).
camera_overrides: Vec<Option<CameraFixMask>>Optional per-camera overrides (None = use default_fix).
fix_extrinsics: Vec<bool>Per-camera extrinsics masking (length must match num_cameras).
fix_handeye: boolFix hand-eye transform (for testing with known hand-eye).
fix_target_poses: Vec<usize>View indices to fix (legacy per-view target mode only).
relax_target_poses: boolLegacy mode: relax per-view target poses instead of a fixed target.
refine_robot_poses: boolRefine robot poses with per-view se(3) corrections and strong priors.
When enabled, delta_0 is fixed to zero for gauge consistency.
robot_rot_sigma: RealRobot rotation prior sigma (radians).
robot_trans_sigma: RealRobot translation prior sigma (meters).
Trait Implementations§
Source§impl Clone for HandEyeSolveOptions
impl Clone for HandEyeSolveOptions
Source§fn clone(&self) -> HandEyeSolveOptions
fn clone(&self) -> HandEyeSolveOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HandEyeSolveOptions
impl Debug for HandEyeSolveOptions
Source§impl Default for HandEyeSolveOptions
impl Default for HandEyeSolveOptions
Source§impl<'de> Deserialize<'de> for HandEyeSolveOptions
impl<'de> Deserialize<'de> for HandEyeSolveOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HandEyeSolveOptions
impl RefUnwindSafe for HandEyeSolveOptions
impl Send for HandEyeSolveOptions
impl Sync for HandEyeSolveOptions
impl Unpin for HandEyeSolveOptions
impl UnsafeUnpin for HandEyeSolveOptions
impl UnwindSafe for HandEyeSolveOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.