Open3D (C++ API)
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
UniformTSDFVolume.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - Open3D: www.open3d.org -
3 // ----------------------------------------------------------------------------
4 // The MIT License (MIT)
5 //
6 // Copyright (c) 2018 www.open3d.org
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
14 //
15 // The above copyright notice and this permission notice shall be included in
16 // all copies or substantial portions of the Software.
17 //
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 // IN THE SOFTWARE.
25 // ----------------------------------------------------------------------------
26 
27 #pragma once
28 
31 
32 namespace open3d {
33 
34 namespace geometry {
35 
36 class TSDFVoxel : public Voxel {
37 public:
38  TSDFVoxel() : Voxel() {}
39  TSDFVoxel(const Eigen::Vector3i &grid_index) : Voxel(grid_index) {}
40  TSDFVoxel(const Eigen::Vector3i &grid_index, const Eigen::Vector3d &color)
41  : Voxel(grid_index, color) {}
43 
44 public:
45  float tsdf_ = 0;
46  float weight_ = 0;
47 };
48 
49 } // namespace geometry
50 
51 namespace integration {
52 
53 class UniformTSDFVolume : public TSDFVolume {
54 public:
55  UniformTSDFVolume(double length,
56  int resolution,
57  double sdf_trunc,
58  TSDFVolumeColorType color_type,
59  const Eigen::Vector3d &origin = Eigen::Vector3d::Zero());
60  ~UniformTSDFVolume() override;
61 
62 public:
63  void Reset() override;
64  void Integrate(const geometry::RGBDImage &image,
65  const camera::PinholeCameraIntrinsic &intrinsic,
66  const Eigen::Matrix4d &extrinsic) override;
67  std::shared_ptr<geometry::PointCloud> ExtractPointCloud() override;
68  std::shared_ptr<geometry::TriangleMesh> ExtractTriangleMesh() override;
69 
71  std::shared_ptr<geometry::PointCloud> ExtractVoxelPointCloud() const;
72  std::shared_ptr<geometry::VoxelGrid> ExtractVoxelGrid() const;
73 
76  void IntegrateWithDepthToCameraDistanceMultiplier(
77  const geometry::RGBDImage &image,
78  const camera::PinholeCameraIntrinsic &intrinsic,
79  const Eigen::Matrix4d &extrinsic,
80  const geometry::Image &depth_to_camera_distance_multiplier);
81 
82  inline int IndexOf(int x, int y, int z) const {
83  return x * resolution_ * resolution_ + y * resolution_ + z;
84  }
85 
86  inline int IndexOf(const Eigen::Vector3i &xyz) const {
87  return IndexOf(xyz(0), xyz(1), xyz(2));
88  }
89 
90 public:
91  std::vector<geometry::TSDFVoxel> voxels_;
92  Eigen::Vector3d origin_;
93  double length_;
96 
97 private:
98  Eigen::Vector3d GetNormalAt(const Eigen::Vector3d &p);
99 
100  double GetTSDFAt(const Eigen::Vector3d &p);
101 };
102 
103 } // namespace integration
104 } // namespace open3d
int IndexOf(const Eigen::Vector3i &xyz) const
Definition: UniformTSDFVolume.h:86
TSDFVolumeColorType
Definition: TSDFVolume.h:37
~TSDFVoxel()
Definition: UniformTSDFVolume.h:42
Definition: UniformTSDFVolume.h:36
std::vector< geometry::TSDFVoxel > voxels_
Definition: UniformTSDFVolume.h:91
Contains the pinhole camera intrinsic parameters.
Definition: PinholeCameraIntrinsic.h:51
int resolution_
Definition: UniformTSDFVolume.h:94
Definition: TSDFVolume.h:50
Definition: RGBDImage.h:43
Definition: UniformTSDFVolume.h:53
int voxel_num_
Definition: UniformTSDFVolume.h:95
Eigen::Vector3d origin
Definition: FilePLY.cpp:284
Definition: PinholeCameraIntrinsic.cpp:34
TSDFVoxel()
Definition: UniformTSDFVolume.h:38
double length_
Definition: UniformTSDFVolume.h:93
Eigen::Vector3d origin_
Definition: UniformTSDFVolume.h:92
Definition: VoxelGrid.h:52
float weight_
Definition: UniformTSDFVolume.h:46
The Image class stores image with customizable width, height, num of channels and bytes per channel...
Definition: Image.h:53
float tsdf_
Definition: UniformTSDFVolume.h:45
TSDFVoxel(const Eigen::Vector3i &grid_index)
Definition: UniformTSDFVolume.h:39
int IndexOf(int x, int y, int z) const
Definition: UniformTSDFVolume.h:82
TSDFVoxel(const Eigen::Vector3i &grid_index, const Eigen::Vector3d &color)
Definition: UniformTSDFVolume.h:40