Open3D (C++ API)  0.19.0
Loading...
Searching...
No Matches
NonZero.h
Go to the documentation of this file.
1// ----------------------------------------------------------------------------
2// - Open3D: www.open3d.org -
3// ----------------------------------------------------------------------------
4// Copyright (c) 2018-2024 www.open3d.org
5// SPDX-License-Identifier: MIT
6// ----------------------------------------------------------------------------
7
8#pragma once
9
10#include "open3d/core/Tensor.h"
11
12namespace open3d {
13namespace core {
14namespace kernel {
15
16Tensor NonZero(const Tensor& src);
17
18Tensor NonZeroCPU(const Tensor& src);
19
20#ifdef BUILD_SYCL_MODULE
21Tensor NonZeroSYCL(const Tensor& src);
22#endif
23
24#ifdef BUILD_CUDA_MODULE
25Tensor NonZeroCUDA(const Tensor& src);
26#endif
27
28} // namespace kernel
29} // namespace core
30} // namespace open3d
Tensor NonZeroCPU(const Tensor &src)
Definition NonZeroCPU.cpp:19
Tensor NonZeroSYCL(const Tensor &src)
Definition NonZeroSYCL.cpp:21
Tensor NonZero(const Tensor &src)
Definition NonZero.cpp:18
Definition PinholeCameraIntrinsic.cpp:16