Skip to content

Commit fe9d667

Browse files
authored
Change licence to MIT (#67)
* Change licence to MIT * Fix warnings * Make sure libQGLViewer licence is preserved
1 parent 886efb3 commit fe9d667

File tree

109 files changed

+2112
-1684
lines changed

Some content is hidden

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

109 files changed

+2112
-1684
lines changed

Diff for: CMakeLists.txt

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

Diff for: LICENCE.txt

+19-678
Large diffs are not rendered by default.

Diff for: config/cmake_config.h.in

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

521
#ifndef SRC_DEPTH_CLUSTERING_CONFIG_CMAKE_CONFIG_H_
622
#define SRC_DEPTH_CLUSTERING_CONFIG_CMAKE_CONFIG_H_

Diff for: examples/ros_nodes/CMakeLists.txt

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

Diff for: examples/ros_nodes/save_clusters_node.cpp

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#include <ros/ros.h>
1722

Diff for: examples/ros_nodes/show_objects_node.cpp

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#include <ros/ros.h>
1722

Diff for: examples/simple_nodes/CMakeLists.txt

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

Diff for: examples/simple_nodes/show_objects_kitti.cpp

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#include <stdio.h>
1722

Diff for: examples/simple_nodes/show_objects_moosmann.cpp

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#include <stdio.h>
1722

Diff for: package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<maintainer email="[email protected]">Igor Bogoslavskyi</maintainer>
88

9-
<license>GPLv3</license>
9+
<license>MIT</license>
1010

1111
<buildtool_depend>catkin</buildtool_depend>
1212
<build_depend>roscpp</build_depend>

Diff for: src/CMakeLists.txt

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

Diff for: src/clusterers/abstract_clusterer.h

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#ifndef SRC_CLUSTERERS_ABSTRACT_CLUSTERER_H_
1722
#define SRC_CLUSTERERS_ABSTRACT_CLUSTERER_H_

Diff for: src/clusterers/euclidean_clusterer.h

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#ifndef SRC_CLUSTERERS_EUCLIDEAN_CLUSTERER_H_
1722
#define SRC_CLUSTERERS_EUCLIDEAN_CLUSTERER_H_

Diff for: src/clusterers/image_based_clusterer.h

+19-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
// Copyright (C) 2017 I. Bogoslavskyi, C. Stachniss, University of Bonn
2-
3-
// This program is free software: you can redistribute it and/or modify it
4-
// under the terms of the GNU General Public License as published by the Free
5-
// Software Foundation, either version 3 of the License, or (at your option)
6-
// any later version.
7-
8-
// This program is distributed in the hope that it will be useful, but WITHOUT
9-
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10-
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11-
// more details.
12-
13-
// You should have received a copy of the GNU General Public License along
14-
// with this program. If not, see <http://www.gnu.org/licenses/>.
1+
// Copyright (C) 2020 I. Bogoslavskyi, C. Stachniss
2+
//
3+
// Permission is hereby granted, free of charge, to any person obtaining a
4+
// copy of this software and associated documentation files (the "Software"),
5+
// to deal in the Software without restriction, including without limitation
6+
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
// and/or sell copies of the Software, and to permit persons to whom the
8+
// Software is furnished to do so, subject to the following conditions:
9+
//
10+
// The above copyright notice and this permission notice shall be included in
11+
// all copies or substantial portions of the Software.
12+
//
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
// DEALINGS IN THE SOFTWARE.
1520

1621
#ifndef SRC_CLUSTERERS_IMAGE_BASED_CLUSTERER_H_
1722
#define SRC_CLUSTERERS_IMAGE_BASED_CLUSTERER_H_

0 commit comments

Comments
 (0)