#ifndef FAST_GICP_CUDA_COMPUTE_MAHALANOBIS_CUH #define FAST_GICP_CUDA_COMPUTE_MAHALANOBIS_CUH #include #include #include #include namespace fast_gicp { namespace cuda { void compute_mahalanobis( const thrust::device_vector& src_points, const thrust::device_vector& src_covs, const GaussianVoxelMap& voxelmap, const thrust::device_vector& voxel_correspondences, const Eigen::Isometry3f& linearized_x, thrust::device_vector& mahalanobis ); } } // namespace fast_gicp #endif