image_framework_ymj/include/open3d/ml/contrib/BallQuery.cuh

26 lines
966 B
Plaintext
Raw Normal View History

2024-12-06 16:25:16 +08:00
// ----------------------------------------------------------------------------
// - Open3D: www.open3d.org -
// ----------------------------------------------------------------------------
// Copyright (c) 2018-2023 www.open3d.org
// SPDX-License-Identifier: MIT
// ----------------------------------------------------------------------------
#pragma once
namespace open3d {
namespace ml {
namespace contrib {
__global__ void ball_query_kernel(int b,
int n,
int m,
float radius,
int nsample,
const float *__restrict__ new_xyz,
const float *__restrict__ xyz,
int *__restrict__ idx);
} // namespace contrib
} // namespace ml
} // namespace open3d