Open3D (C++ API)  0.17.0
NonZero.h
Go to the documentation of this file.
1// ----------------------------------------------------------------------------
2// - Open3D: www.open3d.org -
3// ----------------------------------------------------------------------------
4// Copyright (c) 2018-2023 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_CUDA_MODULE
21Tensor NonZeroCUDA(const Tensor& src);
22#endif
23
24} // namespace kernel
25} // namespace core
26} // namespace open3d
Tensor NonZeroCPU(const Tensor &src)
Definition: NonZeroCPU.cpp:19
Tensor NonZero(const Tensor &src)
Definition: NonZero.cpp:18
Definition: PinholeCameraIntrinsic.cpp:16