Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
M
multiTraj
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangdawei
multiTraj
Commits
f4c5968a
Commit
f4c5968a
authored
Dec 29, 2021
by
limingbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
addbab8e
Pipeline
#859
canceled with stages
Changes
2
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
93 additions
and
0 deletions
+93
-0
CMakeLists.txt.user
CMakeLists.txt.user
+0
-0
pcl_point_type.h
libs/utils/pcl_point_type.h
+93
-0
No files found.
CMakeLists.txt.user
0 → 100644
View file @
f4c5968a
This diff is collapsed.
Click to expand it.
libs/utils/pcl_point_type.h
0 → 100644
View file @
f4c5968a
//#pragma once
#define PCL_NO_PRECOMPILE
#ifndef PCL_POINT_TYPE_H
#define PCL_POINT_TYPE_H
#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
namespace
pcl
{
struct
PointInternal
{
PCL_ADD_POINT4D
PCL_ADD_RGB
float
intensity
;
float
ring
;
float
label
=
0
;
float
distance
;
double
timestamp
;
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// make sure our new allocators are aligned
}
EIGEN_ALIGN16
;
}
//end namespace pcl
POINT_CLOUD_REGISTER_POINT_STRUCT
(
pcl
::
PointInternal
,
(
float
,
x
,
x
)(
float
,
y
,
y
)(
float
,
z
,
z
)(
float
,
rgb
,
rgb
)
(
float
,
intensity
,
intensity
)(
float
,
ring
,
ring
)(
float
,
label
,
label
)
(
float
,
distance
,
distance
)(
double
,
timestamp
,
timestamp
))
typedef
pcl
::
PointInternal
Point
;
typedef
pcl
::
PointCloud
<
Point
>
PointCloud
;
/////////////////////////////////////////////////////////////
///
///
namespace
pcl
{
struct
PointRos
{
PCL_ADD_POINT4D
float
intensity
;
float
ring
;
float
label
=
0
;
float
timestamp
;
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// make sure our new allocators are aligned
}
EIGEN_ALIGN16
;
}
//end namespace pcl
POINT_CLOUD_REGISTER_POINT_STRUCT
(
pcl
::
PointRos
,
(
float
,
x
,
x
)(
float
,
y
,
y
)(
float
,
z
,
z
)
(
float
,
intensity
,
intensity
)(
float
,
ring
,
ring
)(
float
,
label
,
label
)
(
float
,
timestamp
,
timestamp
))
typedef
pcl
::
PointRos
PointRos
;
typedef
pcl
::
PointCloud
<
PointRos
>
PointCloudRos
;
/////////////////////////////////////////////////////////////
///
///
namespace
pcl
{
struct
PointExport
{
PCL_ADD_POINT4D
PCL_ADD_RGB
float
intensity
=
0
;
float
label
=
0
;
float
info
=
0
;
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// make sure our new allocators are aligned
}
EIGEN_ALIGN16
;
}
//end namespace pcl
POINT_CLOUD_REGISTER_POINT_STRUCT
(
pcl
::
PointExport
,
(
float
,
x
,
x
)(
float
,
y
,
y
)(
float
,
z
,
z
)(
float
,
rgb
,
rgb
)
(
float
,
intensity
,
intensity
)(
float
,
label
,
label
)(
float
,
info
,
info
))
typedef
pcl
::
PointExport
PointExport
;
typedef
pcl
::
PointCloud
<
PointExport
>
PointCloudExport
;
/////////////////////////////////////////////////////////////
namespace
pcl
{
struct
PointTemp1
{
PCL_ADD_POINT4D
float
intensity
;
float
ring
;
float
label
=
0
;
float
time
;
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// make sure our new allocators are aligned
}
EIGEN_ALIGN16
;
}
//end namespace pcl
POINT_CLOUD_REGISTER_POINT_STRUCT
(
pcl
::
PointTemp1
,
(
float
,
x
,
x
)(
float
,
y
,
y
)(
float
,
z
,
z
)
(
float
,
intensity
,
intensity
)(
float
,
ring
,
ring
)(
float
,
label
,
label
)
(
float
,
time
,
time
))
typedef
pcl
::
PointTemp1
PointTemp1
;
#endif // PCL_POINT_TYPE_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment