45 float& inlier_residual,
47 const float depth_outlier_trunc,
48 const float depth_huber_delta);
61 float& inlier_residual,
63 const float depth_outlier_trunc,
64 const float intensity_huber_delta);
78 float& inlier_residual,
80 float depth_outlier_trunc,
81 const float depth_huber_delta,
82 const float intensity_huber_delta);
83 #ifdef BUILD_CUDA_MODULE 85 void ComputeOdometryResultPointToPlaneCUDA(
92 float& inlier_residual,
94 const float depth_outlier_trunc,
95 const float depth_huber_delta);
97 void ComputeOdometryResultIntensityCUDA(
108 float& inlier_residual,
110 const float depth_outlier_trunc,
111 const float intensity_huber_delta);
113 void ComputeOdometryResultHybridCUDA(
const core::Tensor& source_depth,
125 float& inlier_residual,
127 const float depth_outlier_trunc,
128 const float depth_huber_delta,
129 const float intensity_huber_delta);
Definition: PinholeCameraIntrinsic.cpp:35
void ComputeOdometryResultPointToPlaneCPU(const core::Tensor &source_vertex_map, const core::Tensor &target_vertex_map, const core::Tensor &target_normal_map, const core::Tensor &intrinsics, const core::Tensor &init_source_to_target, core::Tensor &delta, float &inlier_residual, int &inlier_count, const float depth_outlier_trunc, const float depth_huber_delta)
Definition: RGBDOdometryCPU.cpp:45
void ComputeOdometryResultIntensityCPU(const core::Tensor &source_depth, const core::Tensor &target_depth, const core::Tensor &source_intensity, const core::Tensor &target_intensity, const core::Tensor &target_intensity_dx, const core::Tensor &target_intensity_dy, const core::Tensor &source_vertex_map, const core::Tensor &intrinsics, const core::Tensor &init_source_to_target, core::Tensor &delta, float &inlier_residual, int &inlier_count, const float depth_outlier_trunc, const float intensity_huber_delta)
Definition: RGBDOdometryCPU.cpp:126
void ComputeOdometryResultHybridCPU(const core::Tensor &source_depth, const core::Tensor &target_depth, const core::Tensor &source_intensity, const core::Tensor &target_intensity, const core::Tensor &target_depth_dx, const core::Tensor &target_depth_dy, const core::Tensor &target_intensity_dx, const core::Tensor &target_intensity_dy, const core::Tensor &source_vertex_map, const core::Tensor &intrinsics, const core::Tensor &init_source_to_target, core::Tensor &delta, float &inlier_residual, int &inlier_count, const float depth_outlier_trunc, const float depth_huber_delta, const float intensity_huber_delta)
Definition: RGBDOdometryCPU.cpp:222