tsdf_buffer.h
Go to the documentation of this file.
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2010-2011, Willow Garage, Inc.
6  *
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of Willow Garage, Inc. nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  */
37 
38 #ifndef TSDF_BUFFER_STRUCT_H_
39 #define TSDF_BUFFER_STRUCT_H_
40 
41 #include <cuda_runtime.h>
42 //#include <boost/graph/buffer_concepts.hpp>
43 
44 
45 namespace kfusion
46 {
48  struct tsdf_buffer
49  {
54  ushort2* tsdf_memory_end;
58  int3 origin_GRID;
62  float3 origin_metric;
64  float3 volume_size; //3.0
66  int3 voxels_size; //512
67 
70  {
72  origin_GRID.x = 0; origin_GRID.y = 0; origin_GRID.z = 0;
74  origin_metric.x = 0.f; origin_metric.y = 0.f; origin_metric.z = 0.f;
75  volume_size.x = 3.f; volume_size.y = 3.f; volume_size.z = 3.f;
76  voxels_size.x = 512; voxels_size.y = 512; voxels_size.z = 512;
77  }
78 
79  };
80 }
81 
82 #endif /*TSDF_BUFFER_STRUCT_H_*/
kfusion::tsdf_buffer::tsdf_memory_start
ushort2 * tsdf_memory_start
Address of the first element of the TSDF volume in memory.
Definition: tsdf_buffer.h:52
kfusion::tsdf_buffer::tsdf_rolling_buff_origin
ushort2 * tsdf_rolling_buff_origin
Memory address of the origin of the rolling buffer. MUST BE UPDATED AFTER EACH SHIFT.
Definition: tsdf_buffer.h:56
kfusion::tsdf_buffer::tsdf_buffer
tsdf_buffer()
Default constructor.
Definition: tsdf_buffer.h:69
kfusion::tsdf_buffer::volume_size
float3 volume_size
Size of the volume, in meters.
Definition: tsdf_buffer.h:64
kfusion::tsdf_buffer::voxels_size
int3 voxels_size
Number of voxels in the volume, per axis.
Definition: tsdf_buffer.h:66
kfusion::tsdf_buffer::tsdf_memory_end
ushort2 * tsdf_memory_end
Address of the last element of the TSDF volume in memory.
Definition: tsdf_buffer.h:54
kfusion::tsdf_buffer::origin_GRID_global
float3 origin_GRID_global
Cube origin in world coordinates.
Definition: tsdf_buffer.h:60
kfusion
Utility.
Definition: capture.hpp:8
kfusion::tsdf_buffer::origin_metric
float3 origin_metric
Current metric origin of the cube, in world coordinates.
Definition: tsdf_buffer.h:62
kfusion::tsdf_buffer
Structure to handle buffer addresses.
Definition: tsdf_buffer.h:48
kfusion::tsdf_buffer::origin_GRID
int3 origin_GRID
Internal cube origin for rollign buffer.
Definition: tsdf_buffer.h:58


lvr2
Author(s): Thomas Wiemann , Sebastian Pütz , Alexander Mock , Lars Kiesow , Lukas Kalbertodt , Tristan Igelbrink , Johan M. von Behren , Dominik Feldschnieders , Alexander Löhr
autogenerated on Wed Mar 2 2022 00:37:25