Point Cloud Library (PCL)
1.15.1
Toggle main menu visibility
Loading...
Searching...
No Matches
kinfu_large_scale
include
pcl
gpu
kinfu_large_scale
tsdf_buffer.h
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
#pragma once
39
40
#include <cuda_runtime.h>
41
//#include <boost/graph/buffer_concepts.hpp>
42
43
namespace
pcl
44
{
45
namespace
gpu
46
{
47
namespace
kinfuLS
48
{
49
/** \brief Structure to handle buffer addresses */
50
struct
tsdf_buffer
51
{
52
/** \brief */
53
/** \brief Address of the first element of the TSDF volume in memory*/
54
short2*
tsdf_memory_start
;
55
/** \brief Address of the last element of the TSDF volume in memory*/
56
short2*
tsdf_memory_end
;
57
/** \brief Memory address of the origin of the rolling buffer. MUST BE UPDATED AFTER EACH SHIFT.*/
58
short2*
tsdf_rolling_buff_origin
;
59
/** \brief Internal cube origin for rollign buffer.*/
60
int3
origin_GRID
;
61
/** \brief Cube origin in world coordinates.*/
62
float3
origin_GRID_global
;
63
/** \brief Current metric origin of the cube, in world coordinates.*/
64
float3
origin_metric
;
65
/** \brief Size of the volume, in meters.*/
66
float3
volume_size
;
//3.0
67
/** \brief Number of voxels in the volume, per axis*/
68
int3
voxels_size
;
//512
69
70
/** \brief Default constructor*/
71
tsdf_buffer
()
72
{
73
tsdf_memory_start
=
nullptr
;
tsdf_memory_end
=
nullptr
;
tsdf_rolling_buff_origin
=
nullptr
;
74
origin_GRID
.x = 0;
origin_GRID
.y = 0;
origin_GRID
.z = 0;
75
origin_GRID_global
.x = 0.f;
origin_GRID_global
.y = 0.f;
origin_GRID_global
.z = 0.f;
76
origin_metric
.x = 0.f;
origin_metric
.y = 0.f;
origin_metric
.z = 0.f;
77
volume_size
.x = 3.f;
volume_size
.y = 3.f;
volume_size
.z = 3.f;
78
voxels_size
.x = 512;
voxels_size
.y = 512;
voxels_size
.z = 512;
79
}
80
81
};
82
}
83
}
84
}
pcl::gpu::kinfuLS
Definition
color_volume.h:53
pcl::gpu
Definition
device_array.h:45
pcl
Definition
convolution.h:46
pcl::gpu::kinfuLS::tsdf_buffer::tsdf_memory_start
short2 * tsdf_memory_start
Address of the first element of the TSDF volume in memory.
Definition
tsdf_buffer.h:54
pcl::gpu::kinfuLS::tsdf_buffer::tsdf_memory_end
short2 * tsdf_memory_end
Address of the last element of the TSDF volume in memory.
Definition
tsdf_buffer.h:56
pcl::gpu::kinfuLS::tsdf_buffer::tsdf_buffer
tsdf_buffer()
Default constructor.
Definition
tsdf_buffer.h:71
pcl::gpu::kinfuLS::tsdf_buffer::tsdf_rolling_buff_origin
short2 * tsdf_rolling_buff_origin
Memory address of the origin of the rolling buffer.
Definition
tsdf_buffer.h:58
pcl::gpu::kinfuLS::tsdf_buffer::voxels_size
int3 voxels_size
Number of voxels in the volume, per axis.
Definition
tsdf_buffer.h:68
pcl::gpu::kinfuLS::tsdf_buffer::volume_size
float3 volume_size
Size of the volume, in meters.
Definition
tsdf_buffer.h:66
pcl::gpu::kinfuLS::tsdf_buffer::origin_GRID
int3 origin_GRID
Internal cube origin for rollign buffer.
Definition
tsdf_buffer.h:60
pcl::gpu::kinfuLS::tsdf_buffer::origin_metric
float3 origin_metric
Current metric origin of the cube, in world coordinates.
Definition
tsdf_buffer.h:64
pcl::gpu::kinfuLS::tsdf_buffer::origin_GRID_global
float3 origin_GRID_global
Cube origin in world coordinates.
Definition
tsdf_buffer.h:62