Skip to content

Commit ef0de07

Browse files
author
hanhaomin
committed
add
0 parents  commit ef0de07

File tree

575 files changed

+211903
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+211903
-0
lines changed

CMakeLists.txt

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
2+
3+
project(normal_distributions_transform)
4+
5+
set(CMAKE_CXX_STANDARD 11)
6+
7+
FIND_PACKAGE(PCL 1.7 REQUIRED)
8+
find_package(catkin REQUIRED COMPONENTS
9+
roscpp
10+
rospy
11+
tf
12+
geometry_msgs
13+
)
14+
include_directories(/opt/holo/3rdparty/include/pcl-1.8)
15+
include_directories(
16+
${catkin_INCLUDE_DIRS}
17+
)
18+
19+
20+
include_directories(${PCL_INCLUDE_DIRS})
21+
link_directories(${PCL_LIBRARY_DIRS})
22+
add_definitions(${PCL_DEFINITIONS})
23+
24+
25+
add_executable(normal_distributions_transform normal_distributions_transform.cpp )
26+
target_link_libraries (normal_distributions_transform ${PCL_LIBRARIES} ${catkin_LIBRARIES})

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018 AdamShan
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# NDT_PCL_demo
2+
使用PCL实现正态分布变换配准的例子
3+
4+
使用:
5+
6+
```bash
7+
cd build
8+
cmake ..
9+
make
10+
./normal_distributions_transform cloud1.pcd cloud2.pcd
11+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
208.401,236.523/-5.44287,27.0961,3.85747/-5.44287,27.0961,224.473/0,1,0/0.523599/1325,540/41,52

0 commit comments

Comments
 (0)