Cost Functions
- pycolmap.cost_functions.ReprojErrorCost(*args, **kwargs)
Overloaded function.
ReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"]) → ceres::CostFunction
Reprojection error.
ReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D_cov: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 2]"], point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"]) → ceres::CostFunction
Reprojection error with 2D detection noise.
ReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"], cam_from_world: pycolmap.Rigid3d) → ceres::CostFunction
Reprojection error with constant camera pose.
ReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D_cov: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 2]"], point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"], cam_from_world: pycolmap.Rigid3d) → ceres::CostFunction
Reprojection error with constant camera pose and 2D detection noise.
ReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"], point3D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) → ceres::CostFunction
Reprojection error with constant 3D point.
ReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D_cov: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 2]"], point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"], point3D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) → ceres::CostFunction
Reprojection error with constant 3D point and 2D detection noise.
- pycolmap.cost_functions.RigReprojErrorCost(*args, **kwargs)
Overloaded function.
RigReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"]) → ceres::CostFunction
Reprojection error for camera rig.
RigReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D_cov: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 2]"], point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"]) → ceres::CostFunction
Reprojection error for camera rig with 2D detection noise.
RigReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"], cam_from_rig: pycolmap.Rigid3d) → ceres::CostFunction
Reprojection error for camera rig with constant cam-from-rig pose.
RigReprojErrorCost(camera_model_id: pycolmap.CameraModelId, point2D_cov: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 2]"], point2D: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[2, 1]"], cam_from_rig: pycolmap.Rigid3d) → ceres::CostFunction
Reprojection error for camera rig with constant cam-from-rig pose and 2D detection noise.
- pycolmap.cost_functions.SampsonErrorCost(
- cam_ray1: Annotated[numpy.typing.ArrayLike, numpy.float64, '[3, 1]'],
- cam_ray2: Annotated[numpy.typing.ArrayLike, numpy.float64, '[3, 1]'],
Sampson error for two-view geometry.
- pycolmap.cost_functions.AbsolutePosePriorCost(*args, **kwargs)
Overloaded function.
AbsolutePosePriorCost(cam_from_world_prior: pycolmap.Rigid3d) → ceres::CostFunction
6-DoF error on the absolute camera pose.
AbsolutePosePriorCost(cam_cov_from_world_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[6, 6]"], cam_from_world_prior: pycolmap.Rigid3d) → ceres::CostFunction
6-DoF error on the absolute camera pose with prior covariance.
- pycolmap.cost_functions.AbsolutePosePositionPriorCost(*args, **kwargs)
Overloaded function.
AbsolutePosePositionPriorCost(position_in_world_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) → ceres::CostFunction
3-DoF error on the absolute camera pose’s position.
AbsolutePosePositionPriorCost(position_cov_in_world_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 3]"], position_in_world_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"]) → ceres::CostFunction
3-DoF error on the absolute camera pose’s position with prior covariance.
- pycolmap.cost_functions.RelativePosePriorCost(*args, **kwargs)
Overloaded function.
RelativePosePriorCost(i_from_j_prior: pycolmap.Rigid3d) → ceres::CostFunction
6-DoF error between two absolute camera poses based on a prior relative pose.
RelativePosePriorCost(i_cov_from_j_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[6, 6]"], i_from_j_prior: pycolmap.Rigid3d) → ceres::CostFunction
6-DoF error between two absolute camera poses based on a prior relative pose with prior covariance.
- pycolmap.cost_functions.Point3DAlignmentCost(*args, **kwargs)
Overloaded function.
Point3DAlignmentCost(point_in_b_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"], use_log_scale: bool = True) → ceres::CostFunction
Error between 3D points transformed by a 3D similarity transform.
Point3DAlignmentCost(point_cov_in_b_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 3]"], point_in_b_prior: typing.Annotated[numpy.typing.ArrayLike, numpy.float64, "[3, 1]"], use_log_scale: bool = True) → ceres::CostFunction
Error between 3D points transformed by a 3D similarity transform. with prior covariance