diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1c3ff74deba..9ae3b3bfce5 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -214,6 +214,8 @@ jobs: env: BUILD_CUDA_MODULE: OFF + # TensorFlow v2.16 does not support Python 3.8 + BUILD_TENSORFLOW_OPS: ${{ matrix.python_version == '3.8' && 'OFF' || 'ON' }} OPEN3D_ML_ROOT: ${{ github.workspace }}/Open3D-ML steps: - name: Checkout source code diff --git a/.github/workflows/ubuntu-wheel.yml b/.github/workflows/ubuntu-wheel.yml index c55bc1d65c6..411fe6a37bb 100644 --- a/.github/workflows/ubuntu-wheel.yml +++ b/.github/workflows/ubuntu-wheel.yml @@ -153,7 +153,6 @@ jobs: uses: actions/checkout@v4 with: repository: isl-org/Open3D-ML - ref: ss/python-3.12 # remove before merge path: ${{ env.OPEN3D_ML_ROOT }} - name: Download wheels uses: actions/download-artifact@v4 diff --git a/3rdparty/googletest/googletest.cmake b/3rdparty/googletest/googletest.cmake index dd84c07c32c..afde49e2014 100644 --- a/3rdparty/googletest/googletest.cmake +++ b/3rdparty/googletest/googletest.cmake @@ -12,5 +12,5 @@ FetchContent_Declare( INSTALL_COMMAND "" ) -FetchContent_Populate(ext_googletest) +FetchContent_MakeAvailable(ext_googletest) FetchContent_GetProperties(ext_googletest SOURCE_DIR GOOGLETEST_SOURCE_DIR) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd14dcb339..7fb1cf1e1aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,7 +48,9 @@ - Support lowercase types when reading PCD files (PR #6930) - Fix visualization/draw ICP example and add warnings (PR #6933) - Unified cloud initializer pipeline for ICP (fixes segfault colored ICP) (PR #6942) +- Fix tensor EstimatePointWiseNormalsWithFastEigen3x3 (PR #6980) - Fix alpha shape reconstruction if alpha too small for point scale (PR #6998) +- Fix render to depth image on Apple Retina displays (PR #7001) ## 0.13 diff --git a/cmake/ShaderEncoder.cpp b/cmake/ShaderEncoder.cpp index 0f758c92798..5773c3c2438 100644 --- a/cmake/ShaderEncoder.cpp +++ b/cmake/ShaderEncoder.cpp @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include diff --git a/cmake/ShaderLinker.cpp b/cmake/ShaderLinker.cpp index 1daf832d97d..06c6d7b3809 100644 --- a/cmake/ShaderLinker.cpp +++ b/cmake/ShaderLinker.cpp @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include @@ -43,13 +24,13 @@ int main(int argc, char **argv) { argv[1]); return 1; } - + /* clang-format off */ fprintf(file_out, "// ----------------------------------------------------------------------------\n"); fprintf(file_out, "// - Open3D: www.open3d.org -\n"); fprintf(file_out, "// ----------------------------------------------------------------------------\n"); fprintf(file_out, "// The MIT License (MIT)\n"); fprintf(file_out, "//\n"); - fprintf(file_out, "// Copyright (c) 2018-2023 www.open3d.org\n"); + fprintf(file_out, "// Copyright (c) 2018-2024 www.open3d.org\n"); fprintf(file_out, "//\n"); fprintf(file_out, "// Permission is hereby granted, free of charge, to any person obtaining a copy\n"); fprintf(file_out, "// of this software and associated documentation files (the \"Software\"), to deal\n"); @@ -69,7 +50,8 @@ int main(int argc, char **argv) { fprintf(file_out, "// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n"); fprintf(file_out, "// IN THE SOFTWARE.\n"); fprintf(file_out, "// ----------------------------------------------------------------------------\n"); - + /* clang-format on */ + fprintf(file_out, "// Automatically generated header file for shader.\n"); fprintf(file_out, "\n"); fprintf(file_out, "#pragma once\n"); diff --git a/cmake/ispc_isas/ISADispatcher.c b/cmake/ispc_isas/ISADispatcher.c index 5c3e559d3fc..e78d5c61237 100644 --- a/cmake/ispc_isas/ISADispatcher.c +++ b/cmake/ispc_isas/ISADispatcher.c @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include @@ -54,4 +35,4 @@ int main() { printf("%s-i%dx%d", ToTargetString(GetISATarget()), GetISAElementWidth(), GetISAWidth()); return 0; -} \ No newline at end of file +} diff --git a/cmake/ispc_isas/ISADispatcher.ispc b/cmake/ispc_isas/ISADispatcher.ispc index bd5e5e4f59c..0767ebe931f 100644 --- a/cmake/ispc_isas/ISADispatcher.ispc +++ b/cmake/ispc_isas/ISADispatcher.ispc @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include "open3d/utility/ISAInfo.isph" diff --git a/cpp/apps/OfflineReconstruction/Config.h b/cpp/apps/OfflineReconstruction/Config.h index 9bb95df2093..a421a142b25 100644 --- a/cpp/apps/OfflineReconstruction/Config.h +++ b/cpp/apps/OfflineReconstruction/Config.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/OfflineReconstruction/DebugUtil.h b/cpp/apps/OfflineReconstruction/DebugUtil.h index aa10e95d934..0cd8ce90245 100644 --- a/cpp/apps/OfflineReconstruction/DebugUtil.h +++ b/cpp/apps/OfflineReconstruction/DebugUtil.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/OfflineReconstruction/FileSystemUtil.h b/cpp/apps/OfflineReconstruction/FileSystemUtil.h index 4ebc976e03c..c3d07767744 100644 --- a/cpp/apps/OfflineReconstruction/FileSystemUtil.h +++ b/cpp/apps/OfflineReconstruction/FileSystemUtil.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/OfflineReconstruction/LegacyReconstructionUtil.h b/cpp/apps/OfflineReconstruction/LegacyReconstructionUtil.h index 26d30bfe182..46796ef36a0 100644 --- a/cpp/apps/OfflineReconstruction/LegacyReconstructionUtil.h +++ b/cpp/apps/OfflineReconstruction/LegacyReconstructionUtil.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/OfflineReconstruction/OfflineReconstruction.cpp b/cpp/apps/OfflineReconstruction/OfflineReconstruction.cpp index 3e5d4efac05..fee3000c19e 100644 --- a/cpp/apps/OfflineReconstruction/OfflineReconstruction.cpp +++ b/cpp/apps/OfflineReconstruction/OfflineReconstruction.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/Open3DViewer/Open3DViewer.cpp b/cpp/apps/Open3DViewer/Open3DViewer.cpp index c84cce8ecc4..ce938acbcff 100644 --- a/cpp/apps/Open3DViewer/Open3DViewer.cpp +++ b/cpp/apps/Open3DViewer/Open3DViewer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/Open3DViewer/Open3DViewer.h b/cpp/apps/Open3DViewer/Open3DViewer.h index 4e6a933d420..d0d6bdc4f41 100644 --- a/cpp/apps/Open3DViewer/Open3DViewer.h +++ b/cpp/apps/Open3DViewer/Open3DViewer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/apps/Open3DViewer/Open3DViewer_mac.mm b/cpp/apps/Open3DViewer/Open3DViewer_mac.mm index 23811213b0e..9e40dd80c3c 100644 --- a/cpp/apps/Open3DViewer/Open3DViewer_mac.mm +++ b/cpp/apps/Open3DViewer/Open3DViewer_mac.mm @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #ifdef __APPLE__ diff --git a/cpp/benchmarks/Main.cpp b/cpp/benchmarks/Main.cpp index 6f645bd8b3a..ca2e66fe591 100644 --- a/cpp/benchmarks/Main.cpp +++ b/cpp/benchmarks/Main.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Copyright 2018 Google Inc. All rights reserved. diff --git a/cpp/benchmarks/benchmark_utilities/Rand.cpp b/cpp/benchmarks/benchmark_utilities/Rand.cpp index bd7de1bc552..b64ee2943d0 100644 --- a/cpp/benchmarks/benchmark_utilities/Rand.cpp +++ b/cpp/benchmarks/benchmark_utilities/Rand.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/benchmark_utilities/Rand.h b/cpp/benchmarks/benchmark_utilities/Rand.h index a86d4eaae05..7cefae1669a 100644 --- a/cpp/benchmarks/benchmark_utilities/Rand.h +++ b/cpp/benchmarks/benchmark_utilities/Rand.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/BinaryEW.cpp b/cpp/benchmarks/core/BinaryEW.cpp index d79427da0ba..86a7a487605 100644 --- a/cpp/benchmarks/core/BinaryEW.cpp +++ b/cpp/benchmarks/core/BinaryEW.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/HashMap.cpp b/cpp/benchmarks/core/HashMap.cpp index 7cc8087db74..0361afcb9f5 100644 --- a/cpp/benchmarks/core/HashMap.cpp +++ b/cpp/benchmarks/core/HashMap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/Linalg.cpp b/cpp/benchmarks/core/Linalg.cpp index f156a1f0c6d..7a4a3d6138b 100644 --- a/cpp/benchmarks/core/Linalg.cpp +++ b/cpp/benchmarks/core/Linalg.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/MemoryManager.cpp b/cpp/benchmarks/core/MemoryManager.cpp index cb684e38efd..fccca3de621 100644 --- a/cpp/benchmarks/core/MemoryManager.cpp +++ b/cpp/benchmarks/core/MemoryManager.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/ParallelFor.cpp b/cpp/benchmarks/core/ParallelFor.cpp index 693bc1312cb..15c6233022a 100644 --- a/cpp/benchmarks/core/ParallelFor.cpp +++ b/cpp/benchmarks/core/ParallelFor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/ParallelFor.ispc b/cpp/benchmarks/core/ParallelFor.ispc index 377d0aa914d..4d69e227241 100644 --- a/cpp/benchmarks/core/ParallelFor.ispc +++ b/cpp/benchmarks/core/ParallelFor.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/Reduction.cpp b/cpp/benchmarks/core/Reduction.cpp index 8256f60904e..1c019f29960 100644 --- a/cpp/benchmarks/core/Reduction.cpp +++ b/cpp/benchmarks/core/Reduction.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/UnaryEW.cpp b/cpp/benchmarks/core/UnaryEW.cpp index 195ddd0f110..30051948282 100644 --- a/cpp/benchmarks/core/UnaryEW.cpp +++ b/cpp/benchmarks/core/UnaryEW.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/core/Zeros.cpp b/cpp/benchmarks/core/Zeros.cpp index a9c9dd10d30..9eb534369f0 100644 --- a/cpp/benchmarks/core/Zeros.cpp +++ b/cpp/benchmarks/core/Zeros.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/geometry/KDTreeFlann.cpp b/cpp/benchmarks/geometry/KDTreeFlann.cpp index c34b2cae319..838f375a04f 100644 --- a/cpp/benchmarks/geometry/KDTreeFlann.cpp +++ b/cpp/benchmarks/geometry/KDTreeFlann.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/geometry/SamplePoints.cpp b/cpp/benchmarks/geometry/SamplePoints.cpp index 9757160c1f8..d7b9c6f7a00 100644 --- a/cpp/benchmarks/geometry/SamplePoints.cpp +++ b/cpp/benchmarks/geometry/SamplePoints.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/geometry/TriangleMesh.cpp b/cpp/benchmarks/geometry/TriangleMesh.cpp index 0f6d11cbcea..4a07fb0a23f 100644 --- a/cpp/benchmarks/geometry/TriangleMesh.cpp +++ b/cpp/benchmarks/geometry/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/io/PointCloudIO.cpp b/cpp/benchmarks/io/PointCloudIO.cpp index 3fa35a014ee..5ac5b43e90c 100644 --- a/cpp/benchmarks/io/PointCloudIO.cpp +++ b/cpp/benchmarks/io/PointCloudIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/pipelines/registration/Registration.cpp b/cpp/benchmarks/pipelines/registration/Registration.cpp index 4299265cc6e..8ed5eabcad7 100644 --- a/cpp/benchmarks/pipelines/registration/Registration.cpp +++ b/cpp/benchmarks/pipelines/registration/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/t/geometry/PointCloud.cpp b/cpp/benchmarks/t/geometry/PointCloud.cpp index 814587320a6..dbc84715885 100644 --- a/cpp/benchmarks/t/geometry/PointCloud.cpp +++ b/cpp/benchmarks/t/geometry/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/t/io/PointCloudIO.cpp b/cpp/benchmarks/t/io/PointCloudIO.cpp index f1ad9bbf6c1..4fc81f1c209 100644 --- a/cpp/benchmarks/t/io/PointCloudIO.cpp +++ b/cpp/benchmarks/t/io/PointCloudIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/t/io/TriangleMeshIO.cpp b/cpp/benchmarks/t/io/TriangleMeshIO.cpp index 3dfa9cd7731..fb320160291 100644 --- a/cpp/benchmarks/t/io/TriangleMeshIO.cpp +++ b/cpp/benchmarks/t/io/TriangleMeshIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/t/pipelines/odometry/RGBDOdometry.cpp b/cpp/benchmarks/t/pipelines/odometry/RGBDOdometry.cpp index 6b27492a20d..f68412dd399 100644 --- a/cpp/benchmarks/t/pipelines/odometry/RGBDOdometry.cpp +++ b/cpp/benchmarks/t/pipelines/odometry/RGBDOdometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/t/pipelines/registration/Feature.cpp b/cpp/benchmarks/t/pipelines/registration/Feature.cpp index 929fed0ca61..e3b67eb8db6 100644 --- a/cpp/benchmarks/t/pipelines/registration/Feature.cpp +++ b/cpp/benchmarks/t/pipelines/registration/Feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/benchmarks/t/pipelines/registration/Registration.cpp b/cpp/benchmarks/t/pipelines/registration/Registration.cpp index 71edb2cab1e..cd00c1e2e8f 100644 --- a/cpp/benchmarks/t/pipelines/registration/Registration.cpp +++ b/cpp/benchmarks/t/pipelines/registration/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/Macro.h b/cpp/open3d/Macro.h index d88da87e8b7..28cc640a2cd 100644 --- a/cpp/open3d/Macro.h +++ b/cpp/open3d/Macro.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/Open3D.h.in b/cpp/open3d/Open3D.h.in index 38ba353c61a..5c9a5b5c60a 100644 --- a/cpp/open3d/Open3D.h.in +++ b/cpp/open3d/Open3D.h.in @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/Open3DConfig.cpp b/cpp/open3d/Open3DConfig.cpp index a8019ae9316..a2904c01402 100644 --- a/cpp/open3d/Open3DConfig.cpp +++ b/cpp/open3d/Open3DConfig.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/Open3DConfig.h.in b/cpp/open3d/Open3DConfig.h.in index 2058a58171c..d9ad502c4b6 100644 --- a/cpp/open3d/Open3DConfig.h.in +++ b/cpp/open3d/Open3DConfig.h.in @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/camera/PinholeCameraIntrinsic.cpp b/cpp/open3d/camera/PinholeCameraIntrinsic.cpp index 85cdb00b82e..142e4e083ac 100644 --- a/cpp/open3d/camera/PinholeCameraIntrinsic.cpp +++ b/cpp/open3d/camera/PinholeCameraIntrinsic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/camera/PinholeCameraIntrinsic.h b/cpp/open3d/camera/PinholeCameraIntrinsic.h index 25e55543ae1..42689877807 100644 --- a/cpp/open3d/camera/PinholeCameraIntrinsic.h +++ b/cpp/open3d/camera/PinholeCameraIntrinsic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/camera/PinholeCameraParameters.cpp b/cpp/open3d/camera/PinholeCameraParameters.cpp index 465ff1c8044..cf512a2ecd1 100644 --- a/cpp/open3d/camera/PinholeCameraParameters.cpp +++ b/cpp/open3d/camera/PinholeCameraParameters.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/camera/PinholeCameraParameters.h b/cpp/open3d/camera/PinholeCameraParameters.h index 00c053283c5..a2ec46ddfd4 100644 --- a/cpp/open3d/camera/PinholeCameraParameters.h +++ b/cpp/open3d/camera/PinholeCameraParameters.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/camera/PinholeCameraTrajectory.cpp b/cpp/open3d/camera/PinholeCameraTrajectory.cpp index 41d32acf617..8f34c81a821 100644 --- a/cpp/open3d/camera/PinholeCameraTrajectory.cpp +++ b/cpp/open3d/camera/PinholeCameraTrajectory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/camera/PinholeCameraTrajectory.h b/cpp/open3d/camera/PinholeCameraTrajectory.h index ccde07464fc..d0a44f51b68 100644 --- a/cpp/open3d/camera/PinholeCameraTrajectory.h +++ b/cpp/open3d/camera/PinholeCameraTrajectory.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/AdvancedIndexing.cpp b/cpp/open3d/core/AdvancedIndexing.cpp index 86ce53148ba..cd53792468c 100644 --- a/cpp/open3d/core/AdvancedIndexing.cpp +++ b/cpp/open3d/core/AdvancedIndexing.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/AdvancedIndexing.h b/cpp/open3d/core/AdvancedIndexing.h index 17a8253085a..ab69dcac8ea 100644 --- a/cpp/open3d/core/AdvancedIndexing.h +++ b/cpp/open3d/core/AdvancedIndexing.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Atomic.h b/cpp/open3d/core/Atomic.h index a9e89758725..1e7e3502c5d 100644 --- a/cpp/open3d/core/Atomic.h +++ b/cpp/open3d/core/Atomic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Blob.h b/cpp/open3d/core/Blob.h index 0cf3a34f659..830a9954dae 100644 --- a/cpp/open3d/core/Blob.h +++ b/cpp/open3d/core/Blob.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/CUDAUtils.cpp b/cpp/open3d/core/CUDAUtils.cpp index 1da331035e7..ab805bda049 100644 --- a/cpp/open3d/core/CUDAUtils.cpp +++ b/cpp/open3d/core/CUDAUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/CUDAUtils.h b/cpp/open3d/core/CUDAUtils.h index 15f87be040d..16a3841e2d1 100644 --- a/cpp/open3d/core/CUDAUtils.h +++ b/cpp/open3d/core/CUDAUtils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/DLPack.h b/cpp/open3d/core/DLPack.h index 1cec10a712f..0b26310c25c 100644 --- a/cpp/open3d/core/DLPack.h +++ b/cpp/open3d/core/DLPack.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/core/Device.cpp b/cpp/open3d/core/Device.cpp index 7137e307874..8a5c45601a9 100644 --- a/cpp/open3d/core/Device.cpp +++ b/cpp/open3d/core/Device.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Device.h b/cpp/open3d/core/Device.h index 5b04875ed20..435abe8d347 100644 --- a/cpp/open3d/core/Device.h +++ b/cpp/open3d/core/Device.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Dispatch.h b/cpp/open3d/core/Dispatch.h index fe658c8cf15..f6195003a02 100644 --- a/cpp/open3d/core/Dispatch.h +++ b/cpp/open3d/core/Dispatch.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Dtype.cpp b/cpp/open3d/core/Dtype.cpp index 99102a46d86..8545b8ee53d 100644 --- a/cpp/open3d/core/Dtype.cpp +++ b/cpp/open3d/core/Dtype.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Dtype.h b/cpp/open3d/core/Dtype.h index 82e1358e659..464ebbbd17f 100644 --- a/cpp/open3d/core/Dtype.h +++ b/cpp/open3d/core/Dtype.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/EigenConverter.cpp b/cpp/open3d/core/EigenConverter.cpp index 7e6e8ca27aa..efc140f3403 100644 --- a/cpp/open3d/core/EigenConverter.cpp +++ b/cpp/open3d/core/EigenConverter.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/EigenConverter.h b/cpp/open3d/core/EigenConverter.h index 383c1bad013..6645f0cfb38 100644 --- a/cpp/open3d/core/EigenConverter.h +++ b/cpp/open3d/core/EigenConverter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/FunctionTraits.h b/cpp/open3d/core/FunctionTraits.h index dd591e03eb2..deaeaf276fa 100644 --- a/cpp/open3d/core/FunctionTraits.h +++ b/cpp/open3d/core/FunctionTraits.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Indexer.cpp b/cpp/open3d/core/Indexer.cpp index 7c6e76841d3..3bd27251d24 100644 --- a/cpp/open3d/core/Indexer.cpp +++ b/cpp/open3d/core/Indexer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Indexer.h b/cpp/open3d/core/Indexer.h index 7b0eaf7bda8..c9eb8933d49 100644 --- a/cpp/open3d/core/Indexer.h +++ b/cpp/open3d/core/Indexer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Indexer.ispc b/cpp/open3d/core/Indexer.ispc index ba96dd08f9e..cf60ac576a4 100644 --- a/cpp/open3d/core/Indexer.ispc +++ b/cpp/open3d/core/Indexer.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Indexer.isph b/cpp/open3d/core/Indexer.isph index 517b7219d7c..c9b63486377 100644 --- a/cpp/open3d/core/Indexer.isph +++ b/cpp/open3d/core/Indexer.isph @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManager.cpp b/cpp/open3d/core/MemoryManager.cpp index aff4786476d..2bd20aa42c7 100644 --- a/cpp/open3d/core/MemoryManager.cpp +++ b/cpp/open3d/core/MemoryManager.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManager.h b/cpp/open3d/core/MemoryManager.h index bde80f2991c..97c02efaf0c 100644 --- a/cpp/open3d/core/MemoryManager.h +++ b/cpp/open3d/core/MemoryManager.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManagerCPU.cpp b/cpp/open3d/core/MemoryManagerCPU.cpp index 7f12d166e50..28afab26fd2 100644 --- a/cpp/open3d/core/MemoryManagerCPU.cpp +++ b/cpp/open3d/core/MemoryManagerCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManagerCUDA.cpp b/cpp/open3d/core/MemoryManagerCUDA.cpp index 835ea550cfe..8d15a8b8d45 100644 --- a/cpp/open3d/core/MemoryManagerCUDA.cpp +++ b/cpp/open3d/core/MemoryManagerCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManagerCached.cpp b/cpp/open3d/core/MemoryManagerCached.cpp index 9165c46c9df..8af8dd152ad 100644 --- a/cpp/open3d/core/MemoryManagerCached.cpp +++ b/cpp/open3d/core/MemoryManagerCached.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManagerSYCL.cpp b/cpp/open3d/core/MemoryManagerSYCL.cpp index c3d642a2c76..a65c43110b4 100644 --- a/cpp/open3d/core/MemoryManagerSYCL.cpp +++ b/cpp/open3d/core/MemoryManagerSYCL.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManagerStatistic.cpp b/cpp/open3d/core/MemoryManagerStatistic.cpp index 82c15e2edf9..ded1ca2598b 100644 --- a/cpp/open3d/core/MemoryManagerStatistic.cpp +++ b/cpp/open3d/core/MemoryManagerStatistic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/MemoryManagerStatistic.h b/cpp/open3d/core/MemoryManagerStatistic.h index 60de026ec5c..1310247df17 100644 --- a/cpp/open3d/core/MemoryManagerStatistic.h +++ b/cpp/open3d/core/MemoryManagerStatistic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/ParallelFor.h b/cpp/open3d/core/ParallelFor.h index d9bbe376684..2d5bef78812 100644 --- a/cpp/open3d/core/ParallelFor.h +++ b/cpp/open3d/core/ParallelFor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/ParallelFor.isph b/cpp/open3d/core/ParallelFor.isph index 89137651b80..e2cbf8cdadf 100644 --- a/cpp/open3d/core/ParallelFor.isph +++ b/cpp/open3d/core/ParallelFor.isph @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SYCLContext.cpp b/cpp/open3d/core/SYCLContext.cpp index 660ab8d2bab..7a76c25ebc2 100644 --- a/cpp/open3d/core/SYCLContext.cpp +++ b/cpp/open3d/core/SYCLContext.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SYCLContext.h b/cpp/open3d/core/SYCLContext.h index e23b9d8770c..6c46cac1f22 100644 --- a/cpp/open3d/core/SYCLContext.h +++ b/cpp/open3d/core/SYCLContext.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SYCLUtils.cpp b/cpp/open3d/core/SYCLUtils.cpp index d9e42fdcde0..f5a7f9df7c8 100644 --- a/cpp/open3d/core/SYCLUtils.cpp +++ b/cpp/open3d/core/SYCLUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SYCLUtils.h b/cpp/open3d/core/SYCLUtils.h index 385523f3800..82d3a3bd74d 100644 --- a/cpp/open3d/core/SYCLUtils.h +++ b/cpp/open3d/core/SYCLUtils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Scalar.h b/cpp/open3d/core/Scalar.h index 18a91c91816..b26f133104d 100644 --- a/cpp/open3d/core/Scalar.h +++ b/cpp/open3d/core/Scalar.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/ShapeUtil.cpp b/cpp/open3d/core/ShapeUtil.cpp index f1d9b7af1d4..8e8a618b238 100644 --- a/cpp/open3d/core/ShapeUtil.cpp +++ b/cpp/open3d/core/ShapeUtil.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/ShapeUtil.h b/cpp/open3d/core/ShapeUtil.h index 88c20e99823..14c0a7ba6ad 100644 --- a/cpp/open3d/core/ShapeUtil.h +++ b/cpp/open3d/core/ShapeUtil.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SizeVector.cpp b/cpp/open3d/core/SizeVector.cpp index 0af2d30086c..0f3b6a77cfd 100644 --- a/cpp/open3d/core/SizeVector.cpp +++ b/cpp/open3d/core/SizeVector.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SizeVector.h b/cpp/open3d/core/SizeVector.h index e352020b42e..ca696093cb2 100644 --- a/cpp/open3d/core/SizeVector.h +++ b/cpp/open3d/core/SizeVector.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/SmallVector.cpp b/cpp/open3d/core/SmallVector.cpp index edd0da456a1..60f12287d39 100644 --- a/cpp/open3d/core/SmallVector.cpp +++ b/cpp/open3d/core/SmallVector.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/core/SmallVector.h b/cpp/open3d/core/SmallVector.h index 4be61809979..2f09c4ec24f 100644 --- a/cpp/open3d/core/SmallVector.h +++ b/cpp/open3d/core/SmallVector.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/core/StdAllocator.h b/cpp/open3d/core/StdAllocator.h index bb6b5f054a3..de5990425af 100644 --- a/cpp/open3d/core/StdAllocator.h +++ b/cpp/open3d/core/StdAllocator.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Tensor.cpp b/cpp/open3d/core/Tensor.cpp index 8859be594e8..1fff67cc853 100644 --- a/cpp/open3d/core/Tensor.cpp +++ b/cpp/open3d/core/Tensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/Tensor.h b/cpp/open3d/core/Tensor.h index 38422055a30..7a20da6b5b2 100644 --- a/cpp/open3d/core/Tensor.h +++ b/cpp/open3d/core/Tensor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorCheck.cpp b/cpp/open3d/core/TensorCheck.cpp index a7d54182d81..7d4ee43d4d5 100644 --- a/cpp/open3d/core/TensorCheck.cpp +++ b/cpp/open3d/core/TensorCheck.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorCheck.h b/cpp/open3d/core/TensorCheck.h index 698bb1cfcab..6a19632a55f 100644 --- a/cpp/open3d/core/TensorCheck.h +++ b/cpp/open3d/core/TensorCheck.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorFunction.cpp b/cpp/open3d/core/TensorFunction.cpp index 4f9f8e7ebc3..d05f934c1d7 100644 --- a/cpp/open3d/core/TensorFunction.cpp +++ b/cpp/open3d/core/TensorFunction.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorFunction.h b/cpp/open3d/core/TensorFunction.h index 5073bddfd9f..f8a50b75305 100644 --- a/cpp/open3d/core/TensorFunction.h +++ b/cpp/open3d/core/TensorFunction.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorInit.h b/cpp/open3d/core/TensorInit.h index 9c4e89b3d94..cafcdb68c07 100644 --- a/cpp/open3d/core/TensorInit.h +++ b/cpp/open3d/core/TensorInit.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorKey.cpp b/cpp/open3d/core/TensorKey.cpp index 018b74b6edd..3a13732d951 100644 --- a/cpp/open3d/core/TensorKey.cpp +++ b/cpp/open3d/core/TensorKey.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorKey.h b/cpp/open3d/core/TensorKey.h index 3c90b10cf59..d5b89ad2010 100644 --- a/cpp/open3d/core/TensorKey.h +++ b/cpp/open3d/core/TensorKey.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorList.cpp b/cpp/open3d/core/TensorList.cpp index 8052d1a9e72..1ea6e60ce61 100644 --- a/cpp/open3d/core/TensorList.cpp +++ b/cpp/open3d/core/TensorList.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/TensorList.h b/cpp/open3d/core/TensorList.h index 641a15fadce..a5de70ac6bd 100644 --- a/cpp/open3d/core/TensorList.h +++ b/cpp/open3d/core/TensorList.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CPU/CPUHashBackendBuffer.cpp b/cpp/open3d/core/hashmap/CPU/CPUHashBackendBuffer.cpp index 831b65fd2cc..ff014308c08 100644 --- a/cpp/open3d/core/hashmap/CPU/CPUHashBackendBuffer.cpp +++ b/cpp/open3d/core/hashmap/CPU/CPUHashBackendBuffer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CPU/CPUHashBackendBufferAccessor.hpp b/cpp/open3d/core/hashmap/CPU/CPUHashBackendBufferAccessor.hpp index d6b3e578bbf..5ba9b1a774c 100644 --- a/cpp/open3d/core/hashmap/CPU/CPUHashBackendBufferAccessor.hpp +++ b/cpp/open3d/core/hashmap/CPU/CPUHashBackendBufferAccessor.hpp @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/core/hashmap/CPU/CreateCPUHashBackend.cpp b/cpp/open3d/core/hashmap/CPU/CreateCPUHashBackend.cpp index 0ba140fa06a..07760c2422e 100644 --- a/cpp/open3d/core/hashmap/CPU/CreateCPUHashBackend.cpp +++ b/cpp/open3d/core/hashmap/CPU/CreateCPUHashBackend.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CPU/TBBHashBackend.h b/cpp/open3d/core/hashmap/CPU/TBBHashBackend.h index f562dc2cc9d..8c898d245aa 100644 --- a/cpp/open3d/core/hashmap/CPU/TBBHashBackend.h +++ b/cpp/open3d/core/hashmap/CPU/TBBHashBackend.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBuffer.cu b/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBuffer.cu index 3f67f42fe0a..627095858ec 100644 --- a/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBuffer.cu +++ b/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBuffer.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBufferAccessor.h b/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBufferAccessor.h index 2e5e3987d47..eeb74bc2610 100644 --- a/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBufferAccessor.h +++ b/cpp/open3d/core/hashmap/CUDA/CUDAHashBackendBufferAccessor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/CreateCUDAHashBackend.cu b/cpp/open3d/core/hashmap/CUDA/CreateCUDAHashBackend.cu index 31d82e5058d..8f8ea8bdfc0 100644 --- a/cpp/open3d/core/hashmap/CUDA/CreateCUDAHashBackend.cu +++ b/cpp/open3d/core/hashmap/CUDA/CreateCUDAHashBackend.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/SlabHashBackend.h b/cpp/open3d/core/hashmap/CUDA/SlabHashBackend.h index cbc7a85b8eb..dbf665c795f 100644 --- a/cpp/open3d/core/hashmap/CUDA/SlabHashBackend.h +++ b/cpp/open3d/core/hashmap/CUDA/SlabHashBackend.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/SlabHashBackendImpl.h b/cpp/open3d/core/hashmap/CUDA/SlabHashBackendImpl.h index eb27d0a1d12..67903ef9657 100644 --- a/cpp/open3d/core/hashmap/CUDA/SlabHashBackendImpl.h +++ b/cpp/open3d/core/hashmap/CUDA/SlabHashBackendImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/SlabMacros.h b/cpp/open3d/core/hashmap/CUDA/SlabMacros.h index c3d94f0c1bf..21ba410abdf 100644 --- a/cpp/open3d/core/hashmap/CUDA/SlabMacros.h +++ b/cpp/open3d/core/hashmap/CUDA/SlabMacros.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.cu b/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.cu index 6fdd6d75c92..df1cfe146d7 100644 --- a/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.cu +++ b/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.h b/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.h index 4d7f4d5a710..9668c31005a 100644 --- a/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.h +++ b/cpp/open3d/core/hashmap/CUDA/SlabNodeManager.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/SlabTraits.h b/cpp/open3d/core/hashmap/CUDA/SlabTraits.h index ad15855e6d0..bab4f111e4f 100644 --- a/cpp/open3d/core/hashmap/CUDA/SlabTraits.h +++ b/cpp/open3d/core/hashmap/CUDA/SlabTraits.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/CUDA/StdGPUHashBackend.h b/cpp/open3d/core/hashmap/CUDA/StdGPUHashBackend.h index 2f27a53b7fc..823e19f9901 100644 --- a/cpp/open3d/core/hashmap/CUDA/StdGPUHashBackend.h +++ b/cpp/open3d/core/hashmap/CUDA/StdGPUHashBackend.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/DeviceHashBackend.cpp b/cpp/open3d/core/hashmap/DeviceHashBackend.cpp index 69083d0820e..26242ad5165 100644 --- a/cpp/open3d/core/hashmap/DeviceHashBackend.cpp +++ b/cpp/open3d/core/hashmap/DeviceHashBackend.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/DeviceHashBackend.h b/cpp/open3d/core/hashmap/DeviceHashBackend.h index b4cef7d635f..676b970fb48 100644 --- a/cpp/open3d/core/hashmap/DeviceHashBackend.h +++ b/cpp/open3d/core/hashmap/DeviceHashBackend.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/Dispatch.h b/cpp/open3d/core/hashmap/Dispatch.h index df0cb1238ac..7318e5898d6 100644 --- a/cpp/open3d/core/hashmap/Dispatch.h +++ b/cpp/open3d/core/hashmap/Dispatch.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/HashBackendBuffer.cpp b/cpp/open3d/core/hashmap/HashBackendBuffer.cpp index 315ece8bbc0..48a08c7342d 100644 --- a/cpp/open3d/core/hashmap/HashBackendBuffer.cpp +++ b/cpp/open3d/core/hashmap/HashBackendBuffer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/HashBackendBuffer.h b/cpp/open3d/core/hashmap/HashBackendBuffer.h index 0ffc21a725f..a9ab147f414 100644 --- a/cpp/open3d/core/hashmap/HashBackendBuffer.h +++ b/cpp/open3d/core/hashmap/HashBackendBuffer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/HashMap.cpp b/cpp/open3d/core/hashmap/HashMap.cpp index 6e0d450ba7f..485d2d5b770 100644 --- a/cpp/open3d/core/hashmap/HashMap.cpp +++ b/cpp/open3d/core/hashmap/HashMap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/HashMap.h b/cpp/open3d/core/hashmap/HashMap.h index a3d4cbb56b1..8544ed623f8 100644 --- a/cpp/open3d/core/hashmap/HashMap.h +++ b/cpp/open3d/core/hashmap/HashMap.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/HashSet.cpp b/cpp/open3d/core/hashmap/HashSet.cpp index a01d2fd1bbb..1bc0ddc6dee 100644 --- a/cpp/open3d/core/hashmap/HashSet.cpp +++ b/cpp/open3d/core/hashmap/HashSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/hashmap/HashSet.h b/cpp/open3d/core/hashmap/HashSet.h index 75aaac5fe16..97a8dc25e4e 100644 --- a/cpp/open3d/core/hashmap/HashSet.h +++ b/cpp/open3d/core/hashmap/HashSet.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/Arange.cpp b/cpp/open3d/core/kernel/Arange.cpp index 5d4b52b6810..b3385a2a10c 100644 --- a/cpp/open3d/core/kernel/Arange.cpp +++ b/cpp/open3d/core/kernel/Arange.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/Arange.h b/cpp/open3d/core/kernel/Arange.h index 0d18170d03a..1a0e88323fd 100644 --- a/cpp/open3d/core/kernel/Arange.h +++ b/cpp/open3d/core/kernel/Arange.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/ArangeCPU.cpp b/cpp/open3d/core/kernel/ArangeCPU.cpp index 70efd7753a1..d88076d1a74 100644 --- a/cpp/open3d/core/kernel/ArangeCPU.cpp +++ b/cpp/open3d/core/kernel/ArangeCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/ArangeCUDA.cu b/cpp/open3d/core/kernel/ArangeCUDA.cu index a5193b292f9..2de6c835ae9 100644 --- a/cpp/open3d/core/kernel/ArangeCUDA.cu +++ b/cpp/open3d/core/kernel/ArangeCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/BinaryEW.cpp b/cpp/open3d/core/kernel/BinaryEW.cpp index 97856e67401..00eb9b388e5 100644 --- a/cpp/open3d/core/kernel/BinaryEW.cpp +++ b/cpp/open3d/core/kernel/BinaryEW.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/BinaryEW.h b/cpp/open3d/core/kernel/BinaryEW.h index ed23e8376c8..fbd4af3e849 100644 --- a/cpp/open3d/core/kernel/BinaryEW.h +++ b/cpp/open3d/core/kernel/BinaryEW.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/BinaryEWCPU.cpp b/cpp/open3d/core/kernel/BinaryEWCPU.cpp index 02139bfa6dd..29077856ac8 100644 --- a/cpp/open3d/core/kernel/BinaryEWCPU.cpp +++ b/cpp/open3d/core/kernel/BinaryEWCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/BinaryEWCPU.ispc b/cpp/open3d/core/kernel/BinaryEWCPU.ispc index 8c81c28a838..0ea895e2dbc 100644 --- a/cpp/open3d/core/kernel/BinaryEWCPU.ispc +++ b/cpp/open3d/core/kernel/BinaryEWCPU.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/BinaryEWCUDA.cu b/cpp/open3d/core/kernel/BinaryEWCUDA.cu index 9a450789625..7985696cc9e 100644 --- a/cpp/open3d/core/kernel/BinaryEWCUDA.cu +++ b/cpp/open3d/core/kernel/BinaryEWCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexGetSet.cpp b/cpp/open3d/core/kernel/IndexGetSet.cpp index 26ec6a62072..601b4d73f64 100644 --- a/cpp/open3d/core/kernel/IndexGetSet.cpp +++ b/cpp/open3d/core/kernel/IndexGetSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexGetSet.h b/cpp/open3d/core/kernel/IndexGetSet.h index 94e57de1cae..130b80836a9 100644 --- a/cpp/open3d/core/kernel/IndexGetSet.h +++ b/cpp/open3d/core/kernel/IndexGetSet.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexGetSetCPU.cpp b/cpp/open3d/core/kernel/IndexGetSetCPU.cpp index ab9a26ad763..4d76128c9dc 100644 --- a/cpp/open3d/core/kernel/IndexGetSetCPU.cpp +++ b/cpp/open3d/core/kernel/IndexGetSetCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexGetSetCUDA.cu b/cpp/open3d/core/kernel/IndexGetSetCUDA.cu index a2a5fb6796e..149dbd34675 100644 --- a/cpp/open3d/core/kernel/IndexGetSetCUDA.cu +++ b/cpp/open3d/core/kernel/IndexGetSetCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexReduction.cpp b/cpp/open3d/core/kernel/IndexReduction.cpp index 128da56e370..19265d36620 100644 --- a/cpp/open3d/core/kernel/IndexReduction.cpp +++ b/cpp/open3d/core/kernel/IndexReduction.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexReduction.h b/cpp/open3d/core/kernel/IndexReduction.h index 7035b53210b..f4fd3516b41 100644 --- a/cpp/open3d/core/kernel/IndexReduction.h +++ b/cpp/open3d/core/kernel/IndexReduction.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexReductionCPU.cpp b/cpp/open3d/core/kernel/IndexReductionCPU.cpp index 4488b3bb6a8..bfc670d5101 100644 --- a/cpp/open3d/core/kernel/IndexReductionCPU.cpp +++ b/cpp/open3d/core/kernel/IndexReductionCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/IndexReductionCUDA.cu b/cpp/open3d/core/kernel/IndexReductionCUDA.cu index 922bd0a84c9..60c3ff7b598 100644 --- a/cpp/open3d/core/kernel/IndexReductionCUDA.cu +++ b/cpp/open3d/core/kernel/IndexReductionCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include diff --git a/cpp/open3d/core/kernel/Kernel.cpp b/cpp/open3d/core/kernel/Kernel.cpp index 015170e2993..249af3a3d10 100644 --- a/cpp/open3d/core/kernel/Kernel.cpp +++ b/cpp/open3d/core/kernel/Kernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/Kernel.h b/cpp/open3d/core/kernel/Kernel.h index 51249d741c1..16a12a3ea7f 100644 --- a/cpp/open3d/core/kernel/Kernel.h +++ b/cpp/open3d/core/kernel/Kernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/NonZero.cpp b/cpp/open3d/core/kernel/NonZero.cpp index 1a25c85ce77..6d04f94e40a 100644 --- a/cpp/open3d/core/kernel/NonZero.cpp +++ b/cpp/open3d/core/kernel/NonZero.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/NonZero.h b/cpp/open3d/core/kernel/NonZero.h index 8e0040c5089..ab926ddd8c3 100644 --- a/cpp/open3d/core/kernel/NonZero.h +++ b/cpp/open3d/core/kernel/NonZero.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/NonZeroCPU.cpp b/cpp/open3d/core/kernel/NonZeroCPU.cpp index 4bea5919154..c865386d920 100644 --- a/cpp/open3d/core/kernel/NonZeroCPU.cpp +++ b/cpp/open3d/core/kernel/NonZeroCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/NonZeroCUDA.cu b/cpp/open3d/core/kernel/NonZeroCUDA.cu index 5b2fb595935..e0cdbcd799e 100644 --- a/cpp/open3d/core/kernel/NonZeroCUDA.cu +++ b/cpp/open3d/core/kernel/NonZeroCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/Reduction.cpp b/cpp/open3d/core/kernel/Reduction.cpp index bf252ce715f..a94087d609a 100644 --- a/cpp/open3d/core/kernel/Reduction.cpp +++ b/cpp/open3d/core/kernel/Reduction.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/Reduction.h b/cpp/open3d/core/kernel/Reduction.h index 683770fa0cd..a1a4b74e3a3 100644 --- a/cpp/open3d/core/kernel/Reduction.h +++ b/cpp/open3d/core/kernel/Reduction.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/ReductionCPU.cpp b/cpp/open3d/core/kernel/ReductionCPU.cpp index 710f1aaea24..428f655c21a 100644 --- a/cpp/open3d/core/kernel/ReductionCPU.cpp +++ b/cpp/open3d/core/kernel/ReductionCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/ReductionCUDA.cu b/cpp/open3d/core/kernel/ReductionCUDA.cu index f209b4448d9..5f15f676d18 100644 --- a/cpp/open3d/core/kernel/ReductionCUDA.cu +++ b/cpp/open3d/core/kernel/ReductionCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/UnaryEW.cpp b/cpp/open3d/core/kernel/UnaryEW.cpp index 87b99a268aa..911b2885e34 100644 --- a/cpp/open3d/core/kernel/UnaryEW.cpp +++ b/cpp/open3d/core/kernel/UnaryEW.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/UnaryEW.h b/cpp/open3d/core/kernel/UnaryEW.h index 985eba0232a..907b3371167 100644 --- a/cpp/open3d/core/kernel/UnaryEW.h +++ b/cpp/open3d/core/kernel/UnaryEW.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/UnaryEWCPU.cpp b/cpp/open3d/core/kernel/UnaryEWCPU.cpp index de3a3f4514e..1a502e42a1d 100644 --- a/cpp/open3d/core/kernel/UnaryEWCPU.cpp +++ b/cpp/open3d/core/kernel/UnaryEWCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/UnaryEWCPU.ispc b/cpp/open3d/core/kernel/UnaryEWCPU.ispc index 40ebd9515e5..a7019efad70 100644 --- a/cpp/open3d/core/kernel/UnaryEWCPU.ispc +++ b/cpp/open3d/core/kernel/UnaryEWCPU.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/UnaryEWCUDA.cu b/cpp/open3d/core/kernel/UnaryEWCUDA.cu index b7745e04ef0..1612a3d70cc 100644 --- a/cpp/open3d/core/kernel/UnaryEWCUDA.cu +++ b/cpp/open3d/core/kernel/UnaryEWCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/kernel/UnaryEWSYCL.cpp b/cpp/open3d/core/kernel/UnaryEWSYCL.cpp index e32005c4b36..fed05af7b47 100644 --- a/cpp/open3d/core/kernel/UnaryEWSYCL.cpp +++ b/cpp/open3d/core/kernel/UnaryEWSYCL.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/AddMM.cpp b/cpp/open3d/core/linalg/AddMM.cpp index 0f44ac926e3..aea908cecbb 100644 --- a/cpp/open3d/core/linalg/AddMM.cpp +++ b/cpp/open3d/core/linalg/AddMM.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/AddMM.h b/cpp/open3d/core/linalg/AddMM.h index 6d4a5dc608f..1754e430fef 100644 --- a/cpp/open3d/core/linalg/AddMM.h +++ b/cpp/open3d/core/linalg/AddMM.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/AddMMCPU.cpp b/cpp/open3d/core/linalg/AddMMCPU.cpp index c839ccd6df2..1f97049dbfe 100644 --- a/cpp/open3d/core/linalg/AddMMCPU.cpp +++ b/cpp/open3d/core/linalg/AddMMCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/AddMMCUDA.cpp b/cpp/open3d/core/linalg/AddMMCUDA.cpp index 4d13857f8ab..122f8f178b1 100644 --- a/cpp/open3d/core/linalg/AddMMCUDA.cpp +++ b/cpp/open3d/core/linalg/AddMMCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/BlasWrapper.h b/cpp/open3d/core/linalg/BlasWrapper.h index 9c35fed74a5..d82363614c9 100644 --- a/cpp/open3d/core/linalg/BlasWrapper.h +++ b/cpp/open3d/core/linalg/BlasWrapper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Det.cpp b/cpp/open3d/core/linalg/Det.cpp index 8ca57f05fdd..a2e05344b21 100644 --- a/cpp/open3d/core/linalg/Det.cpp +++ b/cpp/open3d/core/linalg/Det.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Det.h b/cpp/open3d/core/linalg/Det.h index fa68a25ecdb..a69e4c9166b 100644 --- a/cpp/open3d/core/linalg/Det.h +++ b/cpp/open3d/core/linalg/Det.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Inverse.cpp b/cpp/open3d/core/linalg/Inverse.cpp index dad96c211cd..51cf7693217 100644 --- a/cpp/open3d/core/linalg/Inverse.cpp +++ b/cpp/open3d/core/linalg/Inverse.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Inverse.h b/cpp/open3d/core/linalg/Inverse.h index 6c3d63817e9..8809f8f176c 100644 --- a/cpp/open3d/core/linalg/Inverse.h +++ b/cpp/open3d/core/linalg/Inverse.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/InverseCPU.cpp b/cpp/open3d/core/linalg/InverseCPU.cpp index d69c49f353e..bcedaf75d3e 100644 --- a/cpp/open3d/core/linalg/InverseCPU.cpp +++ b/cpp/open3d/core/linalg/InverseCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/InverseCUDA.cpp b/cpp/open3d/core/linalg/InverseCUDA.cpp index 3fdfba452c5..dca871c9bc3 100644 --- a/cpp/open3d/core/linalg/InverseCUDA.cpp +++ b/cpp/open3d/core/linalg/InverseCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LU.cpp b/cpp/open3d/core/linalg/LU.cpp index 85de3e2fb48..5bfafdac425 100644 --- a/cpp/open3d/core/linalg/LU.cpp +++ b/cpp/open3d/core/linalg/LU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LU.h b/cpp/open3d/core/linalg/LU.h index bf17f7befc7..d7c1f054954 100644 --- a/cpp/open3d/core/linalg/LU.h +++ b/cpp/open3d/core/linalg/LU.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LUCPU.cpp b/cpp/open3d/core/linalg/LUCPU.cpp index 4026fde7ed4..5ea4ba63fdd 100644 --- a/cpp/open3d/core/linalg/LUCPU.cpp +++ b/cpp/open3d/core/linalg/LUCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LUCUDA.cpp b/cpp/open3d/core/linalg/LUCUDA.cpp index 4cac8097152..6a5f9f89544 100644 --- a/cpp/open3d/core/linalg/LUCUDA.cpp +++ b/cpp/open3d/core/linalg/LUCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LUImpl.h b/cpp/open3d/core/linalg/LUImpl.h index 3edd3ae905c..36898fa3de9 100644 --- a/cpp/open3d/core/linalg/LUImpl.h +++ b/cpp/open3d/core/linalg/LUImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LapackWrapper.h b/cpp/open3d/core/linalg/LapackWrapper.h index f49cfbf9d10..a27a69cf8ee 100644 --- a/cpp/open3d/core/linalg/LapackWrapper.h +++ b/cpp/open3d/core/linalg/LapackWrapper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LeastSquares.cpp b/cpp/open3d/core/linalg/LeastSquares.cpp index 5eac4cd6ae2..6340331c5ce 100644 --- a/cpp/open3d/core/linalg/LeastSquares.cpp +++ b/cpp/open3d/core/linalg/LeastSquares.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LeastSquares.h b/cpp/open3d/core/linalg/LeastSquares.h index 79ca7aeef59..c2e79935f5d 100644 --- a/cpp/open3d/core/linalg/LeastSquares.h +++ b/cpp/open3d/core/linalg/LeastSquares.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LeastSquaresCPU.cpp b/cpp/open3d/core/linalg/LeastSquaresCPU.cpp index 83418947d77..96e85da2f21 100644 --- a/cpp/open3d/core/linalg/LeastSquaresCPU.cpp +++ b/cpp/open3d/core/linalg/LeastSquaresCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LeastSquaresCUDA.cpp b/cpp/open3d/core/linalg/LeastSquaresCUDA.cpp index ca9b8ab0dca..82f59ec2c34 100644 --- a/cpp/open3d/core/linalg/LeastSquaresCUDA.cpp +++ b/cpp/open3d/core/linalg/LeastSquaresCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LinalgHeadersCPU.h b/cpp/open3d/core/linalg/LinalgHeadersCPU.h index 5a72c2ae531..3f94a9ae274 100644 --- a/cpp/open3d/core/linalg/LinalgHeadersCPU.h +++ b/cpp/open3d/core/linalg/LinalgHeadersCPU.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LinalgHeadersCUDA.h b/cpp/open3d/core/linalg/LinalgHeadersCUDA.h index cf1b8d635ba..2cef17c1758 100644 --- a/cpp/open3d/core/linalg/LinalgHeadersCUDA.h +++ b/cpp/open3d/core/linalg/LinalgHeadersCUDA.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LinalgUtils.cpp b/cpp/open3d/core/linalg/LinalgUtils.cpp index 12d061664aa..723abeca704 100644 --- a/cpp/open3d/core/linalg/LinalgUtils.cpp +++ b/cpp/open3d/core/linalg/LinalgUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/LinalgUtils.h b/cpp/open3d/core/linalg/LinalgUtils.h index 5eaae8cfa65..4435faced72 100644 --- a/cpp/open3d/core/linalg/LinalgUtils.h +++ b/cpp/open3d/core/linalg/LinalgUtils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Matmul.cpp b/cpp/open3d/core/linalg/Matmul.cpp index 41cb2c4dae2..1b616c5f335 100644 --- a/cpp/open3d/core/linalg/Matmul.cpp +++ b/cpp/open3d/core/linalg/Matmul.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Matmul.h b/cpp/open3d/core/linalg/Matmul.h index 724db1bcc84..da29240b0c4 100644 --- a/cpp/open3d/core/linalg/Matmul.h +++ b/cpp/open3d/core/linalg/Matmul.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/MatmulCPU.cpp b/cpp/open3d/core/linalg/MatmulCPU.cpp index 209683d338f..2757d29a63d 100644 --- a/cpp/open3d/core/linalg/MatmulCPU.cpp +++ b/cpp/open3d/core/linalg/MatmulCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/MatmulCUDA.cpp b/cpp/open3d/core/linalg/MatmulCUDA.cpp index 0982bf57cec..f5a517ef4bd 100644 --- a/cpp/open3d/core/linalg/MatmulCUDA.cpp +++ b/cpp/open3d/core/linalg/MatmulCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/SVD.cpp b/cpp/open3d/core/linalg/SVD.cpp index 757a138d416..935d014ef4e 100644 --- a/cpp/open3d/core/linalg/SVD.cpp +++ b/cpp/open3d/core/linalg/SVD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/SVD.h b/cpp/open3d/core/linalg/SVD.h index caf83ed6481..9e6deefa6c1 100644 --- a/cpp/open3d/core/linalg/SVD.h +++ b/cpp/open3d/core/linalg/SVD.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/SVDCPU.cpp b/cpp/open3d/core/linalg/SVDCPU.cpp index 682ea9e08cf..4803e1ee576 100644 --- a/cpp/open3d/core/linalg/SVDCPU.cpp +++ b/cpp/open3d/core/linalg/SVDCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/SVDCUDA.cpp b/cpp/open3d/core/linalg/SVDCUDA.cpp index a811090bffb..a7acbf07b99 100644 --- a/cpp/open3d/core/linalg/SVDCUDA.cpp +++ b/cpp/open3d/core/linalg/SVDCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Solve.cpp b/cpp/open3d/core/linalg/Solve.cpp index 9956bddf5f0..f1025520fac 100644 --- a/cpp/open3d/core/linalg/Solve.cpp +++ b/cpp/open3d/core/linalg/Solve.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Solve.h b/cpp/open3d/core/linalg/Solve.h index 49d73d3179f..485de7ef0f2 100644 --- a/cpp/open3d/core/linalg/Solve.h +++ b/cpp/open3d/core/linalg/Solve.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/SolveCPU.cpp b/cpp/open3d/core/linalg/SolveCPU.cpp index 08452a17ea9..05a589e1072 100644 --- a/cpp/open3d/core/linalg/SolveCPU.cpp +++ b/cpp/open3d/core/linalg/SolveCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/SolveCUDA.cpp b/cpp/open3d/core/linalg/SolveCUDA.cpp index cc1f28dcdd3..1e2c656103b 100644 --- a/cpp/open3d/core/linalg/SolveCUDA.cpp +++ b/cpp/open3d/core/linalg/SolveCUDA.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Tri.cpp b/cpp/open3d/core/linalg/Tri.cpp index 1852ac01606..77e72b076a2 100644 --- a/cpp/open3d/core/linalg/Tri.cpp +++ b/cpp/open3d/core/linalg/Tri.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/Tri.h b/cpp/open3d/core/linalg/Tri.h index 280ab3bb174..cafb41fb046 100644 --- a/cpp/open3d/core/linalg/Tri.h +++ b/cpp/open3d/core/linalg/Tri.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/TriCPU.cpp b/cpp/open3d/core/linalg/TriCPU.cpp index 1962b3010cf..1bbb10a9fdf 100644 --- a/cpp/open3d/core/linalg/TriCPU.cpp +++ b/cpp/open3d/core/linalg/TriCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/TriCUDA.cu b/cpp/open3d/core/linalg/TriCUDA.cu index 333d640c8f2..20407d8d7c5 100644 --- a/cpp/open3d/core/linalg/TriCUDA.cu +++ b/cpp/open3d/core/linalg/TriCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/TriImpl.h b/cpp/open3d/core/linalg/TriImpl.h index 5219ddfe8eb..441d9c69c93 100644 --- a/cpp/open3d/core/linalg/TriImpl.h +++ b/cpp/open3d/core/linalg/TriImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/kernel/Matrix.h b/cpp/open3d/core/linalg/kernel/Matrix.h index 9ebe2d341b9..2968f69bc84 100644 --- a/cpp/open3d/core/linalg/kernel/Matrix.h +++ b/cpp/open3d/core/linalg/kernel/Matrix.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/linalg/kernel/SVD3x3.h b/cpp/open3d/core/linalg/kernel/SVD3x3.h index e591e6a6920..84965343ffd 100644 --- a/cpp/open3d/core/linalg/kernel/SVD3x3.h +++ b/cpp/open3d/core/linalg/kernel/SVD3x3.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- /************************************************************************** diff --git a/cpp/open3d/core/nns/FixedRadiusIndex.cpp b/cpp/open3d/core/nns/FixedRadiusIndex.cpp index 1faba40060c..fb50820bb70 100644 --- a/cpp/open3d/core/nns/FixedRadiusIndex.cpp +++ b/cpp/open3d/core/nns/FixedRadiusIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/FixedRadiusIndex.h b/cpp/open3d/core/nns/FixedRadiusIndex.h index 47929950023..838c1ccc484 100644 --- a/cpp/open3d/core/nns/FixedRadiusIndex.h +++ b/cpp/open3d/core/nns/FixedRadiusIndex.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/FixedRadiusSearchImpl.cuh b/cpp/open3d/core/nns/FixedRadiusSearchImpl.cuh index 42a7ff3c9b2..c4eb31c8532 100644 --- a/cpp/open3d/core/nns/FixedRadiusSearchImpl.cuh +++ b/cpp/open3d/core/nns/FixedRadiusSearchImpl.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/core/nns/FixedRadiusSearchImpl.h b/cpp/open3d/core/nns/FixedRadiusSearchImpl.h index be8cfd32012..ae65f493637 100644 --- a/cpp/open3d/core/nns/FixedRadiusSearchImpl.h +++ b/cpp/open3d/core/nns/FixedRadiusSearchImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/FixedRadiusSearchOps.cpp b/cpp/open3d/core/nns/FixedRadiusSearchOps.cpp index 789690dd098..7a9dc4b4077 100644 --- a/cpp/open3d/core/nns/FixedRadiusSearchOps.cpp +++ b/cpp/open3d/core/nns/FixedRadiusSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/core/nns/FixedRadiusSearchOps.cu b/cpp/open3d/core/nns/FixedRadiusSearchOps.cu index 6e93c03cd0a..6f2a7e1df9e 100644 --- a/cpp/open3d/core/nns/FixedRadiusSearchOps.cu +++ b/cpp/open3d/core/nns/FixedRadiusSearchOps.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/core/nns/KnnIndex.cpp b/cpp/open3d/core/nns/KnnIndex.cpp index 4266f57449a..fc68f6dbe54 100644 --- a/cpp/open3d/core/nns/KnnIndex.cpp +++ b/cpp/open3d/core/nns/KnnIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/KnnIndex.h b/cpp/open3d/core/nns/KnnIndex.h index e5f5e3baf7c..458a3dd0b35 100644 --- a/cpp/open3d/core/nns/KnnIndex.h +++ b/cpp/open3d/core/nns/KnnIndex.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/KnnSearchImpl.cuh b/cpp/open3d/core/nns/KnnSearchImpl.cuh index 2ab909f804e..2f1e8f653c7 100644 --- a/cpp/open3d/core/nns/KnnSearchImpl.cuh +++ b/cpp/open3d/core/nns/KnnSearchImpl.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/KnnSearchOps.cu b/cpp/open3d/core/nns/KnnSearchOps.cu index 2b20a8852cd..8fbaf466b5c 100644 --- a/cpp/open3d/core/nns/KnnSearchOps.cu +++ b/cpp/open3d/core/nns/KnnSearchOps.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/MemoryAllocation.h b/cpp/open3d/core/nns/MemoryAllocation.h index 64c7d879178..78c8d7ebbd2 100644 --- a/cpp/open3d/core/nns/MemoryAllocation.h +++ b/cpp/open3d/core/nns/MemoryAllocation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NNSIndex.cpp b/cpp/open3d/core/nns/NNSIndex.cpp index 3300d7686d5..f9c41535f81 100644 --- a/cpp/open3d/core/nns/NNSIndex.cpp +++ b/cpp/open3d/core/nns/NNSIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NNSIndex.h b/cpp/open3d/core/nns/NNSIndex.h index 8eb8160da5d..ac07638b145 100644 --- a/cpp/open3d/core/nns/NNSIndex.h +++ b/cpp/open3d/core/nns/NNSIndex.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NanoFlannImpl.h b/cpp/open3d/core/nns/NanoFlannImpl.h index 9a9ceb100c4..c9491da8377 100644 --- a/cpp/open3d/core/nns/NanoFlannImpl.h +++ b/cpp/open3d/core/nns/NanoFlannImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/core/nns/NanoFlannIndex.cpp b/cpp/open3d/core/nns/NanoFlannIndex.cpp index 4be2aa189eb..b4d39299a7f 100644 --- a/cpp/open3d/core/nns/NanoFlannIndex.cpp +++ b/cpp/open3d/core/nns/NanoFlannIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NanoFlannIndex.h b/cpp/open3d/core/nns/NanoFlannIndex.h index e092099d46e..ec2be8a3ca1 100644 --- a/cpp/open3d/core/nns/NanoFlannIndex.h +++ b/cpp/open3d/core/nns/NanoFlannIndex.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NearestNeighborSearch.cpp b/cpp/open3d/core/nns/NearestNeighborSearch.cpp index 3a7c3122162..ebf38ec05b3 100644 --- a/cpp/open3d/core/nns/NearestNeighborSearch.cpp +++ b/cpp/open3d/core/nns/NearestNeighborSearch.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NearestNeighborSearch.h b/cpp/open3d/core/nns/NearestNeighborSearch.h index 7ce92811dd9..98898cdd7b2 100644 --- a/cpp/open3d/core/nns/NearestNeighborSearch.h +++ b/cpp/open3d/core/nns/NearestNeighborSearch.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NeighborSearchAllocator.h b/cpp/open3d/core/nns/NeighborSearchAllocator.h index 1845282151f..c0e66e2acf5 100644 --- a/cpp/open3d/core/nns/NeighborSearchAllocator.h +++ b/cpp/open3d/core/nns/NeighborSearchAllocator.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/NeighborSearchCommon.h b/cpp/open3d/core/nns/NeighborSearchCommon.h index 0a010dc6eaa..97ffb810ffb 100644 --- a/cpp/open3d/core/nns/NeighborSearchCommon.h +++ b/cpp/open3d/core/nns/NeighborSearchCommon.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/core/nns/kernel/BlockMerge.cuh b/cpp/open3d/core/nns/kernel/BlockMerge.cuh index 870d87847c8..07e1bd40727 100644 --- a/cpp/open3d/core/nns/kernel/BlockMerge.cuh +++ b/cpp/open3d/core/nns/kernel/BlockMerge.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/BlockSelect.cuh b/cpp/open3d/core/nns/kernel/BlockSelect.cuh index d54ebd0e5f5..c369854578a 100644 --- a/cpp/open3d/core/nns/kernel/BlockSelect.cuh +++ b/cpp/open3d/core/nns/kernel/BlockSelect.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/BlockSelectFloat32.cu b/cpp/open3d/core/nns/kernel/BlockSelectFloat32.cu index 8b56f0a7ed7..4bd77af5423 100644 --- a/cpp/open3d/core/nns/kernel/BlockSelectFloat32.cu +++ b/cpp/open3d/core/nns/kernel/BlockSelectFloat32.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/BlockSelectFloat64.cu b/cpp/open3d/core/nns/kernel/BlockSelectFloat64.cu index fd181c4645d..d23d1a3a488 100644 --- a/cpp/open3d/core/nns/kernel/BlockSelectFloat64.cu +++ b/cpp/open3d/core/nns/kernel/BlockSelectFloat64.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/BlockSelectImpl.cuh b/cpp/open3d/core/nns/kernel/BlockSelectImpl.cuh index efc35f9d9d7..dae57ae99d9 100644 --- a/cpp/open3d/core/nns/kernel/BlockSelectImpl.cuh +++ b/cpp/open3d/core/nns/kernel/BlockSelectImpl.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/DeviceDefs.cuh b/cpp/open3d/core/nns/kernel/DeviceDefs.cuh index 89ef8f228e4..85b67c436ea 100644 --- a/cpp/open3d/core/nns/kernel/DeviceDefs.cuh +++ b/cpp/open3d/core/nns/kernel/DeviceDefs.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/DistancesUtils.cuh b/cpp/open3d/core/nns/kernel/DistancesUtils.cuh index 62f08005a1d..9a297d70324 100644 --- a/cpp/open3d/core/nns/kernel/DistancesUtils.cuh +++ b/cpp/open3d/core/nns/kernel/DistancesUtils.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/L2Select.cuh b/cpp/open3d/core/nns/kernel/L2Select.cuh index 3abd83cfe39..61c37bd0b37 100644 --- a/cpp/open3d/core/nns/kernel/L2Select.cuh +++ b/cpp/open3d/core/nns/kernel/L2Select.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/Limits.cuh b/cpp/open3d/core/nns/kernel/Limits.cuh index 70b22d75d67..bad35dee8ae 100644 --- a/cpp/open3d/core/nns/kernel/Limits.cuh +++ b/cpp/open3d/core/nns/kernel/Limits.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/MergeNetwork.cuh b/cpp/open3d/core/nns/kernel/MergeNetwork.cuh index 5fcc5321959..5306eb7dc33 100644 --- a/cpp/open3d/core/nns/kernel/MergeNetwork.cuh +++ b/cpp/open3d/core/nns/kernel/MergeNetwork.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/Pair.cuh b/cpp/open3d/core/nns/kernel/Pair.cuh index 026cbcdec44..15928ba6eae 100644 --- a/cpp/open3d/core/nns/kernel/Pair.cuh +++ b/cpp/open3d/core/nns/kernel/Pair.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/PtxUtils.cuh b/cpp/open3d/core/nns/kernel/PtxUtils.cuh index a23bc194f40..8c497b4c2ba 100644 --- a/cpp/open3d/core/nns/kernel/PtxUtils.cuh +++ b/cpp/open3d/core/nns/kernel/PtxUtils.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/Reduction.cuh b/cpp/open3d/core/nns/kernel/Reduction.cuh index 6e867f95551..a87dc0ac9bd 100644 --- a/cpp/open3d/core/nns/kernel/Reduction.cuh +++ b/cpp/open3d/core/nns/kernel/Reduction.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/ReductionOps.cuh b/cpp/open3d/core/nns/kernel/ReductionOps.cuh index fee64e9a52e..da8eb4710a1 100644 --- a/cpp/open3d/core/nns/kernel/ReductionOps.cuh +++ b/cpp/open3d/core/nns/kernel/ReductionOps.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/Select.cuh b/cpp/open3d/core/nns/kernel/Select.cuh index b1bc1d40758..cadfea81925 100644 --- a/cpp/open3d/core/nns/kernel/Select.cuh +++ b/cpp/open3d/core/nns/kernel/Select.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/StaticUtils.cuh b/cpp/open3d/core/nns/kernel/StaticUtils.cuh index 625d740a731..f636ff9e430 100644 --- a/cpp/open3d/core/nns/kernel/StaticUtils.cuh +++ b/cpp/open3d/core/nns/kernel/StaticUtils.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/core/nns/kernel/WarpShuffle.cuh b/cpp/open3d/core/nns/kernel/WarpShuffle.cuh index f5b437de2a3..bce9a4a9362 100644 --- a/cpp/open3d/core/nns/kernel/WarpShuffle.cuh +++ b/cpp/open3d/core/nns/kernel/WarpShuffle.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // MIT License diff --git a/cpp/open3d/data/Dataset.cpp b/cpp/open3d/data/Dataset.cpp index 8cd568c9856..60f475958c6 100644 --- a/cpp/open3d/data/Dataset.cpp +++ b/cpp/open3d/data/Dataset.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/Dataset.h b/cpp/open3d/data/Dataset.h index 35c448d11e0..be723fd30a7 100644 --- a/cpp/open3d/data/Dataset.h +++ b/cpp/open3d/data/Dataset.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/ArmadilloMesh.cpp b/cpp/open3d/data/dataset/ArmadilloMesh.cpp index f2a73720a3a..2627515c323 100644 --- a/cpp/open3d/data/dataset/ArmadilloMesh.cpp +++ b/cpp/open3d/data/dataset/ArmadilloMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/AvocadoModel.cpp b/cpp/open3d/data/dataset/AvocadoModel.cpp index 5c67cddbebd..0ea705aae63 100644 --- a/cpp/open3d/data/dataset/AvocadoModel.cpp +++ b/cpp/open3d/data/dataset/AvocadoModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/BedroomRGBDImages.cpp b/cpp/open3d/data/dataset/BedroomRGBDImages.cpp index 053184ded91..d9c17488739 100644 --- a/cpp/open3d/data/dataset/BedroomRGBDImages.cpp +++ b/cpp/open3d/data/dataset/BedroomRGBDImages.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/BunnyMesh.cpp b/cpp/open3d/data/dataset/BunnyMesh.cpp index 0555fa9291c..ffb07cb3c2c 100644 --- a/cpp/open3d/data/dataset/BunnyMesh.cpp +++ b/cpp/open3d/data/dataset/BunnyMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/CrateModel.cpp b/cpp/open3d/data/dataset/CrateModel.cpp index b99d9ac97e5..ecc1e956b9c 100644 --- a/cpp/open3d/data/dataset/CrateModel.cpp +++ b/cpp/open3d/data/dataset/CrateModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DamagedHelmetModel.cpp b/cpp/open3d/data/dataset/DamagedHelmetModel.cpp index b97d3e20359..b64d2a5ff3f 100644 --- a/cpp/open3d/data/dataset/DamagedHelmetModel.cpp +++ b/cpp/open3d/data/dataset/DamagedHelmetModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoColoredICPPointClouds.cpp b/cpp/open3d/data/dataset/DemoColoredICPPointClouds.cpp index b6660ae083c..49e883cde06 100644 --- a/cpp/open3d/data/dataset/DemoColoredICPPointClouds.cpp +++ b/cpp/open3d/data/dataset/DemoColoredICPPointClouds.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoCropPointCloud.cpp b/cpp/open3d/data/dataset/DemoCropPointCloud.cpp index c637a0fa173..33e07e82610 100644 --- a/cpp/open3d/data/dataset/DemoCropPointCloud.cpp +++ b/cpp/open3d/data/dataset/DemoCropPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoCustomVisualization.cpp b/cpp/open3d/data/dataset/DemoCustomVisualization.cpp index e7da973324a..b7ee361a93d 100644 --- a/cpp/open3d/data/dataset/DemoCustomVisualization.cpp +++ b/cpp/open3d/data/dataset/DemoCustomVisualization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoDopplerICPSequence.cpp b/cpp/open3d/data/dataset/DemoDopplerICPSequence.cpp index f4f29a17645..172fc305b8a 100644 --- a/cpp/open3d/data/dataset/DemoDopplerICPSequence.cpp +++ b/cpp/open3d/data/dataset/DemoDopplerICPSequence.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoFeatureMatchingPointClouds.cpp b/cpp/open3d/data/dataset/DemoFeatureMatchingPointClouds.cpp index f2e3aa8fbb2..4774e6bcf00 100644 --- a/cpp/open3d/data/dataset/DemoFeatureMatchingPointClouds.cpp +++ b/cpp/open3d/data/dataset/DemoFeatureMatchingPointClouds.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoICPPointClouds.cpp b/cpp/open3d/data/dataset/DemoICPPointClouds.cpp index eafc71d66a3..7c18c3ef8b3 100644 --- a/cpp/open3d/data/dataset/DemoICPPointClouds.cpp +++ b/cpp/open3d/data/dataset/DemoICPPointClouds.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/DemoPoseGraphOptimization.cpp b/cpp/open3d/data/dataset/DemoPoseGraphOptimization.cpp index a570c362cae..6bb09273733 100644 --- a/cpp/open3d/data/dataset/DemoPoseGraphOptimization.cpp +++ b/cpp/open3d/data/dataset/DemoPoseGraphOptimization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/EaglePointCloud.cpp b/cpp/open3d/data/dataset/EaglePointCloud.cpp index 0c80b82c865..35a5c51f40e 100644 --- a/cpp/open3d/data/dataset/EaglePointCloud.cpp +++ b/cpp/open3d/data/dataset/EaglePointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/FlightHelmetModel.cpp b/cpp/open3d/data/dataset/FlightHelmetModel.cpp index 94f226fc16d..ab5a104c4f9 100644 --- a/cpp/open3d/data/dataset/FlightHelmetModel.cpp +++ b/cpp/open3d/data/dataset/FlightHelmetModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/JackJackL515Bag.cpp b/cpp/open3d/data/dataset/JackJackL515Bag.cpp index 9ba9d270a08..4dd4f8c7eac 100644 --- a/cpp/open3d/data/dataset/JackJackL515Bag.cpp +++ b/cpp/open3d/data/dataset/JackJackL515Bag.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/JuneauImage.cpp b/cpp/open3d/data/dataset/JuneauImage.cpp index 18357465a55..349d05348c1 100644 --- a/cpp/open3d/data/dataset/JuneauImage.cpp +++ b/cpp/open3d/data/dataset/JuneauImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/KnotMesh.cpp b/cpp/open3d/data/dataset/KnotMesh.cpp index b900b4859b6..1f9e00aa352 100644 --- a/cpp/open3d/data/dataset/KnotMesh.cpp +++ b/cpp/open3d/data/dataset/KnotMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/LivingRoomPointClouds.cpp b/cpp/open3d/data/dataset/LivingRoomPointClouds.cpp index 6de432c9b20..73fab7b9699 100644 --- a/cpp/open3d/data/dataset/LivingRoomPointClouds.cpp +++ b/cpp/open3d/data/dataset/LivingRoomPointClouds.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/LoungeRGBDImages.cpp b/cpp/open3d/data/dataset/LoungeRGBDImages.cpp index d1b6a39b1a9..7f2268788b8 100644 --- a/cpp/open3d/data/dataset/LoungeRGBDImages.cpp +++ b/cpp/open3d/data/dataset/LoungeRGBDImages.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/MetalTexture.cpp b/cpp/open3d/data/dataset/MetalTexture.cpp index 0176b5b7803..b778fa003b1 100644 --- a/cpp/open3d/data/dataset/MetalTexture.cpp +++ b/cpp/open3d/data/dataset/MetalTexture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/MonkeyModel.cpp b/cpp/open3d/data/dataset/MonkeyModel.cpp index 7685760aa4f..d39580936d0 100644 --- a/cpp/open3d/data/dataset/MonkeyModel.cpp +++ b/cpp/open3d/data/dataset/MonkeyModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/OfficePointClouds.cpp b/cpp/open3d/data/dataset/OfficePointClouds.cpp index 45955901abf..0066f70fd59 100644 --- a/cpp/open3d/data/dataset/OfficePointClouds.cpp +++ b/cpp/open3d/data/dataset/OfficePointClouds.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/PCDPointCloud.cpp b/cpp/open3d/data/dataset/PCDPointCloud.cpp index 64e4168f933..f1495559d4f 100644 --- a/cpp/open3d/data/dataset/PCDPointCloud.cpp +++ b/cpp/open3d/data/dataset/PCDPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/PLYPointCloud.cpp b/cpp/open3d/data/dataset/PLYPointCloud.cpp index 7d67d66a5e3..b08c2929e07 100644 --- a/cpp/open3d/data/dataset/PLYPointCloud.cpp +++ b/cpp/open3d/data/dataset/PLYPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/PTSPointCloud.cpp b/cpp/open3d/data/dataset/PTSPointCloud.cpp index ea2e963264b..ce5b1f1ede8 100644 --- a/cpp/open3d/data/dataset/PTSPointCloud.cpp +++ b/cpp/open3d/data/dataset/PTSPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/PaintedPlasterTexture.cpp b/cpp/open3d/data/dataset/PaintedPlasterTexture.cpp index a7ff8f3842d..2cafe5e8522 100644 --- a/cpp/open3d/data/dataset/PaintedPlasterTexture.cpp +++ b/cpp/open3d/data/dataset/PaintedPlasterTexture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom1.cpp b/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom1.cpp index 54710d28c54..0ae3258355c 100644 --- a/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom1.cpp +++ b/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom1.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom2.cpp b/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom2.cpp index b9d6070c0f7..9f8e65d173f 100644 --- a/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom2.cpp +++ b/cpp/open3d/data/dataset/RedwoodIndoorLivingRoom2.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/RedwoodIndoorOffice1.cpp b/cpp/open3d/data/dataset/RedwoodIndoorOffice1.cpp index 0fbfcf329d5..45a8bb32243 100644 --- a/cpp/open3d/data/dataset/RedwoodIndoorOffice1.cpp +++ b/cpp/open3d/data/dataset/RedwoodIndoorOffice1.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/RedwoodIndoorOffice2.cpp b/cpp/open3d/data/dataset/RedwoodIndoorOffice2.cpp index bdd61f9986c..b9167c48706 100644 --- a/cpp/open3d/data/dataset/RedwoodIndoorOffice2.cpp +++ b/cpp/open3d/data/dataset/RedwoodIndoorOffice2.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleFountainRGBDImages.cpp b/cpp/open3d/data/dataset/SampleFountainRGBDImages.cpp index 1b4436a42d5..c65c8b1ede2 100644 --- a/cpp/open3d/data/dataset/SampleFountainRGBDImages.cpp +++ b/cpp/open3d/data/dataset/SampleFountainRGBDImages.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleICPPointClouds.cpp b/cpp/open3d/data/dataset/SampleICPPointClouds.cpp index 445ce35aff2..d2e989c6f0f 100644 --- a/cpp/open3d/data/dataset/SampleICPPointClouds.cpp +++ b/cpp/open3d/data/dataset/SampleICPPointClouds.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleL515Bag.cpp b/cpp/open3d/data/dataset/SampleL515Bag.cpp index bb442d329cc..c889699b746 100644 --- a/cpp/open3d/data/dataset/SampleL515Bag.cpp +++ b/cpp/open3d/data/dataset/SampleL515Bag.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleNYURGBDImage.cpp b/cpp/open3d/data/dataset/SampleNYURGBDImage.cpp index 20c9ceb8304..6d6b83c570a 100644 --- a/cpp/open3d/data/dataset/SampleNYURGBDImage.cpp +++ b/cpp/open3d/data/dataset/SampleNYURGBDImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleRedwoodRGBDImages.cpp b/cpp/open3d/data/dataset/SampleRedwoodRGBDImages.cpp index f8e7c96b45a..30144480523 100644 --- a/cpp/open3d/data/dataset/SampleRedwoodRGBDImages.cpp +++ b/cpp/open3d/data/dataset/SampleRedwoodRGBDImages.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleSUNRGBDImage.cpp b/cpp/open3d/data/dataset/SampleSUNRGBDImage.cpp index 308ab925adf..b8053f5ef7f 100644 --- a/cpp/open3d/data/dataset/SampleSUNRGBDImage.cpp +++ b/cpp/open3d/data/dataset/SampleSUNRGBDImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SampleTUMRGBDImage.cpp b/cpp/open3d/data/dataset/SampleTUMRGBDImage.cpp index 19798c5e333..60aa04e56e4 100644 --- a/cpp/open3d/data/dataset/SampleTUMRGBDImage.cpp +++ b/cpp/open3d/data/dataset/SampleTUMRGBDImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/SwordModel.cpp b/cpp/open3d/data/dataset/SwordModel.cpp index c9d74e7cb32..0d1db667e8d 100644 --- a/cpp/open3d/data/dataset/SwordModel.cpp +++ b/cpp/open3d/data/dataset/SwordModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/TerrazzoTexture.cpp b/cpp/open3d/data/dataset/TerrazzoTexture.cpp index beb70b3284d..08d1f74445b 100644 --- a/cpp/open3d/data/dataset/TerrazzoTexture.cpp +++ b/cpp/open3d/data/dataset/TerrazzoTexture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/TilesTexture.cpp b/cpp/open3d/data/dataset/TilesTexture.cpp index 719f9bf6a37..d3983e5d0cb 100644 --- a/cpp/open3d/data/dataset/TilesTexture.cpp +++ b/cpp/open3d/data/dataset/TilesTexture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/WoodFloorTexture.cpp b/cpp/open3d/data/dataset/WoodFloorTexture.cpp index ae6e0a26771..9640f9d811c 100644 --- a/cpp/open3d/data/dataset/WoodFloorTexture.cpp +++ b/cpp/open3d/data/dataset/WoodFloorTexture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/data/dataset/WoodTexture.cpp b/cpp/open3d/data/dataset/WoodTexture.cpp index d62549f5e04..2198ecd009d 100644 --- a/cpp/open3d/data/dataset/WoodTexture.cpp +++ b/cpp/open3d/data/dataset/WoodTexture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/BoundingVolume.cpp b/cpp/open3d/geometry/BoundingVolume.cpp index 89b0ca70e5d..5f5f5c6a6e3 100644 --- a/cpp/open3d/geometry/BoundingVolume.cpp +++ b/cpp/open3d/geometry/BoundingVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/BoundingVolume.h b/cpp/open3d/geometry/BoundingVolume.h index b4b310f3ca0..432050bccdc 100644 --- a/cpp/open3d/geometry/BoundingVolume.h +++ b/cpp/open3d/geometry/BoundingVolume.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/EstimateNormals.cpp b/cpp/open3d/geometry/EstimateNormals.cpp index 5bc9abc0ba3..d51423182f0 100644 --- a/cpp/open3d/geometry/EstimateNormals.cpp +++ b/cpp/open3d/geometry/EstimateNormals.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Geometry.h b/cpp/open3d/geometry/Geometry.h index bb76b55e8c2..4ddf79bcc0c 100644 --- a/cpp/open3d/geometry/Geometry.h +++ b/cpp/open3d/geometry/Geometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Geometry2D.h b/cpp/open3d/geometry/Geometry2D.h index 0c66887410b..f2794883f63 100644 --- a/cpp/open3d/geometry/Geometry2D.h +++ b/cpp/open3d/geometry/Geometry2D.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Geometry3D.cpp b/cpp/open3d/geometry/Geometry3D.cpp index af3ecceb6d2..dc240d5afa3 100644 --- a/cpp/open3d/geometry/Geometry3D.cpp +++ b/cpp/open3d/geometry/Geometry3D.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Geometry3D.h b/cpp/open3d/geometry/Geometry3D.h index 46ebd388690..74a0cc887a3 100644 --- a/cpp/open3d/geometry/Geometry3D.h +++ b/cpp/open3d/geometry/Geometry3D.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/HalfEdgeTriangleMesh.cpp b/cpp/open3d/geometry/HalfEdgeTriangleMesh.cpp index 92b3f201d39..c9a7c32e3c4 100644 --- a/cpp/open3d/geometry/HalfEdgeTriangleMesh.cpp +++ b/cpp/open3d/geometry/HalfEdgeTriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/HalfEdgeTriangleMesh.h b/cpp/open3d/geometry/HalfEdgeTriangleMesh.h index 33ceeda71f6..d1ce3e4d893 100644 --- a/cpp/open3d/geometry/HalfEdgeTriangleMesh.h +++ b/cpp/open3d/geometry/HalfEdgeTriangleMesh.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/ISSKeypoints.cpp b/cpp/open3d/geometry/ISSKeypoints.cpp index f47abae1ad2..a1c5257cea2 100644 --- a/cpp/open3d/geometry/ISSKeypoints.cpp +++ b/cpp/open3d/geometry/ISSKeypoints.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/open3d/geometry/Image.cpp b/cpp/open3d/geometry/Image.cpp index f14f709a108..9b145b676cb 100644 --- a/cpp/open3d/geometry/Image.cpp +++ b/cpp/open3d/geometry/Image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Image.h b/cpp/open3d/geometry/Image.h index ae89866a289..0dcf5469c66 100644 --- a/cpp/open3d/geometry/Image.h +++ b/cpp/open3d/geometry/Image.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/ImageFactory.cpp b/cpp/open3d/geometry/ImageFactory.cpp index d9ad9561e81..2e48af52b26 100644 --- a/cpp/open3d/geometry/ImageFactory.cpp +++ b/cpp/open3d/geometry/ImageFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/IntersectionTest.cpp b/cpp/open3d/geometry/IntersectionTest.cpp index 851ac59b441..118c9f5d056 100644 --- a/cpp/open3d/geometry/IntersectionTest.cpp +++ b/cpp/open3d/geometry/IntersectionTest.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/IntersectionTest.h b/cpp/open3d/geometry/IntersectionTest.h index aa93b54a531..90f22fc9eb6 100644 --- a/cpp/open3d/geometry/IntersectionTest.h +++ b/cpp/open3d/geometry/IntersectionTest.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/KDTreeFlann.cpp b/cpp/open3d/geometry/KDTreeFlann.cpp index c81814a724d..c435a0fa2a3 100644 --- a/cpp/open3d/geometry/KDTreeFlann.cpp +++ b/cpp/open3d/geometry/KDTreeFlann.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/KDTreeFlann.h b/cpp/open3d/geometry/KDTreeFlann.h index cb41fccafb7..88fd9b946f0 100644 --- a/cpp/open3d/geometry/KDTreeFlann.h +++ b/cpp/open3d/geometry/KDTreeFlann.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/KDTreeSearchParam.h b/cpp/open3d/geometry/KDTreeSearchParam.h index 2032228e67a..9e1914e33cf 100644 --- a/cpp/open3d/geometry/KDTreeSearchParam.h +++ b/cpp/open3d/geometry/KDTreeSearchParam.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Keypoint.h b/cpp/open3d/geometry/Keypoint.h index 7e13d4dc110..48a8d1d78bd 100644 --- a/cpp/open3d/geometry/Keypoint.h +++ b/cpp/open3d/geometry/Keypoint.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/open3d/geometry/Line3D.cpp b/cpp/open3d/geometry/Line3D.cpp index 310603893ac..17b6a2f1dc7 100644 --- a/cpp/open3d/geometry/Line3D.cpp +++ b/cpp/open3d/geometry/Line3D.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Line3D.h b/cpp/open3d/geometry/Line3D.h index 5be5567e7c9..ea2f2d44521 100644 --- a/cpp/open3d/geometry/Line3D.h +++ b/cpp/open3d/geometry/Line3D.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/LineSet.cpp b/cpp/open3d/geometry/LineSet.cpp index ca6ce664b29..9a38d2a7371 100644 --- a/cpp/open3d/geometry/LineSet.cpp +++ b/cpp/open3d/geometry/LineSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/LineSet.h b/cpp/open3d/geometry/LineSet.h index 1dbffbb5e75..3718b6d446c 100644 --- a/cpp/open3d/geometry/LineSet.h +++ b/cpp/open3d/geometry/LineSet.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/LineSetFactory.cpp b/cpp/open3d/geometry/LineSetFactory.cpp index 3a66d86d300..029fdd9d1bb 100644 --- a/cpp/open3d/geometry/LineSetFactory.cpp +++ b/cpp/open3d/geometry/LineSetFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/MeshBase.cpp b/cpp/open3d/geometry/MeshBase.cpp index b8986460e1b..3d5714d9072 100644 --- a/cpp/open3d/geometry/MeshBase.cpp +++ b/cpp/open3d/geometry/MeshBase.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/MeshBase.h b/cpp/open3d/geometry/MeshBase.h index f479a925913..2a5793ac62b 100644 --- a/cpp/open3d/geometry/MeshBase.h +++ b/cpp/open3d/geometry/MeshBase.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Octree.cpp b/cpp/open3d/geometry/Octree.cpp index ad62a7ece63..23efcb06e81 100644 --- a/cpp/open3d/geometry/Octree.cpp +++ b/cpp/open3d/geometry/Octree.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Octree.h b/cpp/open3d/geometry/Octree.h index d2b57262a06..5b3b6d90c52 100644 --- a/cpp/open3d/geometry/Octree.h +++ b/cpp/open3d/geometry/Octree.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/PointCloud.cpp b/cpp/open3d/geometry/PointCloud.cpp index b0b6e0130ae..3c93f370395 100644 --- a/cpp/open3d/geometry/PointCloud.cpp +++ b/cpp/open3d/geometry/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/PointCloud.h b/cpp/open3d/geometry/PointCloud.h index fec0d3033d1..32afbc34653 100644 --- a/cpp/open3d/geometry/PointCloud.h +++ b/cpp/open3d/geometry/PointCloud.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/PointCloudCluster.cpp b/cpp/open3d/geometry/PointCloudCluster.cpp index 6efad46bd50..9dd5f0dc162 100644 --- a/cpp/open3d/geometry/PointCloudCluster.cpp +++ b/cpp/open3d/geometry/PointCloudCluster.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/PointCloudFactory.cpp b/cpp/open3d/geometry/PointCloudFactory.cpp index 184b93a62b8..183919fa9a1 100644 --- a/cpp/open3d/geometry/PointCloudFactory.cpp +++ b/cpp/open3d/geometry/PointCloudFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/PointCloudPlanarPatchDetection.cpp b/cpp/open3d/geometry/PointCloudPlanarPatchDetection.cpp index b76bc9f3fc4..56f275f150b 100644 --- a/cpp/open3d/geometry/PointCloudPlanarPatchDetection.cpp +++ b/cpp/open3d/geometry/PointCloudPlanarPatchDetection.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/PointCloudSegmentation.cpp b/cpp/open3d/geometry/PointCloudSegmentation.cpp index 2968810cecc..514739f026b 100644 --- a/cpp/open3d/geometry/PointCloudSegmentation.cpp +++ b/cpp/open3d/geometry/PointCloudSegmentation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Qhull.cpp b/cpp/open3d/geometry/Qhull.cpp index 30fb485e12c..4ae7de218a3 100644 --- a/cpp/open3d/geometry/Qhull.cpp +++ b/cpp/open3d/geometry/Qhull.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/Qhull.h b/cpp/open3d/geometry/Qhull.h index c80bb0b4ac9..b8b56e684f9 100644 --- a/cpp/open3d/geometry/Qhull.h +++ b/cpp/open3d/geometry/Qhull.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/RGBDImage.cpp b/cpp/open3d/geometry/RGBDImage.cpp index 08292097ebb..baaecad4938 100644 --- a/cpp/open3d/geometry/RGBDImage.cpp +++ b/cpp/open3d/geometry/RGBDImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/RGBDImage.h b/cpp/open3d/geometry/RGBDImage.h index 75db0b68cee..9d179ad0783 100644 --- a/cpp/open3d/geometry/RGBDImage.h +++ b/cpp/open3d/geometry/RGBDImage.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/RGBDImageFactory.cpp b/cpp/open3d/geometry/RGBDImageFactory.cpp index 1f2819ebe3a..2d68a9fdf46 100644 --- a/cpp/open3d/geometry/RGBDImageFactory.cpp +++ b/cpp/open3d/geometry/RGBDImageFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/SurfaceReconstructionAlphaShape.cpp b/cpp/open3d/geometry/SurfaceReconstructionAlphaShape.cpp index eeff478a65f..f5b941e2b7d 100644 --- a/cpp/open3d/geometry/SurfaceReconstructionAlphaShape.cpp +++ b/cpp/open3d/geometry/SurfaceReconstructionAlphaShape.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/SurfaceReconstructionBallPivoting.cpp b/cpp/open3d/geometry/SurfaceReconstructionBallPivoting.cpp index 73e399309ed..994dbc6e8c8 100644 --- a/cpp/open3d/geometry/SurfaceReconstructionBallPivoting.cpp +++ b/cpp/open3d/geometry/SurfaceReconstructionBallPivoting.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/SurfaceReconstructionPoisson.cpp b/cpp/open3d/geometry/SurfaceReconstructionPoisson.cpp index 08da79d9365..a1553d6a653 100644 --- a/cpp/open3d/geometry/SurfaceReconstructionPoisson.cpp +++ b/cpp/open3d/geometry/SurfaceReconstructionPoisson.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TetraMesh.cpp b/cpp/open3d/geometry/TetraMesh.cpp index a742f17431b..5274736fadf 100644 --- a/cpp/open3d/geometry/TetraMesh.cpp +++ b/cpp/open3d/geometry/TetraMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TetraMesh.h b/cpp/open3d/geometry/TetraMesh.h index a23dd9dc623..b2869c520b9 100644 --- a/cpp/open3d/geometry/TetraMesh.h +++ b/cpp/open3d/geometry/TetraMesh.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TetraMeshFactory.cpp b/cpp/open3d/geometry/TetraMeshFactory.cpp index dfa21d715d6..522417045ba 100644 --- a/cpp/open3d/geometry/TetraMeshFactory.cpp +++ b/cpp/open3d/geometry/TetraMeshFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TriangleMesh.cpp b/cpp/open3d/geometry/TriangleMesh.cpp index 9e909858736..390557f762b 100644 --- a/cpp/open3d/geometry/TriangleMesh.cpp +++ b/cpp/open3d/geometry/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TriangleMesh.h b/cpp/open3d/geometry/TriangleMesh.h index ba3105f0d60..1da782fd9b6 100644 --- a/cpp/open3d/geometry/TriangleMesh.h +++ b/cpp/open3d/geometry/TriangleMesh.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TriangleMeshDeformation.cpp b/cpp/open3d/geometry/TriangleMeshDeformation.cpp index adfe76b76ed..3c037092341 100644 --- a/cpp/open3d/geometry/TriangleMeshDeformation.cpp +++ b/cpp/open3d/geometry/TriangleMeshDeformation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TriangleMeshFactory.cpp b/cpp/open3d/geometry/TriangleMeshFactory.cpp index 395b6622bbc..68341245bf4 100644 --- a/cpp/open3d/geometry/TriangleMeshFactory.cpp +++ b/cpp/open3d/geometry/TriangleMeshFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TriangleMeshSimplification.cpp b/cpp/open3d/geometry/TriangleMeshSimplification.cpp index 081d0842a2c..12f98d7d011 100644 --- a/cpp/open3d/geometry/TriangleMeshSimplification.cpp +++ b/cpp/open3d/geometry/TriangleMeshSimplification.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/TriangleMeshSubdivide.cpp b/cpp/open3d/geometry/TriangleMeshSubdivide.cpp index 685e316b6f1..b6791df4db9 100644 --- a/cpp/open3d/geometry/TriangleMeshSubdivide.cpp +++ b/cpp/open3d/geometry/TriangleMeshSubdivide.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/VoxelGrid.cpp b/cpp/open3d/geometry/VoxelGrid.cpp index dafe6b52c01..aa028b22ac9 100644 --- a/cpp/open3d/geometry/VoxelGrid.cpp +++ b/cpp/open3d/geometry/VoxelGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/VoxelGrid.h b/cpp/open3d/geometry/VoxelGrid.h index 30a228206e0..1c15a5073bb 100644 --- a/cpp/open3d/geometry/VoxelGrid.h +++ b/cpp/open3d/geometry/VoxelGrid.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/geometry/VoxelGridFactory.cpp b/cpp/open3d/geometry/VoxelGridFactory.cpp index a083c6524d5..bbe5df52c3f 100644 --- a/cpp/open3d/geometry/VoxelGridFactory.cpp +++ b/cpp/open3d/geometry/VoxelGridFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/FeatureIO.cpp b/cpp/open3d/io/FeatureIO.cpp index a0320f94de6..db7a675760e 100644 --- a/cpp/open3d/io/FeatureIO.cpp +++ b/cpp/open3d/io/FeatureIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/FeatureIO.h b/cpp/open3d/io/FeatureIO.h index cb8bb133643..1cbf9e56c90 100644 --- a/cpp/open3d/io/FeatureIO.h +++ b/cpp/open3d/io/FeatureIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/FileFormatIO.cpp b/cpp/open3d/io/FileFormatIO.cpp index 008b0debdb4..89089978292 100644 --- a/cpp/open3d/io/FileFormatIO.cpp +++ b/cpp/open3d/io/FileFormatIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/FileFormatIO.h b/cpp/open3d/io/FileFormatIO.h index 02233604bb8..0f3b9343be7 100644 --- a/cpp/open3d/io/FileFormatIO.h +++ b/cpp/open3d/io/FileFormatIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/IJsonConvertibleIO.cpp b/cpp/open3d/io/IJsonConvertibleIO.cpp index 719213e9abc..25543f4a786 100644 --- a/cpp/open3d/io/IJsonConvertibleIO.cpp +++ b/cpp/open3d/io/IJsonConvertibleIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/IJsonConvertibleIO.h b/cpp/open3d/io/IJsonConvertibleIO.h index a366b4f5ef8..0e6d6f6af18 100644 --- a/cpp/open3d/io/IJsonConvertibleIO.h +++ b/cpp/open3d/io/IJsonConvertibleIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/ImageIO.cpp b/cpp/open3d/io/ImageIO.cpp index c00361a449a..737d2ebbdaf 100644 --- a/cpp/open3d/io/ImageIO.cpp +++ b/cpp/open3d/io/ImageIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/ImageIO.h b/cpp/open3d/io/ImageIO.h index 45b0a3f71ed..843231c442b 100644 --- a/cpp/open3d/io/ImageIO.h +++ b/cpp/open3d/io/ImageIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/ImageWarpingFieldIO.cpp b/cpp/open3d/io/ImageWarpingFieldIO.cpp index 98d660ca1c7..42d97bb909a 100644 --- a/cpp/open3d/io/ImageWarpingFieldIO.cpp +++ b/cpp/open3d/io/ImageWarpingFieldIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/ImageWarpingFieldIO.h b/cpp/open3d/io/ImageWarpingFieldIO.h index 915c7d731d9..f1b749fbc34 100644 --- a/cpp/open3d/io/ImageWarpingFieldIO.h +++ b/cpp/open3d/io/ImageWarpingFieldIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/LineSetIO.cpp b/cpp/open3d/io/LineSetIO.cpp index 72d04c1e6af..03810afdf7f 100644 --- a/cpp/open3d/io/LineSetIO.cpp +++ b/cpp/open3d/io/LineSetIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/LineSetIO.h b/cpp/open3d/io/LineSetIO.h index 00cf61c0112..6965b75be83 100644 --- a/cpp/open3d/io/LineSetIO.h +++ b/cpp/open3d/io/LineSetIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/ModelIO.cpp b/cpp/open3d/io/ModelIO.cpp index b663307a451..cacc9b5323a 100644 --- a/cpp/open3d/io/ModelIO.cpp +++ b/cpp/open3d/io/ModelIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/ModelIO.h b/cpp/open3d/io/ModelIO.h index 57bd7f7d792..c97370e120e 100644 --- a/cpp/open3d/io/ModelIO.h +++ b/cpp/open3d/io/ModelIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/OctreeIO.cpp b/cpp/open3d/io/OctreeIO.cpp index a6d6d11f1ba..ae43c3724b2 100644 --- a/cpp/open3d/io/OctreeIO.cpp +++ b/cpp/open3d/io/OctreeIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/OctreeIO.h b/cpp/open3d/io/OctreeIO.h index 30eda19e81e..57ee3b3f400 100644 --- a/cpp/open3d/io/OctreeIO.h +++ b/cpp/open3d/io/OctreeIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/PinholeCameraTrajectoryIO.cpp b/cpp/open3d/io/PinholeCameraTrajectoryIO.cpp index cf64c593c2c..7319e9fc56a 100644 --- a/cpp/open3d/io/PinholeCameraTrajectoryIO.cpp +++ b/cpp/open3d/io/PinholeCameraTrajectoryIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/PinholeCameraTrajectoryIO.h b/cpp/open3d/io/PinholeCameraTrajectoryIO.h index 5a043300325..2568ff5725e 100644 --- a/cpp/open3d/io/PinholeCameraTrajectoryIO.h +++ b/cpp/open3d/io/PinholeCameraTrajectoryIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/PointCloudIO.cpp b/cpp/open3d/io/PointCloudIO.cpp index b5d10f33a00..479a5e47203 100644 --- a/cpp/open3d/io/PointCloudIO.cpp +++ b/cpp/open3d/io/PointCloudIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/PointCloudIO.h b/cpp/open3d/io/PointCloudIO.h index e7811ab58ff..a2b27971f22 100644 --- a/cpp/open3d/io/PointCloudIO.h +++ b/cpp/open3d/io/PointCloudIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/PoseGraphIO.cpp b/cpp/open3d/io/PoseGraphIO.cpp index 64de70f945c..805b5e3de9b 100644 --- a/cpp/open3d/io/PoseGraphIO.cpp +++ b/cpp/open3d/io/PoseGraphIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/PoseGraphIO.h b/cpp/open3d/io/PoseGraphIO.h index 3d8ad1fb9fa..c761c65212d 100644 --- a/cpp/open3d/io/PoseGraphIO.h +++ b/cpp/open3d/io/PoseGraphIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/TriangleMeshIO.cpp b/cpp/open3d/io/TriangleMeshIO.cpp index 59672c8ce2d..eab7648a6c2 100644 --- a/cpp/open3d/io/TriangleMeshIO.cpp +++ b/cpp/open3d/io/TriangleMeshIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/TriangleMeshIO.h b/cpp/open3d/io/TriangleMeshIO.h index 32ec2aa751a..561efe8bd20 100644 --- a/cpp/open3d/io/TriangleMeshIO.h +++ b/cpp/open3d/io/TriangleMeshIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/VoxelGridIO.cpp b/cpp/open3d/io/VoxelGridIO.cpp index d8e5a2e757a..bbe6b3e1953 100644 --- a/cpp/open3d/io/VoxelGridIO.cpp +++ b/cpp/open3d/io/VoxelGridIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/VoxelGridIO.h b/cpp/open3d/io/VoxelGridIO.h index 70cb90a4a10..8c5484ca091 100644 --- a/cpp/open3d/io/VoxelGridIO.h +++ b/cpp/open3d/io/VoxelGridIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileASSIMP.cpp b/cpp/open3d/io/file_format/FileASSIMP.cpp index 15bc3ffd26a..548ffad165e 100644 --- a/cpp/open3d/io/file_format/FileASSIMP.cpp +++ b/cpp/open3d/io/file_format/FileASSIMP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileBIN.cpp b/cpp/open3d/io/file_format/FileBIN.cpp index 2399c9b3ead..27ef362f13b 100644 --- a/cpp/open3d/io/file_format/FileBIN.cpp +++ b/cpp/open3d/io/file_format/FileBIN.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileGLTF.cpp b/cpp/open3d/io/file_format/FileGLTF.cpp index a5474b4021a..7d82eb7be4d 100644 --- a/cpp/open3d/io/file_format/FileGLTF.cpp +++ b/cpp/open3d/io/file_format/FileGLTF.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileJPG.cpp b/cpp/open3d/io/file_format/FileJPG.cpp index cb9cf6760e9..de0a098fc21 100644 --- a/cpp/open3d/io/file_format/FileJPG.cpp +++ b/cpp/open3d/io/file_format/FileJPG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileJSON.cpp b/cpp/open3d/io/file_format/FileJSON.cpp index 6e1c0c8bbea..260971aaa44 100644 --- a/cpp/open3d/io/file_format/FileJSON.cpp +++ b/cpp/open3d/io/file_format/FileJSON.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileLOG.cpp b/cpp/open3d/io/file_format/FileLOG.cpp index 64748edcc60..daf20fb632a 100644 --- a/cpp/open3d/io/file_format/FileLOG.cpp +++ b/cpp/open3d/io/file_format/FileLOG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileOBJ.cpp b/cpp/open3d/io/file_format/FileOBJ.cpp index a06b30a97fb..dfa715f860d 100644 --- a/cpp/open3d/io/file_format/FileOBJ.cpp +++ b/cpp/open3d/io/file_format/FileOBJ.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileOFF.cpp b/cpp/open3d/io/file_format/FileOFF.cpp index 080da77041b..a4716f86e40 100644 --- a/cpp/open3d/io/file_format/FileOFF.cpp +++ b/cpp/open3d/io/file_format/FileOFF.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FilePCD.cpp b/cpp/open3d/io/file_format/FilePCD.cpp index 17aa080cd29..950d51eadf8 100644 --- a/cpp/open3d/io/file_format/FilePCD.cpp +++ b/cpp/open3d/io/file_format/FilePCD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FilePLY.cpp b/cpp/open3d/io/file_format/FilePLY.cpp index fa4cd73b027..fc2d9212281 100644 --- a/cpp/open3d/io/file_format/FilePLY.cpp +++ b/cpp/open3d/io/file_format/FilePLY.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FilePNG.cpp b/cpp/open3d/io/file_format/FilePNG.cpp index 55a7e410eda..e261c635ca1 100644 --- a/cpp/open3d/io/file_format/FilePNG.cpp +++ b/cpp/open3d/io/file_format/FilePNG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FilePTS.cpp b/cpp/open3d/io/file_format/FilePTS.cpp index 3773bd7fe5b..0d1f5545da2 100644 --- a/cpp/open3d/io/file_format/FilePTS.cpp +++ b/cpp/open3d/io/file_format/FilePTS.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileSTL.cpp b/cpp/open3d/io/file_format/FileSTL.cpp index ed73697c302..e8144414770 100644 --- a/cpp/open3d/io/file_format/FileSTL.cpp +++ b/cpp/open3d/io/file_format/FileSTL.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileTUM.cpp b/cpp/open3d/io/file_format/FileTUM.cpp index 53ba84fc650..f17bb1d25e6 100644 --- a/cpp/open3d/io/file_format/FileTUM.cpp +++ b/cpp/open3d/io/file_format/FileTUM.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileXYZ.cpp b/cpp/open3d/io/file_format/FileXYZ.cpp index ceaa00245f2..a20035c0cd9 100644 --- a/cpp/open3d/io/file_format/FileXYZ.cpp +++ b/cpp/open3d/io/file_format/FileXYZ.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileXYZN.cpp b/cpp/open3d/io/file_format/FileXYZN.cpp index 7dc92850982..a2579bddca2 100644 --- a/cpp/open3d/io/file_format/FileXYZN.cpp +++ b/cpp/open3d/io/file_format/FileXYZN.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/file_format/FileXYZRGB.cpp b/cpp/open3d/io/file_format/FileXYZRGB.cpp index 26a62fcd28f..7714574d44c 100644 --- a/cpp/open3d/io/file_format/FileXYZRGB.cpp +++ b/cpp/open3d/io/file_format/FileXYZRGB.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/BufferConnection.cpp b/cpp/open3d/io/rpc/BufferConnection.cpp index fcc5d29e2bd..2ea5b7da5d2 100644 --- a/cpp/open3d/io/rpc/BufferConnection.cpp +++ b/cpp/open3d/io/rpc/BufferConnection.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/BufferConnection.h b/cpp/open3d/io/rpc/BufferConnection.h index aacec80e928..0af6073c206 100644 --- a/cpp/open3d/io/rpc/BufferConnection.h +++ b/cpp/open3d/io/rpc/BufferConnection.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/Connection.cpp b/cpp/open3d/io/rpc/Connection.cpp index c0d80b4d9fe..f4446c85628 100644 --- a/cpp/open3d/io/rpc/Connection.cpp +++ b/cpp/open3d/io/rpc/Connection.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/Connection.h b/cpp/open3d/io/rpc/Connection.h index fb5fcd63bbe..20c2f4c9ef0 100644 --- a/cpp/open3d/io/rpc/Connection.h +++ b/cpp/open3d/io/rpc/Connection.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/ConnectionBase.h b/cpp/open3d/io/rpc/ConnectionBase.h index ed977410680..94d0d67b0b0 100644 --- a/cpp/open3d/io/rpc/ConnectionBase.h +++ b/cpp/open3d/io/rpc/ConnectionBase.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/DummyMessageProcessor.h b/cpp/open3d/io/rpc/DummyMessageProcessor.h index 55a8d71229e..f57a955b609 100644 --- a/cpp/open3d/io/rpc/DummyMessageProcessor.h +++ b/cpp/open3d/io/rpc/DummyMessageProcessor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/DummyReceiver.cpp b/cpp/open3d/io/rpc/DummyReceiver.cpp index ce10e6d94e8..785184ec147 100644 --- a/cpp/open3d/io/rpc/DummyReceiver.cpp +++ b/cpp/open3d/io/rpc/DummyReceiver.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/DummyReceiver.h b/cpp/open3d/io/rpc/DummyReceiver.h index c1a73f74730..71eef978b5b 100644 --- a/cpp/open3d/io/rpc/DummyReceiver.h +++ b/cpp/open3d/io/rpc/DummyReceiver.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/MessageProcessorBase.cpp b/cpp/open3d/io/rpc/MessageProcessorBase.cpp index 6bd8d3345b0..3097500ffa2 100644 --- a/cpp/open3d/io/rpc/MessageProcessorBase.cpp +++ b/cpp/open3d/io/rpc/MessageProcessorBase.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/MessageProcessorBase.h b/cpp/open3d/io/rpc/MessageProcessorBase.h index d0869b0252a..0bd332d6b3a 100644 --- a/cpp/open3d/io/rpc/MessageProcessorBase.h +++ b/cpp/open3d/io/rpc/MessageProcessorBase.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/MessageUtils.cpp b/cpp/open3d/io/rpc/MessageUtils.cpp index 10cb9375dfb..91cf8bf55a3 100644 --- a/cpp/open3d/io/rpc/MessageUtils.cpp +++ b/cpp/open3d/io/rpc/MessageUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/MessageUtils.h b/cpp/open3d/io/rpc/MessageUtils.h index 9c529fe3776..16a191a2636 100644 --- a/cpp/open3d/io/rpc/MessageUtils.h +++ b/cpp/open3d/io/rpc/MessageUtils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/Messages.h b/cpp/open3d/io/rpc/Messages.h index 06f6c7fe933..674cc981089 100644 --- a/cpp/open3d/io/rpc/Messages.h +++ b/cpp/open3d/io/rpc/Messages.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/RemoteFunctions.cpp b/cpp/open3d/io/rpc/RemoteFunctions.cpp index 9fcf9805f70..ec6a6de8aef 100644 --- a/cpp/open3d/io/rpc/RemoteFunctions.cpp +++ b/cpp/open3d/io/rpc/RemoteFunctions.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/RemoteFunctions.h b/cpp/open3d/io/rpc/RemoteFunctions.h index cc75b3d9cac..f9e42fac280 100644 --- a/cpp/open3d/io/rpc/RemoteFunctions.h +++ b/cpp/open3d/io/rpc/RemoteFunctions.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/ZMQContext.cpp b/cpp/open3d/io/rpc/ZMQContext.cpp index 1d537b2ceb1..102d57f1875 100644 --- a/cpp/open3d/io/rpc/ZMQContext.cpp +++ b/cpp/open3d/io/rpc/ZMQContext.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/ZMQContext.h b/cpp/open3d/io/rpc/ZMQContext.h index 78b584dfbc1..9034b24eb32 100644 --- a/cpp/open3d/io/rpc/ZMQContext.h +++ b/cpp/open3d/io/rpc/ZMQContext.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/ZMQReceiver.cpp b/cpp/open3d/io/rpc/ZMQReceiver.cpp index 333c546bcd9..4f72310883c 100644 --- a/cpp/open3d/io/rpc/ZMQReceiver.cpp +++ b/cpp/open3d/io/rpc/ZMQReceiver.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/rpc/ZMQReceiver.h b/cpp/open3d/io/rpc/ZMQReceiver.h index f7f6d091f76..eb3bf21f54e 100644 --- a/cpp/open3d/io/rpc/ZMQReceiver.h +++ b/cpp/open3d/io/rpc/ZMQReceiver.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/RGBDRecorder.h b/cpp/open3d/io/sensor/RGBDRecorder.h index f13d6eb7546..e444d881dae 100644 --- a/cpp/open3d/io/sensor/RGBDRecorder.h +++ b/cpp/open3d/io/sensor/RGBDRecorder.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/RGBDSensor.h b/cpp/open3d/io/sensor/RGBDSensor.h index 977bdc03821..0119916828b 100644 --- a/cpp/open3d/io/sensor/RGBDSensor.h +++ b/cpp/open3d/io/sensor/RGBDSensor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/RGBDSensorConfig.h b/cpp/open3d/io/sensor/RGBDSensorConfig.h index 96e26b69f31..9b6f70e85cd 100644 --- a/cpp/open3d/io/sensor/RGBDSensorConfig.h +++ b/cpp/open3d/io/sensor/RGBDSensorConfig.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.cpp b/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.cpp index 8c8a9f41571..0ff6ef1135b 100644 --- a/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.h b/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.h index 0fecd26e0cb..7a973506503 100644 --- a/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.h +++ b/cpp/open3d/io/sensor/azure_kinect/AzureKinectRecorder.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.cpp b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.cpp index 962113b2df3..92d06eac28a 100644 --- a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.h b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.h index eb795432860..2fadf38dbad 100644 --- a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.h +++ b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.cpp b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.cpp index bb28b55def8..a2a8cf5ad89 100644 --- a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.h b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.h index 28dd15c90f7..6e4f7767ed3 100644 --- a/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.h +++ b/cpp/open3d/io/sensor/azure_kinect/AzureKinectSensorConfig.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.cpp b/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.cpp index 71b28bed59d..34b7e30ed19 100644 --- a/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.h b/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.h index 15e461d4285..fbca95dd71b 100644 --- a/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.h +++ b/cpp/open3d/io/sensor/azure_kinect/K4aPlugin.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.cpp b/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.cpp index c3b26726668..16ce06a0f87 100644 --- a/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.h b/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.h index e74bc9fc8d0..02e2ed06a10 100644 --- a/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.h +++ b/cpp/open3d/io/sensor/azure_kinect/MKVMetadata.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/MKVReader.cpp b/cpp/open3d/io/sensor/azure_kinect/MKVReader.cpp index 74dae9b5728..fe94cf65bf0 100644 --- a/cpp/open3d/io/sensor/azure_kinect/MKVReader.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/MKVReader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/MKVReader.h b/cpp/open3d/io/sensor/azure_kinect/MKVReader.h index 14e5b25c2a4..0e86cf8aec6 100644 --- a/cpp/open3d/io/sensor/azure_kinect/MKVReader.h +++ b/cpp/open3d/io/sensor/azure_kinect/MKVReader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/MKVWriter.cpp b/cpp/open3d/io/sensor/azure_kinect/MKVWriter.cpp index 2546b6ea897..81864bc12b3 100644 --- a/cpp/open3d/io/sensor/azure_kinect/MKVWriter.cpp +++ b/cpp/open3d/io/sensor/azure_kinect/MKVWriter.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/MKVWriter.h b/cpp/open3d/io/sensor/azure_kinect/MKVWriter.h index f2ddcb17b50..961cf02989a 100644 --- a/cpp/open3d/io/sensor/azure_kinect/MKVWriter.h +++ b/cpp/open3d/io/sensor/azure_kinect/MKVWriter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/io/sensor/azure_kinect/PluginMacros.h b/cpp/open3d/io/sensor/azure_kinect/PluginMacros.h index be28bf4eaf3..3af24031819 100644 --- a/cpp/open3d/io/sensor/azure_kinect/PluginMacros.h +++ b/cpp/open3d/io/sensor/azure_kinect/PluginMacros.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/Helper.h b/cpp/open3d/ml/Helper.h index c305ca24e0e..4193cfac984 100644 --- a/cpp/open3d/ml/Helper.h +++ b/cpp/open3d/ml/Helper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/ShapeChecking.h b/cpp/open3d/ml/ShapeChecking.h index 8a2d643613f..c978b4af573 100644 --- a/cpp/open3d/ml/ShapeChecking.h +++ b/cpp/open3d/ml/ShapeChecking.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/BallQuery.cu b/cpp/open3d/ml/contrib/BallQuery.cu index cb315de98fe..c68877765f5 100644 --- a/cpp/open3d/ml/contrib/BallQuery.cu +++ b/cpp/open3d/ml/contrib/BallQuery.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/BallQuery.cuh b/cpp/open3d/ml/contrib/BallQuery.cuh index fb51fbf580b..67d2c48a242 100644 --- a/cpp/open3d/ml/contrib/BallQuery.cuh +++ b/cpp/open3d/ml/contrib/BallQuery.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/Cloud.cpp b/cpp/open3d/ml/contrib/Cloud.cpp index a7d1acb730a..576927fe232 100644 --- a/cpp/open3d/ml/contrib/Cloud.cpp +++ b/cpp/open3d/ml/contrib/Cloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Source code from: https://github.com/HuguesTHOMAS/KPConv. diff --git a/cpp/open3d/ml/contrib/Cloud.h b/cpp/open3d/ml/contrib/Cloud.h index 017b0daa3cd..ca13718e064 100644 --- a/cpp/open3d/ml/contrib/Cloud.h +++ b/cpp/open3d/ml/contrib/Cloud.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Source code from: https://github.com/HuguesTHOMAS/KPConv. diff --git a/cpp/open3d/ml/contrib/GridSubsampling.cpp b/cpp/open3d/ml/contrib/GridSubsampling.cpp index cc845211ebb..7b74d9a44e1 100644 --- a/cpp/open3d/ml/contrib/GridSubsampling.cpp +++ b/cpp/open3d/ml/contrib/GridSubsampling.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Source code from: https://github.com/HuguesTHOMAS/KPConv. diff --git a/cpp/open3d/ml/contrib/GridSubsampling.h b/cpp/open3d/ml/contrib/GridSubsampling.h index 09c62805d89..7c484fddca1 100644 --- a/cpp/open3d/ml/contrib/GridSubsampling.h +++ b/cpp/open3d/ml/contrib/GridSubsampling.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Source code from: https://github.com/HuguesTHOMAS/KPConv. diff --git a/cpp/open3d/ml/contrib/InterpolatePoints.cu b/cpp/open3d/ml/contrib/InterpolatePoints.cu index b55991366ba..12417e39037 100644 --- a/cpp/open3d/ml/contrib/InterpolatePoints.cu +++ b/cpp/open3d/ml/contrib/InterpolatePoints.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/InterpolatePoints.cuh b/cpp/open3d/ml/contrib/InterpolatePoints.cuh index 694d57a53bb..ab18c4cfbd5 100644 --- a/cpp/open3d/ml/contrib/InterpolatePoints.cuh +++ b/cpp/open3d/ml/contrib/InterpolatePoints.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/IoU.cpp b/cpp/open3d/ml/contrib/IoU.cpp index 8ce9088df51..4abd32ceb6c 100644 --- a/cpp/open3d/ml/contrib/IoU.cpp +++ b/cpp/open3d/ml/contrib/IoU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/IoU.cu b/cpp/open3d/ml/contrib/IoU.cu index 48d594b6a0b..5c11ed9dc19 100644 --- a/cpp/open3d/ml/contrib/IoU.cu +++ b/cpp/open3d/ml/contrib/IoU.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/IoU.h b/cpp/open3d/ml/contrib/IoU.h index df2cbcec9e8..f97ea34003e 100644 --- a/cpp/open3d/ml/contrib/IoU.h +++ b/cpp/open3d/ml/contrib/IoU.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/IoUImpl.h b/cpp/open3d/ml/contrib/IoUImpl.h index 80741309515..6a2d90b4f8a 100644 --- a/cpp/open3d/ml/contrib/IoUImpl.h +++ b/cpp/open3d/ml/contrib/IoUImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/Nms.cpp b/cpp/open3d/ml/contrib/Nms.cpp index c1ff5e3b9ca..94a35874e36 100644 --- a/cpp/open3d/ml/contrib/Nms.cpp +++ b/cpp/open3d/ml/contrib/Nms.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/contrib/Nms.cu b/cpp/open3d/ml/contrib/Nms.cu index 3f3c52a1d90..5acdb949cd7 100644 --- a/cpp/open3d/ml/contrib/Nms.cu +++ b/cpp/open3d/ml/contrib/Nms.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/contrib/Nms.h b/cpp/open3d/ml/contrib/Nms.h index 914289ff82d..c7a2f84e452 100644 --- a/cpp/open3d/ml/contrib/Nms.h +++ b/cpp/open3d/ml/contrib/Nms.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/contrib/PointSampling.cuh b/cpp/open3d/ml/contrib/PointSampling.cuh index d17f3501b58..88e525aeb88 100644 --- a/cpp/open3d/ml/contrib/PointSampling.cuh +++ b/cpp/open3d/ml/contrib/PointSampling.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/contrib/RoiPoolKernel.cu b/cpp/open3d/ml/contrib/RoiPoolKernel.cu index 7b633070034..208772851c9 100644 --- a/cpp/open3d/ml/contrib/RoiPoolKernel.cu +++ b/cpp/open3d/ml/contrib/RoiPoolKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/contrib/RoiPoolKernel.h b/cpp/open3d/ml/contrib/RoiPoolKernel.h index 123d31a13cb..393150a5cc1 100644 --- a/cpp/open3d/ml/contrib/RoiPoolKernel.h +++ b/cpp/open3d/ml/contrib/RoiPoolKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/contrib/TrilinearDevoxelize.cu b/cpp/open3d/ml/contrib/TrilinearDevoxelize.cu index 0cc1dff271b..abe9c4b8593 100644 --- a/cpp/open3d/ml/contrib/TrilinearDevoxelize.cu +++ b/cpp/open3d/ml/contrib/TrilinearDevoxelize.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/contrib/TrilinearDevoxelize.cuh b/cpp/open3d/ml/contrib/TrilinearDevoxelize.cuh index bb3fc8d7ea7..093caf84e5a 100644 --- a/cpp/open3d/ml/contrib/TrilinearDevoxelize.cuh +++ b/cpp/open3d/ml/contrib/TrilinearDevoxelize.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/contrib/cuda_utils.h b/cpp/open3d/ml/contrib/cuda_utils.h index e7069c79a00..63b7ee40818 100644 --- a/cpp/open3d/ml/contrib/cuda_utils.h +++ b/cpp/open3d/ml/contrib/cuda_utils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.cuh b/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.cuh index 42025064423..322b38180ff 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.cuh +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.h b/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.h index eef2f4e702e..570cdd84730 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.h +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConv.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.cuh b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.cuh index c40ae43874e..ef03b9f0540 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.cuh +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.h b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.h index b9b37e9410c..b75089cd889 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.h +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvBackpropFilter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.cu b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.cu index 9b0498a70b2..218e4c2b6e4 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.cu +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.h b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.h index 4013d093022..8cf1fb14417 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.h +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvCUDAKernels.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.cuh b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.cuh index 1c362eb8a2f..29d8aba31e3 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.cuh +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.h b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.h index 960800e7980..1a19cdc4034 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.h +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTranspose.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.cuh b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.cuh index 8d06fe9284a..2c1dc7a1680 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.cuh +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.h b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.h index 251f59cdf18..296850f24a2 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.h +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTransposeBackpropFilter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTypes.h b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTypes.h index 13919c7d2f4..d758d134443 100644 --- a/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTypes.h +++ b/cpp/open3d/ml/impl/continuous_conv/ContinuousConvTypes.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.cuh b/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.cuh index 672b349a1f5..a56b73ee8ee 100644 --- a/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.cuh +++ b/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.h b/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.h index a7d0eec37f2..ca3670774f8 100644 --- a/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.h +++ b/cpp/open3d/ml/impl/continuous_conv/CoordinateTransformation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/InvertNeighborsList.cuh b/cpp/open3d/ml/impl/misc/InvertNeighborsList.cuh index b94a454b62a..20123b4375f 100644 --- a/cpp/open3d/ml/impl/misc/InvertNeighborsList.cuh +++ b/cpp/open3d/ml/impl/misc/InvertNeighborsList.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/InvertNeighborsList.h b/cpp/open3d/ml/impl/misc/InvertNeighborsList.h index 212fedfbae6..0715c744c74 100644 --- a/cpp/open3d/ml/impl/misc/InvertNeighborsList.h +++ b/cpp/open3d/ml/impl/misc/InvertNeighborsList.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/MemoryAllocation.h b/cpp/open3d/ml/impl/misc/MemoryAllocation.h index 2d240da4ac6..5ec00e0e600 100644 --- a/cpp/open3d/ml/impl/misc/MemoryAllocation.h +++ b/cpp/open3d/ml/impl/misc/MemoryAllocation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/NeighborSearchCommon.h b/cpp/open3d/ml/impl/misc/NeighborSearchCommon.h index c93cce0d151..4f1d1b740b8 100644 --- a/cpp/open3d/ml/impl/misc/NeighborSearchCommon.h +++ b/cpp/open3d/ml/impl/misc/NeighborSearchCommon.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/RaggedToDense.cuh b/cpp/open3d/ml/impl/misc/RaggedToDense.cuh index 4cf30555f0f..95abffe2b4b 100644 --- a/cpp/open3d/ml/impl/misc/RaggedToDense.cuh +++ b/cpp/open3d/ml/impl/misc/RaggedToDense.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/RaggedToDense.h b/cpp/open3d/ml/impl/misc/RaggedToDense.h index 5fcccfb87ef..5c3be2a1f0c 100644 --- a/cpp/open3d/ml/impl/misc/RaggedToDense.h +++ b/cpp/open3d/ml/impl/misc/RaggedToDense.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.cuh b/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.cuh index fafff52641f..ac901660206 100644 --- a/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.cuh +++ b/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.h b/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.h index d268692b63e..b51a3e14c46 100644 --- a/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.h +++ b/cpp/open3d/ml/impl/misc/ReduceSubarraysSum.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/VoxelPooling.h b/cpp/open3d/ml/impl/misc/VoxelPooling.h index bd8f73d8990..4da3da4d002 100644 --- a/cpp/open3d/ml/impl/misc/VoxelPooling.h +++ b/cpp/open3d/ml/impl/misc/VoxelPooling.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/Voxelize.cuh b/cpp/open3d/ml/impl/misc/Voxelize.cuh index e7b50cd7f6e..2258175cf84 100644 --- a/cpp/open3d/ml/impl/misc/Voxelize.cuh +++ b/cpp/open3d/ml/impl/misc/Voxelize.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/misc/Voxelize.h b/cpp/open3d/ml/impl/misc/Voxelize.h index 36814c5db55..c02fb0f7779 100644 --- a/cpp/open3d/ml/impl/misc/Voxelize.h +++ b/cpp/open3d/ml/impl/misc/Voxelize.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConv.cuh b/cpp/open3d/ml/impl/sparse_conv/SparseConv.cuh index 16df749064f..3bbc297db24 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConv.cuh +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConv.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConv.h b/cpp/open3d/ml/impl/sparse_conv/SparseConv.h index 50fa3e098b2..d8b59a51a43 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConv.h +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConv.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.cuh b/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.cuh index 0e151f8c58e..5dc0e6973cb 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.cuh +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.h b/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.h index 67a2712f556..38c44a5d2c1 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.h +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvBackpropFilter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.cu b/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.cu index c111a38502f..87d11ba3a3a 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.cu +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.h b/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.h index 887e6a21a5b..cf1c4749f9c 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.h +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvCUDAKernels.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.cuh b/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.cuh index f5946ff248b..efd0a51152a 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.cuh +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.h b/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.h index 641ad132a4f..5a8eb5be3ef 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.h +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvTranspose.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.cuh b/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.cuh index bb628b60764..3c6f546a079 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.cuh +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.cuh @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.h b/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.h index d6559844c0b..48ef0e4f334 100644 --- a/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.h +++ b/cpp/open3d/ml/impl/sparse_conv/SparseConvTransposeBackpropFilter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/pytorch/TorchHelper.h b/cpp/open3d/ml/pytorch/TorchHelper.h index 22f9ed8cd2f..c4de5d5d74e 100644 --- a/cpp/open3d/ml/pytorch/TorchHelper.h +++ b/cpp/open3d/ml/pytorch/TorchHelper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp index 1e4e754f700..584ff5bb589 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu index 83072ce76b6..b4bb6719999 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.h b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.h index 9c4b7a6f6dc..976d6e9181e 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvHelper.h b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvHelper.h index adb4cbd5c6f..b96dcaee219 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvHelper.h +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvHelper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cpp b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cpp index 8cb0c201495..fbd76a4bb61 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cu b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cu index 4f8f19143b5..7b7949b7def 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cu +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.h b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.h index 376fda0a145..e547bc6a365 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.h +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOps.cpp b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOps.cpp index e7e662c34c0..8f992b1c49a 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOps.cpp +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp index 2420b302df9..e91ca4a51e6 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu index 6ea1d2ed3d5..d70f22a680a 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h index 06db6cb4067..1d7188ba812 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cpp b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cpp index d7ecffea16a..134e14b8eb5 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cu b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cu index bc9e66c89f7..d190c584791 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cu +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.h b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.h index 28d8d7400e4..3749d2856ae 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.h +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOps.cpp b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOps.cpp index 78c6ae19f77..55338b2fadf 100644 --- a/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOps.cpp +++ b/cpp/open3d/ml/pytorch/continuous_conv/ContinuousConvTransposeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cpp index 3ed9233edf4..78c53314899 100644 --- a/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cu b/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cu index bdad3726177..23c95d3088f 100644 --- a/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cu +++ b/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOps.cpp b/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOps.cpp index 49a5b8e32a6..02683a68203 100644 --- a/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/BuildSpatialHashTableOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cpp index 679036e8c1c..6019ad3a1fb 100644 --- a/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cu b/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cu index 0088897be67..1e5f12b532d 100644 --- a/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cu +++ b/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOps.cpp b/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOps.cpp index 289c52687e8..4b517ec9f0c 100644 --- a/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/FixedRadiusSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cpp index ca460507223..134f9eeb0f1 100644 --- a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cu b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cu index c5257ba2db9..6f66561869a 100644 --- a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cu +++ b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.h b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.h index 28fb53ed469..499bf8b193b 100644 --- a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.h +++ b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.cpp b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.cpp index 4389447a571..247e2b3ecc1 100644 --- a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.h b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.h index 738fd455dc9..d61502c7fc1 100644 --- a/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.h +++ b/cpp/open3d/ml/pytorch/misc/InvertNeighborsListOps.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/KnnSearchOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/KnnSearchOpKernel.cpp index 7ecd8039a50..d78cc1845a3 100644 --- a/cpp/open3d/ml/pytorch/misc/KnnSearchOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/KnnSearchOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/KnnSearchOps.cpp b/cpp/open3d/ml/pytorch/misc/KnnSearchOps.cpp index 295f8551bde..48bed5ccc8e 100644 --- a/cpp/open3d/ml/pytorch/misc/KnnSearchOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/KnnSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/NeighborSearchAllocator.h b/cpp/open3d/ml/pytorch/misc/NeighborSearchAllocator.h index f1666338411..611e8003031 100644 --- a/cpp/open3d/ml/pytorch/misc/NeighborSearchAllocator.h +++ b/cpp/open3d/ml/pytorch/misc/NeighborSearchAllocator.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/NmsOps.cpp b/cpp/open3d/ml/pytorch/misc/NmsOps.cpp index c1427b09cd0..9c7a29f6ffb 100644 --- a/cpp/open3d/ml/pytorch/misc/NmsOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/NmsOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/pytorch/misc/RadiusSearchOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/RadiusSearchOpKernel.cpp index 5a40fb45730..5796b30daac 100644 --- a/cpp/open3d/ml/pytorch/misc/RadiusSearchOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/RadiusSearchOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/RadiusSearchOps.cpp b/cpp/open3d/ml/pytorch/misc/RadiusSearchOps.cpp index 173cb982608..b99c740b1cc 100644 --- a/cpp/open3d/ml/pytorch/misc/RadiusSearchOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/RadiusSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cpp index b2ade4863a9..6ac67dbb56b 100644 --- a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cu b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cu index 878bfccf2bf..aaf26a9efa6 100644 --- a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cu +++ b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.h b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.h index 1d106b5b945..17f75ba89b8 100644 --- a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.h +++ b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOps.cpp b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOps.cpp index 349e17f41e3..444362c4e26 100644 --- a/cpp/open3d/ml/pytorch/misc/RaggedToDenseOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/RaggedToDenseOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cpp index 0aceb671fe7..6f63c583fc9 100644 --- a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cu b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cu index d1daa755728..6a4c5ee9438 100644 --- a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cu +++ b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.h b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.h index 4a5d259eb1c..ad5a35af778 100644 --- a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.h +++ b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.cpp b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.cpp index 420367397cc..445ee943a4d 100644 --- a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.h b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.h index 75333d48aeb..54ea8813b3a 100644 --- a/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.h +++ b/cpp/open3d/ml/pytorch/misc/ReduceSubarraysSumOps.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/RoiPoolOps.cpp b/cpp/open3d/ml/pytorch/misc/RoiPoolOps.cpp index 6f4ffc0ea09..f2d37021e0a 100644 --- a/cpp/open3d/ml/pytorch/misc/RoiPoolOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/RoiPoolOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/misc/VoxelPoolingOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/VoxelPoolingOpKernel.cpp index 52ec16364d9..4eb12beb966 100644 --- a/cpp/open3d/ml/pytorch/misc/VoxelPoolingOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/VoxelPoolingOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/VoxelPoolingOps.cpp b/cpp/open3d/ml/pytorch/misc/VoxelPoolingOps.cpp index 5c4e86b3704..d294229a2ed 100644 --- a/cpp/open3d/ml/pytorch/misc/VoxelPoolingOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/VoxelPoolingOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cpp b/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cpp index 947d3e133de..431209a26d4 100644 --- a/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cu b/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cu index a704ad30d0a..ec7baf67c1a 100644 --- a/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cu +++ b/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.h b/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.h index c2668fb4de4..a09eecc8ad0 100644 --- a/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.h +++ b/cpp/open3d/ml/pytorch/misc/VoxelizeOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/misc/VoxelizeOps.cpp b/cpp/open3d/ml/pytorch/misc/VoxelizeOps.cpp index 87e7b71c72c..ef13d7b9084 100644 --- a/cpp/open3d/ml/pytorch/misc/VoxelizeOps.cpp +++ b/cpp/open3d/ml/pytorch/misc/VoxelizeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.cu b/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.cu index adbafde2dc2..37ae7b118c0 100644 --- a/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.cu +++ b/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.h b/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.h index 9af88c3cc0e..281e7fc5372 100644 --- a/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.h +++ b/cpp/open3d/ml/pytorch/pointnet/BallQueryKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/BallQueryOps.cpp b/cpp/open3d/ml/pytorch/pointnet/BallQueryOps.cpp index 526688e6b59..1e7c872d341 100644 --- a/cpp/open3d/ml/pytorch/pointnet/BallQueryOps.cpp +++ b/cpp/open3d/ml/pytorch/pointnet/BallQueryOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.cu b/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.cu index eaabe8c06f2..42500e7d53f 100644 --- a/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.cu +++ b/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.h b/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.h index 435342a00d5..830b52173f6 100644 --- a/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.h +++ b/cpp/open3d/ml/pytorch/pointnet/InterpolateKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/InterpolateOps.cpp b/cpp/open3d/ml/pytorch/pointnet/InterpolateOps.cpp index 796542802d9..2de025bcf46 100644 --- a/cpp/open3d/ml/pytorch/pointnet/InterpolateOps.cpp +++ b/cpp/open3d/ml/pytorch/pointnet/InterpolateOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.cu b/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.cu index bb5b70d9450..b72414acb56 100644 --- a/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.cu +++ b/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.h b/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.h index ae14b3c51d8..fa6879b1e0b 100644 --- a/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.h +++ b/cpp/open3d/ml/pytorch/pointnet/SamplingKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pointnet/SamplingOps.cpp b/cpp/open3d/ml/pytorch/pointnet/SamplingOps.cpp index 0727d9e645f..8bd422280b5 100644 --- a/cpp/open3d/ml/pytorch/pointnet/SamplingOps.cpp +++ b/cpp/open3d/ml/pytorch/pointnet/SamplingOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- //***************************************************************************************/ diff --git a/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.cu b/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.cu index 496cc2bd35d..8a25bfb5d52 100644 --- a/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.cu +++ b/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.h b/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.h index 1ec2987d953..075bd87bdc1 100644 --- a/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.h +++ b/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeOps.cpp b/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeOps.cpp index 78f6775d766..19896fbd057 100644 --- a/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeOps.cpp +++ b/cpp/open3d/ml/pytorch/pvcnn/TrilinearDevoxelizeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.cpp b/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.cpp index 6cfc570ab89..dac299fa34c 100644 --- a/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.cpp +++ b/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.h b/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.h index 236ad7f13e6..c8a671a88cf 100644 --- a/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.h +++ b/cpp/open3d/ml/pytorch/ragged_tensor/RaggedTensor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cpp b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cpp index c42b7f75894..c30cd9acd54 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cu b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cu index 3ca3d982891..09b34d8c2f9 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.h b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.h index 5e142c8b8bc..8af1a89e143 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cpp b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cpp index ba4dd6980ac..86f587d31e7 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cu b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cu index ac30a47947a..d582ad8bf83 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cu +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.h b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.h index 49f6c73c2d3..31e6e83c04e 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.h +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOps.cpp b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOps.cpp index 8589a4b487c..e5fcef3f5bf 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOps.cpp +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp index a311814feb1..a122727f4f2 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu index 5f295aca47e..b661b539a03 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h index 665c5d9f987..0359cd73f26 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cpp b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cpp index ffb5774f303..a59b63f0805 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cpp +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cu b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cu index 9c70f0a5323..26e2704900c 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cu +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.h b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.h index 1265093fc45..574e50d26b2 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.h +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOps.cpp b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOps.cpp index 5cb82deb52d..0ab4e1ff1dd 100644 --- a/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOps.cpp +++ b/cpp/open3d/ml/pytorch/sparse_conv/SparseConvTransposeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/TensorFlowHelper.h b/cpp/open3d/ml/tensorflow/TensorFlowHelper.h index f8b7fab6e88..e7dd6b243d8 100644 --- a/cpp/open3d/ml/tensorflow/TensorFlowHelper.h +++ b/cpp/open3d/ml/tensorflow/TensorFlowHelper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp index 3d0b4409c3d..275d25b4fe2 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu index 348117d24c6..cb60ffd9395 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.h b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.h index 23e8a9ce735..b8adf46bda3 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOps.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOps.cpp index 06a4df2b463..7c3a41fedb9 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOps.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvBackpropFilterOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cpp index 192ba0438eb..ee3b2585cac 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cu b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cu index fb28505b5d2..011703ee439 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.h b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.h index 2ee55522a75..b390d4bd2f4 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.h +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOps.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOps.cpp index a86f9dc7396..a313ad7ee5f 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOps.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp index 4228b75c7df..899946711a2 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu index ad9cbb7f0d8..8faeb8c1420 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h index 0fa2766124f..9e9088e49eb 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOps.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOps.cpp index 613224b562c..349d5824bb5 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOps.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeBackpropFilterOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cpp index 5b65e21e6e1..9de66d2de70 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cu b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cu index 672e9fcd84c..8ba176c4aa6 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.h b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.h index 5a257392e3d..cf4fd73f669 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.h +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOps.cpp b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOps.cpp index b04c5b62afa..8b443d0b799 100644 --- a/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOps.cpp +++ b/cpp/open3d/ml/tensorflow/continuous_conv/ContinuousConvTransposeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cpp index 32b43eb772c..4bfa200e0f6 100644 --- a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cu b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cu index 7829c54deeb..d89dc139761 100644 --- a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.h b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.h index 954cf8dbf2a..a0415504e53 100644 --- a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOps.cpp b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOps.cpp index ff5289e95ac..16e0e7db408 100644 --- a/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/BuildSpatialHashTableOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cpp index b5ecb979004..2a56d54904e 100644 --- a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cu b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cu index bfd0d36496c..6f09cb6d80d 100644 --- a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.h b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.h index 1af68ae4142..ccd900fdfff 100644 --- a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOps.cpp b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOps.cpp index eeb2f02cffb..8de410b71bd 100644 --- a/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/FixedRadiusSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cpp index 5d7e2f35687..90bcd0c8510 100644 --- a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cu b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cu index 3f17b9fc11c..d05d37464bc 100644 --- a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.h b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.h index d088dd6604b..b808bd48af3 100644 --- a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOps.cpp b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOps.cpp index cc2c935bbb8..875b7fc13f6 100644 --- a/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/InvertNeighborsListOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.cpp index fff8640ea29..c0a04c6c568 100644 --- a/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.h b/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.h index 58d067bf572..9f34b0f1025 100644 --- a/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/KnnSearchOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/KnnSearchOps.cpp b/cpp/open3d/ml/tensorflow/misc/KnnSearchOps.cpp index 112d022e28c..9ec8ef4b373 100644 --- a/cpp/open3d/ml/tensorflow/misc/KnnSearchOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/KnnSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cpp index 9dd7ea58148..9fdc87cf41e 100644 --- a/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cu b/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cu index 6172781952c..66a85e72c08 100644 --- a/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.h b/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.h index 4c3359467a7..50dda33cb0b 100644 --- a/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/NmsOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/NmsOps.cpp b/cpp/open3d/ml/tensorflow/misc/NmsOps.cpp index b8341190ea1..c43fe710425 100644 --- a/cpp/open3d/ml/tensorflow/misc/NmsOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/NmsOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.cpp index 91e327121b0..f31d8c1aef8 100644 --- a/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.h b/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.h index a0682b4e4e5..8cc56ec60f1 100644 --- a/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/RadiusSearchOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/RadiusSearchOps.cpp b/cpp/open3d/ml/tensorflow/misc/RadiusSearchOps.cpp index 3dd99b9e460..fd715a0d5a3 100644 --- a/cpp/open3d/ml/tensorflow/misc/RadiusSearchOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/RadiusSearchOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cpp index 989f9faefa4..a1cfc94bed1 100644 --- a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cu b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cu index b44f3d3582c..d7e93840ae4 100644 --- a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.h b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.h index da838d1a140..553105282f8 100644 --- a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOps.cpp b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOps.cpp index 5226079e783..295365ec87f 100644 --- a/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/ReduceSubarraysSumOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.cpp index 38bc4820ebc..a925e191911 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.h b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.h index 2d702666bf4..0cbb0b7071f 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingGradOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.cpp index 77e278d72ee..5407764bd65 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.h b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.h index f9fafbc010c..4bebcb132d5 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOps.cpp b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOps.cpp index ec163ea415b..934092c24d1 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/VoxelPoolingOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cpp b/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cpp index 7034aab8068..88e65d4bd4c 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cu b/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cu index 698e7253114..ef5107a8b64 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.h b/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.h index 0142aef2420..72c7c13dcd9 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.h +++ b/cpp/open3d/ml/tensorflow/misc/VoxelizeOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/misc/VoxelizeOps.cpp b/cpp/open3d/ml/tensorflow/misc/VoxelizeOps.cpp index 7c345edfd3f..ffe2ed08f2e 100644 --- a/cpp/open3d/ml/tensorflow/misc/VoxelizeOps.cpp +++ b/cpp/open3d/ml/tensorflow/misc/VoxelizeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.cu b/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.cu index 587fd4adb95..473a328282d 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.h b/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.h index 5fe927ce7d7..510d6d44219 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.h +++ b/cpp/open3d/ml/tensorflow/pointnet/BallQueryOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/pointnet/BallQueryOps.cpp b/cpp/open3d/ml/tensorflow/pointnet/BallQueryOps.cpp index 07d7a03d34f..b04fb83bccd 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/BallQueryOps.cpp +++ b/cpp/open3d/ml/tensorflow/pointnet/BallQueryOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- /* Furthest point sampling diff --git a/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.cu b/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.cu index b9ce6ee8c6c..e7b4671fe46 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.h b/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.h index 063d176e4ff..b30c68e075c 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.h +++ b/cpp/open3d/ml/tensorflow/pointnet/InterpolateOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/pointnet/InterpolateOps.cpp b/cpp/open3d/ml/tensorflow/pointnet/InterpolateOps.cpp index f16e9020609..2e26de2a744 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/InterpolateOps.cpp +++ b/cpp/open3d/ml/tensorflow/pointnet/InterpolateOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- /* Furthest point sampling diff --git a/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.cu b/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.cu index e45c542fa53..54ddf16221a 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.h b/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.h index de0dea19f30..0d32043305c 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.h +++ b/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOps.cpp b/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOps.cpp index 8a72b3b0027..7df0130020b 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOps.cpp +++ b/cpp/open3d/ml/tensorflow/pointnet/RoiPoolOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- /* Furthest point sampling diff --git a/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.cu b/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.cu index 3cb9005ab3d..52188a2defb 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.h b/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.h index 2f54a1f8daa..34db1c0c9eb 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.h +++ b/cpp/open3d/ml/tensorflow/pointnet/SamplingOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/pointnet/SamplingOps.cpp b/cpp/open3d/ml/tensorflow/pointnet/SamplingOps.cpp index b33a636d3f1..0dacf4d7de0 100644 --- a/cpp/open3d/ml/tensorflow/pointnet/SamplingOps.cpp +++ b/cpp/open3d/ml/tensorflow/pointnet/SamplingOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- /* Furthest point sampling diff --git a/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.cu b/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.cu index 40a6678926e..f934575c9b0 100644 --- a/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.cu +++ b/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.h b/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.h index 374a7ccdb04..871a8f50621 100644 --- a/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.h +++ b/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeOps.cpp b/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeOps.cpp index 7097f5f3287..61a3acefd82 100644 --- a/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeOps.cpp +++ b/cpp/open3d/ml/tensorflow/pvcnn/TrilinearDevoxelizeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cpp index f83be319957..69855fa34ec 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cu b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cu index c6594ff84b2..863abe40dfd 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.h b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.h index c5535393bbf..43b352edcb0 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOps.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOps.cpp index 5cc83701568..658a4ec7305 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOps.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvBackpropFilterOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cpp index 381457c8b2d..abc3f477357 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cu b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cu index 03c35edff27..aa04277a067 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.h b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.h index d5ed4c431eb..b960eb9207b 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.h +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOps.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOps.cpp index 264a443ef25..e08b06ef29b 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOps.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp index 9624c648c1f..06234b5bf05 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu index 4484dd1be34..460f0793062 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h index cf1e9396eca..4f662300dc4 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOps.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOps.cpp index af9741ad39e..6538bf41cb7 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOps.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeBackpropFilterOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cpp index 90f835f147d..c86744b13dc 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cu b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cu index a5df79f9a44..3c4a4545364 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cu +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.h b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.h index ff7fe31e448..8640764c03a 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.h +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOpKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOps.cpp b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOps.cpp index a1daf49a16c..2bbe3ac4b01 100644 --- a/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOps.cpp +++ b/cpp/open3d/ml/tensorflow/sparse_conv/SparseConvTransposeOps.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/ml/tensorflow/tf_subsampling/tf_batch_subsampling.cpp b/cpp/open3d/ml/tensorflow/tf_subsampling/tf_batch_subsampling.cpp index 74472a667f4..4902806669c 100644 --- a/cpp/open3d/ml/tensorflow/tf_subsampling/tf_batch_subsampling.cpp +++ b/cpp/open3d/ml/tensorflow/tf_subsampling/tf_batch_subsampling.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Source code from: https://github.com/HuguesTHOMAS/KPConv. diff --git a/cpp/open3d/ml/tensorflow/tf_subsampling/tf_subsampling.cpp b/cpp/open3d/ml/tensorflow/tf_subsampling/tf_subsampling.cpp index fd7162966f8..e67f2ab166c 100644 --- a/cpp/open3d/ml/tensorflow/tf_subsampling/tf_subsampling.cpp +++ b/cpp/open3d/ml/tensorflow/tf_subsampling/tf_subsampling.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Source code from: https://github.com/HuguesTHOMAS/KPConv. diff --git a/cpp/open3d/pipelines/color_map/ColorMapUtils.cpp b/cpp/open3d/pipelines/color_map/ColorMapUtils.cpp index 8ab677d3a3a..e7155da65d6 100644 --- a/cpp/open3d/pipelines/color_map/ColorMapUtils.cpp +++ b/cpp/open3d/pipelines/color_map/ColorMapUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/ColorMapUtils.h b/cpp/open3d/pipelines/color_map/ColorMapUtils.h index fe1b1559c5c..d2cb1182eaa 100644 --- a/cpp/open3d/pipelines/color_map/ColorMapUtils.h +++ b/cpp/open3d/pipelines/color_map/ColorMapUtils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/ImageWarpingField.cpp b/cpp/open3d/pipelines/color_map/ImageWarpingField.cpp index c60c33ee35d..46a92223720 100644 --- a/cpp/open3d/pipelines/color_map/ImageWarpingField.cpp +++ b/cpp/open3d/pipelines/color_map/ImageWarpingField.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/ImageWarpingField.h b/cpp/open3d/pipelines/color_map/ImageWarpingField.h index 013221fa9e4..e01cecc6323 100644 --- a/cpp/open3d/pipelines/color_map/ImageWarpingField.h +++ b/cpp/open3d/pipelines/color_map/ImageWarpingField.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/NonRigidOptimizer.cpp b/cpp/open3d/pipelines/color_map/NonRigidOptimizer.cpp index 9dfc98fdfa8..72a68a085ea 100644 --- a/cpp/open3d/pipelines/color_map/NonRigidOptimizer.cpp +++ b/cpp/open3d/pipelines/color_map/NonRigidOptimizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/NonRigidOptimizer.h b/cpp/open3d/pipelines/color_map/NonRigidOptimizer.h index a428dc3d479..5f93fb86d59 100644 --- a/cpp/open3d/pipelines/color_map/NonRigidOptimizer.h +++ b/cpp/open3d/pipelines/color_map/NonRigidOptimizer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/RigidOptimizer.cpp b/cpp/open3d/pipelines/color_map/RigidOptimizer.cpp index b506d401a6f..afc832b2c0d 100644 --- a/cpp/open3d/pipelines/color_map/RigidOptimizer.cpp +++ b/cpp/open3d/pipelines/color_map/RigidOptimizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/color_map/RigidOptimizer.h b/cpp/open3d/pipelines/color_map/RigidOptimizer.h index 716c15cc78d..516b52a2528 100644 --- a/cpp/open3d/pipelines/color_map/RigidOptimizer.h +++ b/cpp/open3d/pipelines/color_map/RigidOptimizer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/integration/MarchingCubesConst.h b/cpp/open3d/pipelines/integration/MarchingCubesConst.h index cf60d82f2dd..ca50cdf367b 100644 --- a/cpp/open3d/pipelines/integration/MarchingCubesConst.h +++ b/cpp/open3d/pipelines/integration/MarchingCubesConst.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/integration/ScalableTSDFVolume.cpp b/cpp/open3d/pipelines/integration/ScalableTSDFVolume.cpp index 5895dbe8f10..652c628c3ac 100644 --- a/cpp/open3d/pipelines/integration/ScalableTSDFVolume.cpp +++ b/cpp/open3d/pipelines/integration/ScalableTSDFVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/integration/ScalableTSDFVolume.h b/cpp/open3d/pipelines/integration/ScalableTSDFVolume.h index ba29950589c..425bb8b2137 100644 --- a/cpp/open3d/pipelines/integration/ScalableTSDFVolume.h +++ b/cpp/open3d/pipelines/integration/ScalableTSDFVolume.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/integration/TSDFVolume.h b/cpp/open3d/pipelines/integration/TSDFVolume.h index 4865dd2e262..6ea4f7b7a86 100644 --- a/cpp/open3d/pipelines/integration/TSDFVolume.h +++ b/cpp/open3d/pipelines/integration/TSDFVolume.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/integration/UniformTSDFVolume.cpp b/cpp/open3d/pipelines/integration/UniformTSDFVolume.cpp index 7cb4eba6f38..336572d9203 100644 --- a/cpp/open3d/pipelines/integration/UniformTSDFVolume.cpp +++ b/cpp/open3d/pipelines/integration/UniformTSDFVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/integration/UniformTSDFVolume.h b/cpp/open3d/pipelines/integration/UniformTSDFVolume.h index eec3fe7a32a..3d72b9dcce1 100644 --- a/cpp/open3d/pipelines/integration/UniformTSDFVolume.h +++ b/cpp/open3d/pipelines/integration/UniformTSDFVolume.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/odometry/Odometry.cpp b/cpp/open3d/pipelines/odometry/Odometry.cpp index dd8b1569caa..c9cd12df095 100644 --- a/cpp/open3d/pipelines/odometry/Odometry.cpp +++ b/cpp/open3d/pipelines/odometry/Odometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/odometry/Odometry.h b/cpp/open3d/pipelines/odometry/Odometry.h index aea065d3873..75953dd4d96 100644 --- a/cpp/open3d/pipelines/odometry/Odometry.h +++ b/cpp/open3d/pipelines/odometry/Odometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/odometry/OdometryOption.h b/cpp/open3d/pipelines/odometry/OdometryOption.h index de410bcbbb2..1133a8a3e2f 100644 --- a/cpp/open3d/pipelines/odometry/OdometryOption.h +++ b/cpp/open3d/pipelines/odometry/OdometryOption.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.cpp b/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.cpp index 81fbd647934..2a546762ea1 100644 --- a/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.cpp +++ b/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.h b/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.h index 1d4ff242e5a..f9d01ee1dd4 100644 --- a/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.h +++ b/cpp/open3d/pipelines/odometry/RGBDOdometryJacobian.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/ColoredICP.cpp b/cpp/open3d/pipelines/registration/ColoredICP.cpp index 014124f5517..da7952c2a2a 100644 --- a/cpp/open3d/pipelines/registration/ColoredICP.cpp +++ b/cpp/open3d/pipelines/registration/ColoredICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/ColoredICP.h b/cpp/open3d/pipelines/registration/ColoredICP.h index e4d3dbf06b0..b401cdd02d9 100644 --- a/cpp/open3d/pipelines/registration/ColoredICP.h +++ b/cpp/open3d/pipelines/registration/ColoredICP.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/CorrespondenceChecker.cpp b/cpp/open3d/pipelines/registration/CorrespondenceChecker.cpp index 82a35c004a0..57885a0eb09 100644 --- a/cpp/open3d/pipelines/registration/CorrespondenceChecker.cpp +++ b/cpp/open3d/pipelines/registration/CorrespondenceChecker.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/CorrespondenceChecker.h b/cpp/open3d/pipelines/registration/CorrespondenceChecker.h index 4d0fd89bee2..0ae92c3d9b2 100644 --- a/cpp/open3d/pipelines/registration/CorrespondenceChecker.h +++ b/cpp/open3d/pipelines/registration/CorrespondenceChecker.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/FastGlobalRegistration.cpp b/cpp/open3d/pipelines/registration/FastGlobalRegistration.cpp index f0e48b43afe..198a280c8e4 100644 --- a/cpp/open3d/pipelines/registration/FastGlobalRegistration.cpp +++ b/cpp/open3d/pipelines/registration/FastGlobalRegistration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/FastGlobalRegistration.h b/cpp/open3d/pipelines/registration/FastGlobalRegistration.h index 2cec3bbfc25..23caff5ca03 100644 --- a/cpp/open3d/pipelines/registration/FastGlobalRegistration.h +++ b/cpp/open3d/pipelines/registration/FastGlobalRegistration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/Feature.cpp b/cpp/open3d/pipelines/registration/Feature.cpp index 2815159dcc4..41b036ebbab 100644 --- a/cpp/open3d/pipelines/registration/Feature.cpp +++ b/cpp/open3d/pipelines/registration/Feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/Feature.h b/cpp/open3d/pipelines/registration/Feature.h index e102883b160..41bb4776a35 100644 --- a/cpp/open3d/pipelines/registration/Feature.h +++ b/cpp/open3d/pipelines/registration/Feature.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/GeneralizedICP.cpp b/cpp/open3d/pipelines/registration/GeneralizedICP.cpp index 2913557f9e1..ec2d94db37b 100644 --- a/cpp/open3d/pipelines/registration/GeneralizedICP.cpp +++ b/cpp/open3d/pipelines/registration/GeneralizedICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Altered from: diff --git a/cpp/open3d/pipelines/registration/GeneralizedICP.h b/cpp/open3d/pipelines/registration/GeneralizedICP.h index 0d95c4d7d3b..d5b665db37a 100644 --- a/cpp/open3d/pipelines/registration/GeneralizedICP.h +++ b/cpp/open3d/pipelines/registration/GeneralizedICP.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/open3d/pipelines/registration/GlobalOptimization.cpp b/cpp/open3d/pipelines/registration/GlobalOptimization.cpp index d70e160642e..3cd0387cef6 100644 --- a/cpp/open3d/pipelines/registration/GlobalOptimization.cpp +++ b/cpp/open3d/pipelines/registration/GlobalOptimization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/GlobalOptimization.h b/cpp/open3d/pipelines/registration/GlobalOptimization.h index 7e878a2f184..426ff4b05e6 100644 --- a/cpp/open3d/pipelines/registration/GlobalOptimization.h +++ b/cpp/open3d/pipelines/registration/GlobalOptimization.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/GlobalOptimizationConvergenceCriteria.h b/cpp/open3d/pipelines/registration/GlobalOptimizationConvergenceCriteria.h index db13971ee7f..3d896dd0457 100644 --- a/cpp/open3d/pipelines/registration/GlobalOptimizationConvergenceCriteria.h +++ b/cpp/open3d/pipelines/registration/GlobalOptimizationConvergenceCriteria.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/GlobalOptimizationMethod.h b/cpp/open3d/pipelines/registration/GlobalOptimizationMethod.h index be40fcd755c..db399521e47 100644 --- a/cpp/open3d/pipelines/registration/GlobalOptimizationMethod.h +++ b/cpp/open3d/pipelines/registration/GlobalOptimizationMethod.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/PoseGraph.cpp b/cpp/open3d/pipelines/registration/PoseGraph.cpp index 62076bdfe7c..7bd92e2f777 100644 --- a/cpp/open3d/pipelines/registration/PoseGraph.cpp +++ b/cpp/open3d/pipelines/registration/PoseGraph.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/PoseGraph.h b/cpp/open3d/pipelines/registration/PoseGraph.h index f6c5a4dad1b..e10be77e675 100644 --- a/cpp/open3d/pipelines/registration/PoseGraph.h +++ b/cpp/open3d/pipelines/registration/PoseGraph.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/Registration.cpp b/cpp/open3d/pipelines/registration/Registration.cpp index d33a4ef9486..5611450a798 100644 --- a/cpp/open3d/pipelines/registration/Registration.cpp +++ b/cpp/open3d/pipelines/registration/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/Registration.h b/cpp/open3d/pipelines/registration/Registration.h index 276ef6b64e2..55623832278 100644 --- a/cpp/open3d/pipelines/registration/Registration.h +++ b/cpp/open3d/pipelines/registration/Registration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/RobustKernel.cpp b/cpp/open3d/pipelines/registration/RobustKernel.cpp index 68e4bcd6c22..35aaec62481 100644 --- a/cpp/open3d/pipelines/registration/RobustKernel.cpp +++ b/cpp/open3d/pipelines/registration/RobustKernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/open3d/pipelines/registration/RobustKernel.h b/cpp/open3d/pipelines/registration/RobustKernel.h index d3d111e8865..a1dca36ab26 100644 --- a/cpp/open3d/pipelines/registration/RobustKernel.h +++ b/cpp/open3d/pipelines/registration/RobustKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/open3d/pipelines/registration/TransformationEstimation.cpp b/cpp/open3d/pipelines/registration/TransformationEstimation.cpp index f8085800ffe..3ac438fa859 100644 --- a/cpp/open3d/pipelines/registration/TransformationEstimation.cpp +++ b/cpp/open3d/pipelines/registration/TransformationEstimation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/pipelines/registration/TransformationEstimation.h b/cpp/open3d/pipelines/registration/TransformationEstimation.h index eb90455753b..fc83b3669f6 100644 --- a/cpp/open3d/pipelines/registration/TransformationEstimation.h +++ b/cpp/open3d/pipelines/registration/TransformationEstimation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/BoundingVolume.cpp b/cpp/open3d/t/geometry/BoundingVolume.cpp index 6a221502efe..ad357608442 100644 --- a/cpp/open3d/t/geometry/BoundingVolume.cpp +++ b/cpp/open3d/t/geometry/BoundingVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/BoundingVolume.h b/cpp/open3d/t/geometry/BoundingVolume.h index b11cae01777..0f3a3afa16b 100644 --- a/cpp/open3d/t/geometry/BoundingVolume.h +++ b/cpp/open3d/t/geometry/BoundingVolume.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/DrawableGeometry.h b/cpp/open3d/t/geometry/DrawableGeometry.h index 05ef4e41969..0b1af889746 100644 --- a/cpp/open3d/t/geometry/DrawableGeometry.h +++ b/cpp/open3d/t/geometry/DrawableGeometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/Geometry.h b/cpp/open3d/t/geometry/Geometry.h index df5681c0b2c..8d1b296f8bc 100644 --- a/cpp/open3d/t/geometry/Geometry.h +++ b/cpp/open3d/t/geometry/Geometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/Image.cpp b/cpp/open3d/t/geometry/Image.cpp index 853bc6b6a09..25bd1d1951c 100644 --- a/cpp/open3d/t/geometry/Image.cpp +++ b/cpp/open3d/t/geometry/Image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/Image.h b/cpp/open3d/t/geometry/Image.h index 5181c94ebb9..78229c03996 100644 --- a/cpp/open3d/t/geometry/Image.h +++ b/cpp/open3d/t/geometry/Image.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/LineSet.cpp b/cpp/open3d/t/geometry/LineSet.cpp index f525694ca45..95d26c27275 100644 --- a/cpp/open3d/t/geometry/LineSet.cpp +++ b/cpp/open3d/t/geometry/LineSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/LineSet.h b/cpp/open3d/t/geometry/LineSet.h index 38fb7c61be2..836eeb5eccd 100644 --- a/cpp/open3d/t/geometry/LineSet.h +++ b/cpp/open3d/t/geometry/LineSet.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/PointCloud.cpp b/cpp/open3d/t/geometry/PointCloud.cpp index 9986557a6f1..ea37bdcd244 100644 --- a/cpp/open3d/t/geometry/PointCloud.cpp +++ b/cpp/open3d/t/geometry/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/PointCloud.h b/cpp/open3d/t/geometry/PointCloud.h index 995e1b5ba50..8bc8541cfbf 100644 --- a/cpp/open3d/t/geometry/PointCloud.h +++ b/cpp/open3d/t/geometry/PointCloud.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/RGBDImage.cpp b/cpp/open3d/t/geometry/RGBDImage.cpp index 631fa3ef0fd..b77019d5c90 100644 --- a/cpp/open3d/t/geometry/RGBDImage.cpp +++ b/cpp/open3d/t/geometry/RGBDImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/RGBDImage.h b/cpp/open3d/t/geometry/RGBDImage.h index aa0d6ac3538..d0db11824ee 100644 --- a/cpp/open3d/t/geometry/RGBDImage.h +++ b/cpp/open3d/t/geometry/RGBDImage.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/RaycastingScene.cpp b/cpp/open3d/t/geometry/RaycastingScene.cpp index 12f082d0ee1..81b7576b2db 100644 --- a/cpp/open3d/t/geometry/RaycastingScene.cpp +++ b/cpp/open3d/t/geometry/RaycastingScene.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/RaycastingScene.h b/cpp/open3d/t/geometry/RaycastingScene.h index f25d994b0b5..9847464084a 100644 --- a/cpp/open3d/t/geometry/RaycastingScene.h +++ b/cpp/open3d/t/geometry/RaycastingScene.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/TensorMap.cpp b/cpp/open3d/t/geometry/TensorMap.cpp index f47bcaf0955..aabec93b8fa 100644 --- a/cpp/open3d/t/geometry/TensorMap.cpp +++ b/cpp/open3d/t/geometry/TensorMap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/TensorMap.h b/cpp/open3d/t/geometry/TensorMap.h index 699268cea37..9dc2d66c469 100644 --- a/cpp/open3d/t/geometry/TensorMap.h +++ b/cpp/open3d/t/geometry/TensorMap.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/TriangleMesh.cpp b/cpp/open3d/t/geometry/TriangleMesh.cpp index 4342c0a2d9e..85f8d5a509d 100644 --- a/cpp/open3d/t/geometry/TriangleMesh.cpp +++ b/cpp/open3d/t/geometry/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/TriangleMesh.h b/cpp/open3d/t/geometry/TriangleMesh.h index a526542faab..e1ad2625b4b 100644 --- a/cpp/open3d/t/geometry/TriangleMesh.h +++ b/cpp/open3d/t/geometry/TriangleMesh.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/TriangleMeshFactory.cpp b/cpp/open3d/t/geometry/TriangleMeshFactory.cpp index 442f6e4e70c..2873585bdbe 100644 --- a/cpp/open3d/t/geometry/TriangleMeshFactory.cpp +++ b/cpp/open3d/t/geometry/TriangleMeshFactory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/Utility.h b/cpp/open3d/t/geometry/Utility.h index a8a73ae2895..c96521953ae 100644 --- a/cpp/open3d/t/geometry/Utility.h +++ b/cpp/open3d/t/geometry/Utility.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/VoxelBlockGrid.cpp b/cpp/open3d/t/geometry/VoxelBlockGrid.cpp index b98c09b95f2..063e271658e 100644 --- a/cpp/open3d/t/geometry/VoxelBlockGrid.cpp +++ b/cpp/open3d/t/geometry/VoxelBlockGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/VoxelBlockGrid.h b/cpp/open3d/t/geometry/VoxelBlockGrid.h index a6922585faa..32f7e451946 100644 --- a/cpp/open3d/t/geometry/VoxelBlockGrid.h +++ b/cpp/open3d/t/geometry/VoxelBlockGrid.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/VtkUtils.cpp b/cpp/open3d/t/geometry/VtkUtils.cpp index 9cd7b06d572..d69d4a21b2c 100644 --- a/cpp/open3d/t/geometry/VtkUtils.cpp +++ b/cpp/open3d/t/geometry/VtkUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/VtkUtils.h b/cpp/open3d/t/geometry/VtkUtils.h index 4136354d691..0bd11255aa5 100644 --- a/cpp/open3d/t/geometry/VtkUtils.h +++ b/cpp/open3d/t/geometry/VtkUtils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/GeometryIndexer.h b/cpp/open3d/t/geometry/kernel/GeometryIndexer.h index 2c0391b1a9f..60e047197d1 100644 --- a/cpp/open3d/t/geometry/kernel/GeometryIndexer.h +++ b/cpp/open3d/t/geometry/kernel/GeometryIndexer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/GeometryMacros.h b/cpp/open3d/t/geometry/kernel/GeometryMacros.h index 4421543ae92..bb5eab80416 100644 --- a/cpp/open3d/t/geometry/kernel/GeometryMacros.h +++ b/cpp/open3d/t/geometry/kernel/GeometryMacros.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/IPPImage.cpp b/cpp/open3d/t/geometry/kernel/IPPImage.cpp index b8287468cb2..ba32d1af317 100644 --- a/cpp/open3d/t/geometry/kernel/IPPImage.cpp +++ b/cpp/open3d/t/geometry/kernel/IPPImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/IPPImage.h b/cpp/open3d/t/geometry/kernel/IPPImage.h index 12430f04e4c..0903acffa14 100644 --- a/cpp/open3d/t/geometry/kernel/IPPImage.h +++ b/cpp/open3d/t/geometry/kernel/IPPImage.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/t/geometry/kernel/Image.cpp b/cpp/open3d/t/geometry/kernel/Image.cpp index 9523e809b46..670d80de9ac 100644 --- a/cpp/open3d/t/geometry/kernel/Image.cpp +++ b/cpp/open3d/t/geometry/kernel/Image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/Image.h b/cpp/open3d/t/geometry/kernel/Image.h index 71ef2ba7602..f2d1cbafd17 100644 --- a/cpp/open3d/t/geometry/kernel/Image.h +++ b/cpp/open3d/t/geometry/kernel/Image.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/ImageCPU.cpp b/cpp/open3d/t/geometry/kernel/ImageCPU.cpp index ac8f808acbc..d61cdfe7780 100644 --- a/cpp/open3d/t/geometry/kernel/ImageCPU.cpp +++ b/cpp/open3d/t/geometry/kernel/ImageCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/ImageCUDA.cu b/cpp/open3d/t/geometry/kernel/ImageCUDA.cu index ac8f808acbc..d61cdfe7780 100644 --- a/cpp/open3d/t/geometry/kernel/ImageCUDA.cu +++ b/cpp/open3d/t/geometry/kernel/ImageCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/ImageImpl.h b/cpp/open3d/t/geometry/kernel/ImageImpl.h index e194e69c199..fbe2bcd1dca 100644 --- a/cpp/open3d/t/geometry/kernel/ImageImpl.h +++ b/cpp/open3d/t/geometry/kernel/ImageImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/NPPImage.cpp b/cpp/open3d/t/geometry/kernel/NPPImage.cpp index e0ff8d67e6b..eb47ec9ba30 100644 --- a/cpp/open3d/t/geometry/kernel/NPPImage.cpp +++ b/cpp/open3d/t/geometry/kernel/NPPImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/NPPImage.h b/cpp/open3d/t/geometry/kernel/NPPImage.h index f0966f07f74..4db7ea19936 100644 --- a/cpp/open3d/t/geometry/kernel/NPPImage.h +++ b/cpp/open3d/t/geometry/kernel/NPPImage.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/t/geometry/kernel/PCAPartition.cpp b/cpp/open3d/t/geometry/kernel/PCAPartition.cpp index e1cfedc11da..4f937ab065b 100644 --- a/cpp/open3d/t/geometry/kernel/PCAPartition.cpp +++ b/cpp/open3d/t/geometry/kernel/PCAPartition.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/PCAPartition.h b/cpp/open3d/t/geometry/kernel/PCAPartition.h index 4127fa64200..618eaefd09c 100644 --- a/cpp/open3d/t/geometry/kernel/PCAPartition.h +++ b/cpp/open3d/t/geometry/kernel/PCAPartition.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/PointCloud.cpp b/cpp/open3d/t/geometry/kernel/PointCloud.cpp index cac496344e2..329c703e50c 100644 --- a/cpp/open3d/t/geometry/kernel/PointCloud.cpp +++ b/cpp/open3d/t/geometry/kernel/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/PointCloud.h b/cpp/open3d/t/geometry/kernel/PointCloud.h index c66e6501035..104e6ff6bb7 100644 --- a/cpp/open3d/t/geometry/kernel/PointCloud.h +++ b/cpp/open3d/t/geometry/kernel/PointCloud.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/PointCloudCPU.cpp b/cpp/open3d/t/geometry/kernel/PointCloudCPU.cpp index 2fdc949fda3..50acad94e20 100644 --- a/cpp/open3d/t/geometry/kernel/PointCloudCPU.cpp +++ b/cpp/open3d/t/geometry/kernel/PointCloudCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/PointCloudCUDA.cu b/cpp/open3d/t/geometry/kernel/PointCloudCUDA.cu index 39090a2cd2d..82bce224fca 100644 --- a/cpp/open3d/t/geometry/kernel/PointCloudCUDA.cu +++ b/cpp/open3d/t/geometry/kernel/PointCloudCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/PointCloudImpl.h b/cpp/open3d/t/geometry/kernel/PointCloudImpl.h index 14a19c25c79..a6efbc0f9a5 100644 --- a/cpp/open3d/t/geometry/kernel/PointCloudImpl.h +++ b/cpp/open3d/t/geometry/kernel/PointCloudImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- @@ -956,8 +956,8 @@ OPEN3D_HOST_DEVICE void EstimatePointWiseNormalsWithFastEigen3x3( normals_ptr[1] = 0.0; normals_ptr[2] = 0.0; return; - } else if (covariance_ptr[0] < covariance_ptr[4] && - covariance_ptr[0] < covariance_ptr[8]) { + } else if (covariance_ptr[4] < covariance_ptr[0] && + covariance_ptr[4] < covariance_ptr[8]) { normals_ptr[0] = 0.0; normals_ptr[1] = 1.0; normals_ptr[2] = 0.0; diff --git a/cpp/open3d/t/geometry/kernel/Transform.cpp b/cpp/open3d/t/geometry/kernel/Transform.cpp index d6b8cdcfd35..96a1078edb0 100644 --- a/cpp/open3d/t/geometry/kernel/Transform.cpp +++ b/cpp/open3d/t/geometry/kernel/Transform.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/Transform.h b/cpp/open3d/t/geometry/kernel/Transform.h index 1cd7b13cc05..d64d860572e 100644 --- a/cpp/open3d/t/geometry/kernel/Transform.h +++ b/cpp/open3d/t/geometry/kernel/Transform.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TransformCPU.cpp b/cpp/open3d/t/geometry/kernel/TransformCPU.cpp index 272ecb99025..4252b9d20d1 100644 --- a/cpp/open3d/t/geometry/kernel/TransformCPU.cpp +++ b/cpp/open3d/t/geometry/kernel/TransformCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TransformCUDA.cu b/cpp/open3d/t/geometry/kernel/TransformCUDA.cu index 272ecb99025..4252b9d20d1 100644 --- a/cpp/open3d/t/geometry/kernel/TransformCUDA.cu +++ b/cpp/open3d/t/geometry/kernel/TransformCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TransformImpl.h b/cpp/open3d/t/geometry/kernel/TransformImpl.h index 9e70bff5329..14c08a01e52 100644 --- a/cpp/open3d/t/geometry/kernel/TransformImpl.h +++ b/cpp/open3d/t/geometry/kernel/TransformImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TriangleMesh.cpp b/cpp/open3d/t/geometry/kernel/TriangleMesh.cpp index a2bd1e49f26..0d0d4b17263 100644 --- a/cpp/open3d/t/geometry/kernel/TriangleMesh.cpp +++ b/cpp/open3d/t/geometry/kernel/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TriangleMesh.h b/cpp/open3d/t/geometry/kernel/TriangleMesh.h index f5aca664fa5..cb4f39eeea5 100644 --- a/cpp/open3d/t/geometry/kernel/TriangleMesh.h +++ b/cpp/open3d/t/geometry/kernel/TriangleMesh.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TriangleMeshCPU.cpp b/cpp/open3d/t/geometry/kernel/TriangleMeshCPU.cpp index 24a68a691f8..792cdc013c6 100644 --- a/cpp/open3d/t/geometry/kernel/TriangleMeshCPU.cpp +++ b/cpp/open3d/t/geometry/kernel/TriangleMeshCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TriangleMeshCUDA.cu b/cpp/open3d/t/geometry/kernel/TriangleMeshCUDA.cu index d4bcd245d56..455e4e6e6eb 100644 --- a/cpp/open3d/t/geometry/kernel/TriangleMeshCUDA.cu +++ b/cpp/open3d/t/geometry/kernel/TriangleMeshCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/TriangleMeshImpl.h b/cpp/open3d/t/geometry/kernel/TriangleMeshImpl.h index 5b675344fa6..bbc032121f8 100644 --- a/cpp/open3d/t/geometry/kernel/TriangleMeshImpl.h +++ b/cpp/open3d/t/geometry/kernel/TriangleMeshImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/UVUnwrapping.cpp b/cpp/open3d/t/geometry/kernel/UVUnwrapping.cpp index 866e620d6bf..3cac1466654 100644 --- a/cpp/open3d/t/geometry/kernel/UVUnwrapping.cpp +++ b/cpp/open3d/t/geometry/kernel/UVUnwrapping.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/UVUnwrapping.h b/cpp/open3d/t/geometry/kernel/UVUnwrapping.h index e2262b15dc3..d0c16dc6730 100644 --- a/cpp/open3d/t/geometry/kernel/UVUnwrapping.h +++ b/cpp/open3d/t/geometry/kernel/UVUnwrapping.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.cpp b/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.cpp index 7a430459fbe..03064043c81 100644 --- a/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.cpp +++ b/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.h b/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.h index bb186a9aefe..43fb19df2e2 100644 --- a/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.h +++ b/cpp/open3d/t/geometry/kernel/VoxelBlockGrid.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/VoxelBlockGridCPU.cpp b/cpp/open3d/t/geometry/kernel/VoxelBlockGridCPU.cpp index 45549c82714..018fd4b40d2 100644 --- a/cpp/open3d/t/geometry/kernel/VoxelBlockGridCPU.cpp +++ b/cpp/open3d/t/geometry/kernel/VoxelBlockGridCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/VoxelBlockGridCUDA.cu b/cpp/open3d/t/geometry/kernel/VoxelBlockGridCUDA.cu index 2d053c10248..fd44cc8d3d0 100644 --- a/cpp/open3d/t/geometry/kernel/VoxelBlockGridCUDA.cu +++ b/cpp/open3d/t/geometry/kernel/VoxelBlockGridCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/geometry/kernel/VoxelBlockGridImpl.h b/cpp/open3d/t/geometry/kernel/VoxelBlockGridImpl.h index dd0fb9dc148..01bd9060b9e 100644 --- a/cpp/open3d/t/geometry/kernel/VoxelBlockGridImpl.h +++ b/cpp/open3d/t/geometry/kernel/VoxelBlockGridImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/HashMapIO.cpp b/cpp/open3d/t/io/HashMapIO.cpp index 309cf3f3eb9..841b3cfecd8 100644 --- a/cpp/open3d/t/io/HashMapIO.cpp +++ b/cpp/open3d/t/io/HashMapIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/HashMapIO.h b/cpp/open3d/t/io/HashMapIO.h index 099ac44c23b..f685a905881 100644 --- a/cpp/open3d/t/io/HashMapIO.h +++ b/cpp/open3d/t/io/HashMapIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/ImageIO.cpp b/cpp/open3d/t/io/ImageIO.cpp index d172ad16cb7..97941c517ef 100644 --- a/cpp/open3d/t/io/ImageIO.cpp +++ b/cpp/open3d/t/io/ImageIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/ImageIO.h b/cpp/open3d/t/io/ImageIO.h index 6a7edd6e17b..44a1a9d6a66 100644 --- a/cpp/open3d/t/io/ImageIO.h +++ b/cpp/open3d/t/io/ImageIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/NumpyIO.cpp b/cpp/open3d/t/io/NumpyIO.cpp index c2986e8a482..f793f8feab6 100644 --- a/cpp/open3d/t/io/NumpyIO.cpp +++ b/cpp/open3d/t/io/NumpyIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/NumpyIO.h b/cpp/open3d/t/io/NumpyIO.h index 0870f73e310..4e4c518bbd4 100644 --- a/cpp/open3d/t/io/NumpyIO.h +++ b/cpp/open3d/t/io/NumpyIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/PointCloudIO.cpp b/cpp/open3d/t/io/PointCloudIO.cpp index fa66d0e2869..dbdd9b44391 100644 --- a/cpp/open3d/t/io/PointCloudIO.cpp +++ b/cpp/open3d/t/io/PointCloudIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/PointCloudIO.h b/cpp/open3d/t/io/PointCloudIO.h index de02b29053b..44dbd0f2ea3 100644 --- a/cpp/open3d/t/io/PointCloudIO.h +++ b/cpp/open3d/t/io/PointCloudIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/TriangleMeshIO.cpp b/cpp/open3d/t/io/TriangleMeshIO.cpp index 3f511eb984e..6f4974365a5 100644 --- a/cpp/open3d/t/io/TriangleMeshIO.cpp +++ b/cpp/open3d/t/io/TriangleMeshIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/TriangleMeshIO.h b/cpp/open3d/t/io/TriangleMeshIO.h index a4d975d471a..259259888d3 100644 --- a/cpp/open3d/t/io/TriangleMeshIO.h +++ b/cpp/open3d/t/io/TriangleMeshIO.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FileASSIMP.cpp b/cpp/open3d/t/io/file_format/FileASSIMP.cpp index 7f7ce6a3cfb..dd86fbfb264 100644 --- a/cpp/open3d/t/io/file_format/FileASSIMP.cpp +++ b/cpp/open3d/t/io/file_format/FileASSIMP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FileJPG.cpp b/cpp/open3d/t/io/file_format/FileJPG.cpp index e1830f5135f..c572617680c 100644 --- a/cpp/open3d/t/io/file_format/FileJPG.cpp +++ b/cpp/open3d/t/io/file_format/FileJPG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FilePCD.cpp b/cpp/open3d/t/io/file_format/FilePCD.cpp index 2670e133d5a..b61d3f34ae6 100644 --- a/cpp/open3d/t/io/file_format/FilePCD.cpp +++ b/cpp/open3d/t/io/file_format/FilePCD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FilePLY.cpp b/cpp/open3d/t/io/file_format/FilePLY.cpp index fe0db654b86..abc34238d09 100644 --- a/cpp/open3d/t/io/file_format/FilePLY.cpp +++ b/cpp/open3d/t/io/file_format/FilePLY.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FilePNG.cpp b/cpp/open3d/t/io/file_format/FilePNG.cpp index 8560bc8b431..3ac8f74d17b 100644 --- a/cpp/open3d/t/io/file_format/FilePNG.cpp +++ b/cpp/open3d/t/io/file_format/FilePNG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FilePTS.cpp b/cpp/open3d/t/io/file_format/FilePTS.cpp index 5bd7d932bfc..d5f1f52be54 100644 --- a/cpp/open3d/t/io/file_format/FilePTS.cpp +++ b/cpp/open3d/t/io/file_format/FilePTS.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/file_format/FileTXT.cpp b/cpp/open3d/t/io/file_format/FileTXT.cpp index e0bee8e7027..615e882d6b9 100644 --- a/cpp/open3d/t/io/file_format/FileTXT.cpp +++ b/cpp/open3d/t/io/file_format/FileTXT.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/RGBDSensor.h b/cpp/open3d/t/io/sensor/RGBDSensor.h index 93dd110b933..e82d37aa4a1 100644 --- a/cpp/open3d/t/io/sensor/RGBDSensor.h +++ b/cpp/open3d/t/io/sensor/RGBDSensor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/RGBDVideoMetadata.cpp b/cpp/open3d/t/io/sensor/RGBDVideoMetadata.cpp index 04fefbc8fc0..27d213ac999 100644 --- a/cpp/open3d/t/io/sensor/RGBDVideoMetadata.cpp +++ b/cpp/open3d/t/io/sensor/RGBDVideoMetadata.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/RGBDVideoMetadata.h b/cpp/open3d/t/io/sensor/RGBDVideoMetadata.h index a50eba2d0d2..90f7ba61708 100644 --- a/cpp/open3d/t/io/sensor/RGBDVideoMetadata.h +++ b/cpp/open3d/t/io/sensor/RGBDVideoMetadata.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/RGBDVideoReader.cpp b/cpp/open3d/t/io/sensor/RGBDVideoReader.cpp index 4115a42e12e..d85ccefa237 100644 --- a/cpp/open3d/t/io/sensor/RGBDVideoReader.cpp +++ b/cpp/open3d/t/io/sensor/RGBDVideoReader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/RGBDVideoReader.h b/cpp/open3d/t/io/sensor/RGBDVideoReader.h index ed0580afa46..4337d9eea0f 100644 --- a/cpp/open3d/t/io/sensor/RGBDVideoReader.h +++ b/cpp/open3d/t/io/sensor/RGBDVideoReader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RSBagReader.cpp b/cpp/open3d/t/io/sensor/realsense/RSBagReader.cpp index 1bb6dd76081..9661cb80f8b 100644 --- a/cpp/open3d/t/io/sensor/realsense/RSBagReader.cpp +++ b/cpp/open3d/t/io/sensor/realsense/RSBagReader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RSBagReader.h b/cpp/open3d/t/io/sensor/realsense/RSBagReader.h index 8043398e960..bc843f97619 100644 --- a/cpp/open3d/t/io/sensor/realsense/RSBagReader.h +++ b/cpp/open3d/t/io/sensor/realsense/RSBagReader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RealSensePrivate.h b/cpp/open3d/t/io/sensor/realsense/RealSensePrivate.h index c9de591cbe1..3ab7f9f7765 100644 --- a/cpp/open3d/t/io/sensor/realsense/RealSensePrivate.h +++ b/cpp/open3d/t/io/sensor/realsense/RealSensePrivate.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.cpp b/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.cpp index e20264b5b8f..18e2226254e 100644 --- a/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.cpp +++ b/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.h b/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.h index 51ea8eb5e8a..3308e661f6f 100644 --- a/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.h +++ b/cpp/open3d/t/io/sensor/realsense/RealSenseSensor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.cpp b/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.cpp index 30056f991ed..7ff43fb8457 100644 --- a/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.cpp +++ b/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.h b/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.h index 985a8e7b874..f075fb09aa6 100644 --- a/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.h +++ b/cpp/open3d/t/io/sensor/realsense/RealSenseSensorConfig.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/Feature.cpp b/cpp/open3d/t/pipelines/kernel/Feature.cpp index 575932df95d..bd4014ecb5d 100644 --- a/cpp/open3d/t/pipelines/kernel/Feature.cpp +++ b/cpp/open3d/t/pipelines/kernel/Feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/Feature.h b/cpp/open3d/t/pipelines/kernel/Feature.h index 7dad8aa2991..6dd4a405342 100644 --- a/cpp/open3d/t/pipelines/kernel/Feature.h +++ b/cpp/open3d/t/pipelines/kernel/Feature.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FeatureCPU.cpp b/cpp/open3d/t/pipelines/kernel/FeatureCPU.cpp index 0261a83ef64..2cf8222f5ba 100644 --- a/cpp/open3d/t/pipelines/kernel/FeatureCPU.cpp +++ b/cpp/open3d/t/pipelines/kernel/FeatureCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FeatureCUDA.cu b/cpp/open3d/t/pipelines/kernel/FeatureCUDA.cu index 0261a83ef64..2cf8222f5ba 100644 --- a/cpp/open3d/t/pipelines/kernel/FeatureCUDA.cu +++ b/cpp/open3d/t/pipelines/kernel/FeatureCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FeatureImpl.h b/cpp/open3d/t/pipelines/kernel/FeatureImpl.h index 54a7e44f9e8..bd00f29fb77 100644 --- a/cpp/open3d/t/pipelines/kernel/FeatureImpl.h +++ b/cpp/open3d/t/pipelines/kernel/FeatureImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.cpp b/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.cpp index 37e69fb5f62..9d5e825da9a 100644 --- a/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.cpp +++ b/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.h b/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.h index 39a4638cf78..1c529813841 100644 --- a/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.h +++ b/cpp/open3d/t/pipelines/kernel/FillInLinearSystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCPU.cpp b/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCPU.cpp index dfd5b25d8ef..1aa5c62663c 100644 --- a/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCPU.cpp +++ b/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCUDA.cu b/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCUDA.cu index dfd5b25d8ef..1aa5c62663c 100644 --- a/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCUDA.cu +++ b/cpp/open3d/t/pipelines/kernel/FillInLinearSystemCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/FillInLinearSystemImpl.h b/cpp/open3d/t/pipelines/kernel/FillInLinearSystemImpl.h index b541082e2d2..e158809f6a4 100644 --- a/cpp/open3d/t/pipelines/kernel/FillInLinearSystemImpl.h +++ b/cpp/open3d/t/pipelines/kernel/FillInLinearSystemImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RGBDOdometry.cpp b/cpp/open3d/t/pipelines/kernel/RGBDOdometry.cpp index 783f263a322..ac61daeaa2c 100644 --- a/cpp/open3d/t/pipelines/kernel/RGBDOdometry.cpp +++ b/cpp/open3d/t/pipelines/kernel/RGBDOdometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RGBDOdometry.h b/cpp/open3d/t/pipelines/kernel/RGBDOdometry.h index 04bf1f83371..27e44dce158 100644 --- a/cpp/open3d/t/pipelines/kernel/RGBDOdometry.h +++ b/cpp/open3d/t/pipelines/kernel/RGBDOdometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RGBDOdometryCPU.cpp b/cpp/open3d/t/pipelines/kernel/RGBDOdometryCPU.cpp index e140c455e96..10ed434d5b0 100644 --- a/cpp/open3d/t/pipelines/kernel/RGBDOdometryCPU.cpp +++ b/cpp/open3d/t/pipelines/kernel/RGBDOdometryCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RGBDOdometryCUDA.cu b/cpp/open3d/t/pipelines/kernel/RGBDOdometryCUDA.cu index 2fbc1567f2d..8709196ee4a 100644 --- a/cpp/open3d/t/pipelines/kernel/RGBDOdometryCUDA.cu +++ b/cpp/open3d/t/pipelines/kernel/RGBDOdometryCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RGBDOdometryImpl.h b/cpp/open3d/t/pipelines/kernel/RGBDOdometryImpl.h index 429419b0b9b..d1aacbbeac3 100644 --- a/cpp/open3d/t/pipelines/kernel/RGBDOdometryImpl.h +++ b/cpp/open3d/t/pipelines/kernel/RGBDOdometryImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RGBDOdometryJacobianImpl.h b/cpp/open3d/t/pipelines/kernel/RGBDOdometryJacobianImpl.h index 53ad47444e3..0dbe0d97f94 100644 --- a/cpp/open3d/t/pipelines/kernel/RGBDOdometryJacobianImpl.h +++ b/cpp/open3d/t/pipelines/kernel/RGBDOdometryJacobianImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/Registration.cpp b/cpp/open3d/t/pipelines/kernel/Registration.cpp index b99a5065359..326671431f3 100644 --- a/cpp/open3d/t/pipelines/kernel/Registration.cpp +++ b/cpp/open3d/t/pipelines/kernel/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/Registration.h b/cpp/open3d/t/pipelines/kernel/Registration.h index 3a375b85c3c..3358d30a9ac 100644 --- a/cpp/open3d/t/pipelines/kernel/Registration.h +++ b/cpp/open3d/t/pipelines/kernel/Registration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RegistrationCPU.cpp b/cpp/open3d/t/pipelines/kernel/RegistrationCPU.cpp index d2ea8b584ab..5fd20f196bb 100644 --- a/cpp/open3d/t/pipelines/kernel/RegistrationCPU.cpp +++ b/cpp/open3d/t/pipelines/kernel/RegistrationCPU.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RegistrationCUDA.cu b/cpp/open3d/t/pipelines/kernel/RegistrationCUDA.cu index 20532dde857..1fe76815a2f 100644 --- a/cpp/open3d/t/pipelines/kernel/RegistrationCUDA.cu +++ b/cpp/open3d/t/pipelines/kernel/RegistrationCUDA.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/RegistrationImpl.h b/cpp/open3d/t/pipelines/kernel/RegistrationImpl.h index 9d0309b16c7..3f08ca4c811 100644 --- a/cpp/open3d/t/pipelines/kernel/RegistrationImpl.h +++ b/cpp/open3d/t/pipelines/kernel/RegistrationImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/TransformationConverter.cpp b/cpp/open3d/t/pipelines/kernel/TransformationConverter.cpp index ec5bac0c9de..c181ade770e 100644 --- a/cpp/open3d/t/pipelines/kernel/TransformationConverter.cpp +++ b/cpp/open3d/t/pipelines/kernel/TransformationConverter.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/TransformationConverter.cu b/cpp/open3d/t/pipelines/kernel/TransformationConverter.cu index 7eb97abb1b3..55fe8bcb14c 100644 --- a/cpp/open3d/t/pipelines/kernel/TransformationConverter.cu +++ b/cpp/open3d/t/pipelines/kernel/TransformationConverter.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/TransformationConverter.h b/cpp/open3d/t/pipelines/kernel/TransformationConverter.h index 1155f20b4d5..4d4d43c5d8d 100644 --- a/cpp/open3d/t/pipelines/kernel/TransformationConverter.h +++ b/cpp/open3d/t/pipelines/kernel/TransformationConverter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/kernel/TransformationConverterImpl.h b/cpp/open3d/t/pipelines/kernel/TransformationConverterImpl.h index 86879dbf863..e75484ce3f5 100644 --- a/cpp/open3d/t/pipelines/kernel/TransformationConverterImpl.h +++ b/cpp/open3d/t/pipelines/kernel/TransformationConverterImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/odometry/RGBDOdometry.cpp b/cpp/open3d/t/pipelines/odometry/RGBDOdometry.cpp index 3d0ee8a2aec..ac2e26af0c4 100644 --- a/cpp/open3d/t/pipelines/odometry/RGBDOdometry.cpp +++ b/cpp/open3d/t/pipelines/odometry/RGBDOdometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/odometry/RGBDOdometry.h b/cpp/open3d/t/pipelines/odometry/RGBDOdometry.h index 20c2de8e3bc..b868d1aa69a 100644 --- a/cpp/open3d/t/pipelines/odometry/RGBDOdometry.h +++ b/cpp/open3d/t/pipelines/odometry/RGBDOdometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/Feature.cpp b/cpp/open3d/t/pipelines/registration/Feature.cpp index d20e1a1b58c..8fc78a535ef 100644 --- a/cpp/open3d/t/pipelines/registration/Feature.cpp +++ b/cpp/open3d/t/pipelines/registration/Feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/Feature.h b/cpp/open3d/t/pipelines/registration/Feature.h index 59b6ba489d8..65a88408833 100644 --- a/cpp/open3d/t/pipelines/registration/Feature.h +++ b/cpp/open3d/t/pipelines/registration/Feature.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/Registration.cpp b/cpp/open3d/t/pipelines/registration/Registration.cpp index 2b7cbb19976..7487828b379 100644 --- a/cpp/open3d/t/pipelines/registration/Registration.cpp +++ b/cpp/open3d/t/pipelines/registration/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/Registration.h b/cpp/open3d/t/pipelines/registration/Registration.h index 036c126ca43..ed933b60132 100644 --- a/cpp/open3d/t/pipelines/registration/Registration.h +++ b/cpp/open3d/t/pipelines/registration/Registration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/RobustKernel.h b/cpp/open3d/t/pipelines/registration/RobustKernel.h index 215ab9d8018..62613a71722 100644 --- a/cpp/open3d/t/pipelines/registration/RobustKernel.h +++ b/cpp/open3d/t/pipelines/registration/RobustKernel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/RobustKernelImpl.h b/cpp/open3d/t/pipelines/registration/RobustKernelImpl.h index 95e551a05f7..623f59db8e1 100644 --- a/cpp/open3d/t/pipelines/registration/RobustKernelImpl.h +++ b/cpp/open3d/t/pipelines/registration/RobustKernelImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/TransformationEstimation.cpp b/cpp/open3d/t/pipelines/registration/TransformationEstimation.cpp index 5c19333c00a..922cc31ef70 100644 --- a/cpp/open3d/t/pipelines/registration/TransformationEstimation.cpp +++ b/cpp/open3d/t/pipelines/registration/TransformationEstimation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/registration/TransformationEstimation.h b/cpp/open3d/t/pipelines/registration/TransformationEstimation.h index acc13f7d726..ab72cc33f10 100644 --- a/cpp/open3d/t/pipelines/registration/TransformationEstimation.h +++ b/cpp/open3d/t/pipelines/registration/TransformationEstimation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/ControlGrid.cpp b/cpp/open3d/t/pipelines/slac/ControlGrid.cpp index c440c57005b..857d6c4913f 100644 --- a/cpp/open3d/t/pipelines/slac/ControlGrid.cpp +++ b/cpp/open3d/t/pipelines/slac/ControlGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/ControlGrid.h b/cpp/open3d/t/pipelines/slac/ControlGrid.h index bdb5a5e21c7..10f2b6ac801 100644 --- a/cpp/open3d/t/pipelines/slac/ControlGrid.h +++ b/cpp/open3d/t/pipelines/slac/ControlGrid.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/FillInLinearSystemImpl.h b/cpp/open3d/t/pipelines/slac/FillInLinearSystemImpl.h index 4ad6a5d89d1..1e155a69ef6 100644 --- a/cpp/open3d/t/pipelines/slac/FillInLinearSystemImpl.h +++ b/cpp/open3d/t/pipelines/slac/FillInLinearSystemImpl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/SLACOptimizer.cpp b/cpp/open3d/t/pipelines/slac/SLACOptimizer.cpp index f51f59ce4fd..005c5f06dc3 100644 --- a/cpp/open3d/t/pipelines/slac/SLACOptimizer.cpp +++ b/cpp/open3d/t/pipelines/slac/SLACOptimizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/SLACOptimizer.h b/cpp/open3d/t/pipelines/slac/SLACOptimizer.h index fb0aafde516..838eec89a02 100644 --- a/cpp/open3d/t/pipelines/slac/SLACOptimizer.h +++ b/cpp/open3d/t/pipelines/slac/SLACOptimizer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/Visualization.cpp b/cpp/open3d/t/pipelines/slac/Visualization.cpp index d84bfb3cbca..23de27d0b42 100644 --- a/cpp/open3d/t/pipelines/slac/Visualization.cpp +++ b/cpp/open3d/t/pipelines/slac/Visualization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slac/Visualization.h b/cpp/open3d/t/pipelines/slac/Visualization.h index 9c70bcdaa4a..d576b919c4e 100644 --- a/cpp/open3d/t/pipelines/slac/Visualization.h +++ b/cpp/open3d/t/pipelines/slac/Visualization.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slam/Frame.h b/cpp/open3d/t/pipelines/slam/Frame.h index 70e4955cfee..794588d4b8d 100644 --- a/cpp/open3d/t/pipelines/slam/Frame.h +++ b/cpp/open3d/t/pipelines/slam/Frame.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slam/Model.cpp b/cpp/open3d/t/pipelines/slam/Model.cpp index 9ca3cad0ac5..18fc3e0bfec 100644 --- a/cpp/open3d/t/pipelines/slam/Model.cpp +++ b/cpp/open3d/t/pipelines/slam/Model.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/t/pipelines/slam/Model.h b/cpp/open3d/t/pipelines/slam/Model.h index b9f0c6105e1..84ab6c32f56 100644 --- a/cpp/open3d/t/pipelines/slam/Model.h +++ b/cpp/open3d/t/pipelines/slam/Model.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/CPUInfo.cpp b/cpp/open3d/utility/CPUInfo.cpp index 12a9e99ddb5..502e1241e19 100644 --- a/cpp/open3d/utility/CPUInfo.cpp +++ b/cpp/open3d/utility/CPUInfo.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/CPUInfo.h b/cpp/open3d/utility/CPUInfo.h index 0dd80fa9466..b02c470fd13 100644 --- a/cpp/open3d/utility/CPUInfo.h +++ b/cpp/open3d/utility/CPUInfo.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/utility/CompilerInfo.cpp b/cpp/open3d/utility/CompilerInfo.cpp index 41981cf9810..ecd538ce92d 100644 --- a/cpp/open3d/utility/CompilerInfo.cpp +++ b/cpp/open3d/utility/CompilerInfo.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/CompilerInfo.h b/cpp/open3d/utility/CompilerInfo.h index 61c0a4404be..8bfbecb6a93 100644 --- a/cpp/open3d/utility/CompilerInfo.h +++ b/cpp/open3d/utility/CompilerInfo.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/utility/Console.cpp b/cpp/open3d/utility/Console.cpp index 27e719ec63b..2faae23aabb 100644 --- a/cpp/open3d/utility/Console.cpp +++ b/cpp/open3d/utility/Console.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Console.h b/cpp/open3d/utility/Console.h index 976f776feb6..eb3f3b65066 100644 --- a/cpp/open3d/utility/Console.h +++ b/cpp/open3d/utility/Console.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Download.cpp b/cpp/open3d/utility/Download.cpp index 025dbc6641e..6f3443cc907 100644 --- a/cpp/open3d/utility/Download.cpp +++ b/cpp/open3d/utility/Download.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Download.h b/cpp/open3d/utility/Download.h index 84ec68c42bb..0ab24f6e78b 100644 --- a/cpp/open3d/utility/Download.h +++ b/cpp/open3d/utility/Download.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Eigen.cpp b/cpp/open3d/utility/Eigen.cpp index b3f6fb34476..eb60c357fb7 100644 --- a/cpp/open3d/utility/Eigen.cpp +++ b/cpp/open3d/utility/Eigen.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Eigen.h b/cpp/open3d/utility/Eigen.h index d3438d6d547..871b6be12bc 100644 --- a/cpp/open3d/utility/Eigen.h +++ b/cpp/open3d/utility/Eigen.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Extract.cpp b/cpp/open3d/utility/Extract.cpp index 888de14b455..8004cc380bd 100644 --- a/cpp/open3d/utility/Extract.cpp +++ b/cpp/open3d/utility/Extract.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Extract.h b/cpp/open3d/utility/Extract.h index 355ff6277b8..7a847d49744 100644 --- a/cpp/open3d/utility/Extract.h +++ b/cpp/open3d/utility/Extract.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ExtractZIP.cpp b/cpp/open3d/utility/ExtractZIP.cpp index 9d80393d72a..eba295992c2 100644 --- a/cpp/open3d/utility/ExtractZIP.cpp +++ b/cpp/open3d/utility/ExtractZIP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ExtractZIP.h b/cpp/open3d/utility/ExtractZIP.h index a9e406be616..e11923492d0 100644 --- a/cpp/open3d/utility/ExtractZIP.h +++ b/cpp/open3d/utility/ExtractZIP.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/FileSystem.cpp b/cpp/open3d/utility/FileSystem.cpp index 98ff4926f2b..604507edc35 100644 --- a/cpp/open3d/utility/FileSystem.cpp +++ b/cpp/open3d/utility/FileSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/FileSystem.h b/cpp/open3d/utility/FileSystem.h index de77a863299..f1f56f99a5e 100644 --- a/cpp/open3d/utility/FileSystem.h +++ b/cpp/open3d/utility/FileSystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Helper.cpp b/cpp/open3d/utility/Helper.cpp index 47530070249..4a1db5f37db 100644 --- a/cpp/open3d/utility/Helper.cpp +++ b/cpp/open3d/utility/Helper.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Helper.h b/cpp/open3d/utility/Helper.h index 067a93d47b4..5b026437f84 100644 --- a/cpp/open3d/utility/Helper.h +++ b/cpp/open3d/utility/Helper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Helper.isph b/cpp/open3d/utility/Helper.isph index 25a785a0966..e7b3becb669 100644 --- a/cpp/open3d/utility/Helper.isph +++ b/cpp/open3d/utility/Helper.isph @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/IJsonConvertible.cpp b/cpp/open3d/utility/IJsonConvertible.cpp index b9f9fa9b07d..2d4a4959b83 100644 --- a/cpp/open3d/utility/IJsonConvertible.cpp +++ b/cpp/open3d/utility/IJsonConvertible.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/IJsonConvertible.h b/cpp/open3d/utility/IJsonConvertible.h index e18e2948a23..270363310f5 100644 --- a/cpp/open3d/utility/IJsonConvertible.h +++ b/cpp/open3d/utility/IJsonConvertible.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ISAInfo.cpp b/cpp/open3d/utility/ISAInfo.cpp index fb7f9841ad2..a712eac448b 100644 --- a/cpp/open3d/utility/ISAInfo.cpp +++ b/cpp/open3d/utility/ISAInfo.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ISAInfo.h b/cpp/open3d/utility/ISAInfo.h index 46947ce5993..8d9577127ce 100644 --- a/cpp/open3d/utility/ISAInfo.h +++ b/cpp/open3d/utility/ISAInfo.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #pragma once diff --git a/cpp/open3d/utility/ISAInfo.ispc b/cpp/open3d/utility/ISAInfo.ispc index 89dbf92175b..e8c1273c896 100644 --- a/cpp/open3d/utility/ISAInfo.ispc +++ b/cpp/open3d/utility/ISAInfo.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ISAInfo.isph b/cpp/open3d/utility/ISAInfo.isph index 468b7cd4d7f..be32e17b7cf 100644 --- a/cpp/open3d/utility/ISAInfo.isph +++ b/cpp/open3d/utility/ISAInfo.isph @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Logging.cpp b/cpp/open3d/utility/Logging.cpp index 782c51553f3..7440212f097 100644 --- a/cpp/open3d/utility/Logging.cpp +++ b/cpp/open3d/utility/Logging.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Logging.h b/cpp/open3d/utility/Logging.h index fdb132f9b06..5c1afcf5c00 100644 --- a/cpp/open3d/utility/Logging.h +++ b/cpp/open3d/utility/Logging.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/MiniVec.h b/cpp/open3d/utility/MiniVec.h index 6bf608d6082..17eca20b129 100644 --- a/cpp/open3d/utility/MiniVec.h +++ b/cpp/open3d/utility/MiniVec.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Optional.h b/cpp/open3d/utility/Optional.h index ccbbb27d38b..345c9b15eb7 100644 --- a/cpp/open3d/utility/Optional.h +++ b/cpp/open3d/utility/Optional.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Copyright (C) 2011 - 2012 Andrzej Krzemienski. diff --git a/cpp/open3d/utility/Overload.h b/cpp/open3d/utility/Overload.h index 0b6282184bb..d42a023518d 100644 --- a/cpp/open3d/utility/Overload.h +++ b/cpp/open3d/utility/Overload.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Parallel.cpp b/cpp/open3d/utility/Parallel.cpp index b05f2375a95..79989eeeddd 100644 --- a/cpp/open3d/utility/Parallel.cpp +++ b/cpp/open3d/utility/Parallel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Parallel.h b/cpp/open3d/utility/Parallel.h index 9763f533221..ad37dfaa1be 100644 --- a/cpp/open3d/utility/Parallel.h +++ b/cpp/open3d/utility/Parallel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ParallelScan.h b/cpp/open3d/utility/ParallelScan.h index 47f114bb26b..6fc4f8b940c 100644 --- a/cpp/open3d/utility/ParallelScan.h +++ b/cpp/open3d/utility/ParallelScan.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Preprocessor.h b/cpp/open3d/utility/Preprocessor.h index 707b516a623..3111562d9ad 100644 --- a/cpp/open3d/utility/Preprocessor.h +++ b/cpp/open3d/utility/Preprocessor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ProgressBar.cpp b/cpp/open3d/utility/ProgressBar.cpp index 5a5c6fce1ab..efbe57023c4 100644 --- a/cpp/open3d/utility/ProgressBar.cpp +++ b/cpp/open3d/utility/ProgressBar.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ProgressBar.h b/cpp/open3d/utility/ProgressBar.h index 710fa370f0e..e5882541900 100644 --- a/cpp/open3d/utility/ProgressBar.h +++ b/cpp/open3d/utility/ProgressBar.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/ProgressReporters.h b/cpp/open3d/utility/ProgressReporters.h index 53657d7746a..ccd29d5386a 100644 --- a/cpp/open3d/utility/ProgressReporters.h +++ b/cpp/open3d/utility/ProgressReporters.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Random.cpp b/cpp/open3d/utility/Random.cpp index 8d0c54a9697..554439e0674 100644 --- a/cpp/open3d/utility/Random.cpp +++ b/cpp/open3d/utility/Random.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Random.h b/cpp/open3d/utility/Random.h index 1a3411d29a2..ffb5a4113a3 100644 --- a/cpp/open3d/utility/Random.h +++ b/cpp/open3d/utility/Random.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Timer.cpp b/cpp/open3d/utility/Timer.cpp index 93ff5012bba..31122587497 100644 --- a/cpp/open3d/utility/Timer.cpp +++ b/cpp/open3d/utility/Timer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/utility/Timer.h b/cpp/open3d/utility/Timer.h index 2a508a78dc2..a5896a1127a 100644 --- a/cpp/open3d/utility/Timer.h +++ b/cpp/open3d/utility/Timer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/app/Viewer.cpp b/cpp/open3d/visualization/app/Viewer.cpp index 8dc5de39875..c24c37fe849 100644 --- a/cpp/open3d/visualization/app/Viewer.cpp +++ b/cpp/open3d/visualization/app/Viewer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/app/Viewer.h b/cpp/open3d/visualization/app/Viewer.h index f36f42f729d..4978342dddf 100644 --- a/cpp/open3d/visualization/app/Viewer.h +++ b/cpp/open3d/visualization/app/Viewer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Application.cpp b/cpp/open3d/visualization/gui/Application.cpp index 89cfa9746b2..55ca48cd8ff 100644 --- a/cpp/open3d/visualization/gui/Application.cpp +++ b/cpp/open3d/visualization/gui/Application.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Application.h b/cpp/open3d/visualization/gui/Application.h index e7bbef4fe13..49de13e5d37 100644 --- a/cpp/open3d/visualization/gui/Application.h +++ b/cpp/open3d/visualization/gui/Application.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/BitmapWindowSystem.cpp b/cpp/open3d/visualization/gui/BitmapWindowSystem.cpp index 49fe527eeca..f40e5545556 100644 --- a/cpp/open3d/visualization/gui/BitmapWindowSystem.cpp +++ b/cpp/open3d/visualization/gui/BitmapWindowSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/BitmapWindowSystem.h b/cpp/open3d/visualization/gui/BitmapWindowSystem.h index 8b7268630a7..a0558c6898b 100644 --- a/cpp/open3d/visualization/gui/BitmapWindowSystem.h +++ b/cpp/open3d/visualization/gui/BitmapWindowSystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Button.cpp b/cpp/open3d/visualization/gui/Button.cpp index 129ed0d4fec..f87a3456d8d 100644 --- a/cpp/open3d/visualization/gui/Button.cpp +++ b/cpp/open3d/visualization/gui/Button.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Button.h b/cpp/open3d/visualization/gui/Button.h index 03d7c1f17d0..cf3d32b666c 100644 --- a/cpp/open3d/visualization/gui/Button.h +++ b/cpp/open3d/visualization/gui/Button.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Checkbox.cpp b/cpp/open3d/visualization/gui/Checkbox.cpp index 1c95e97206a..f25b3af70ae 100644 --- a/cpp/open3d/visualization/gui/Checkbox.cpp +++ b/cpp/open3d/visualization/gui/Checkbox.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Checkbox.h b/cpp/open3d/visualization/gui/Checkbox.h index 0863fb7e790..313756a599a 100644 --- a/cpp/open3d/visualization/gui/Checkbox.h +++ b/cpp/open3d/visualization/gui/Checkbox.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Color.cpp b/cpp/open3d/visualization/gui/Color.cpp index b4d4d0a9dd3..5d11e093a07 100644 --- a/cpp/open3d/visualization/gui/Color.cpp +++ b/cpp/open3d/visualization/gui/Color.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Color.h b/cpp/open3d/visualization/gui/Color.h index fe1c9025685..44f70fa605b 100644 --- a/cpp/open3d/visualization/gui/Color.h +++ b/cpp/open3d/visualization/gui/Color.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ColorEdit.cpp b/cpp/open3d/visualization/gui/ColorEdit.cpp index 1a21c676156..13eb65a3c68 100644 --- a/cpp/open3d/visualization/gui/ColorEdit.cpp +++ b/cpp/open3d/visualization/gui/ColorEdit.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ColorEdit.h b/cpp/open3d/visualization/gui/ColorEdit.h index 89ca5a2d3db..050a9208a0e 100644 --- a/cpp/open3d/visualization/gui/ColorEdit.h +++ b/cpp/open3d/visualization/gui/ColorEdit.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Combobox.cpp b/cpp/open3d/visualization/gui/Combobox.cpp index 2bba54cc0f5..eb4c59d7625 100644 --- a/cpp/open3d/visualization/gui/Combobox.cpp +++ b/cpp/open3d/visualization/gui/Combobox.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Combobox.h b/cpp/open3d/visualization/gui/Combobox.h index b1f4e0d60f4..e17d9b7d483 100644 --- a/cpp/open3d/visualization/gui/Combobox.h +++ b/cpp/open3d/visualization/gui/Combobox.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Dialog.cpp b/cpp/open3d/visualization/gui/Dialog.cpp index 1563735083b..0f4dba1aaef 100644 --- a/cpp/open3d/visualization/gui/Dialog.cpp +++ b/cpp/open3d/visualization/gui/Dialog.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Dialog.h b/cpp/open3d/visualization/gui/Dialog.h index b15f7226d12..8823086d705 100644 --- a/cpp/open3d/visualization/gui/Dialog.h +++ b/cpp/open3d/visualization/gui/Dialog.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Events.cpp b/cpp/open3d/visualization/gui/Events.cpp index e0819be8164..046be63a950 100644 --- a/cpp/open3d/visualization/gui/Events.cpp +++ b/cpp/open3d/visualization/gui/Events.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Events.h b/cpp/open3d/visualization/gui/Events.h index 90f94364910..fcdaebf126a 100644 --- a/cpp/open3d/visualization/gui/Events.h +++ b/cpp/open3d/visualization/gui/Events.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/FileDialog.cpp b/cpp/open3d/visualization/gui/FileDialog.cpp index 28f6efe2b92..d9a1d82175e 100644 --- a/cpp/open3d/visualization/gui/FileDialog.cpp +++ b/cpp/open3d/visualization/gui/FileDialog.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/FileDialog.h b/cpp/open3d/visualization/gui/FileDialog.h index f28ee11c463..59e60955b96 100644 --- a/cpp/open3d/visualization/gui/FileDialog.h +++ b/cpp/open3d/visualization/gui/FileDialog.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/FileDialogNative.cpp b/cpp/open3d/visualization/gui/FileDialogNative.cpp index 7e42930f9b9..27b69d7ecb5 100644 --- a/cpp/open3d/visualization/gui/FileDialogNative.cpp +++ b/cpp/open3d/visualization/gui/FileDialogNative.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Font.cpp b/cpp/open3d/visualization/gui/Font.cpp index 39e30fccd53..0067b28537d 100644 --- a/cpp/open3d/visualization/gui/Font.cpp +++ b/cpp/open3d/visualization/gui/Font.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Font.h b/cpp/open3d/visualization/gui/Font.h index 62467154ac7..071326b9943 100644 --- a/cpp/open3d/visualization/gui/Font.h +++ b/cpp/open3d/visualization/gui/Font.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/GLFWWindowSystem.cpp b/cpp/open3d/visualization/gui/GLFWWindowSystem.cpp index 37f17121007..f1011a7cfff 100644 --- a/cpp/open3d/visualization/gui/GLFWWindowSystem.cpp +++ b/cpp/open3d/visualization/gui/GLFWWindowSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/GLFWWindowSystem.h b/cpp/open3d/visualization/gui/GLFWWindowSystem.h index a74a37af3e6..a8ef84f62f5 100644 --- a/cpp/open3d/visualization/gui/GLFWWindowSystem.h +++ b/cpp/open3d/visualization/gui/GLFWWindowSystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Gui.cpp b/cpp/open3d/visualization/gui/Gui.cpp index 2ea50c767c2..193691d6b8b 100644 --- a/cpp/open3d/visualization/gui/Gui.cpp +++ b/cpp/open3d/visualization/gui/Gui.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Gui.h b/cpp/open3d/visualization/gui/Gui.h index 55ff2f32036..3ab40897a88 100644 --- a/cpp/open3d/visualization/gui/Gui.h +++ b/cpp/open3d/visualization/gui/Gui.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ImageWidget.cpp b/cpp/open3d/visualization/gui/ImageWidget.cpp index 89daee1b26d..5287791e856 100644 --- a/cpp/open3d/visualization/gui/ImageWidget.cpp +++ b/cpp/open3d/visualization/gui/ImageWidget.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ImageWidget.h b/cpp/open3d/visualization/gui/ImageWidget.h index 778a2885aed..a251fdf90f2 100644 --- a/cpp/open3d/visualization/gui/ImageWidget.h +++ b/cpp/open3d/visualization/gui/ImageWidget.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ImguiFilamentBridge.cpp b/cpp/open3d/visualization/gui/ImguiFilamentBridge.cpp index 243e3868a77..21a81a77b4a 100644 --- a/cpp/open3d/visualization/gui/ImguiFilamentBridge.cpp +++ b/cpp/open3d/visualization/gui/ImguiFilamentBridge.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Altered from Filament's ImGuiHelper.cpp diff --git a/cpp/open3d/visualization/gui/ImguiFilamentBridge.h b/cpp/open3d/visualization/gui/ImguiFilamentBridge.h index 8eae6c97b57..69708f7f761 100644 --- a/cpp/open3d/visualization/gui/ImguiFilamentBridge.h +++ b/cpp/open3d/visualization/gui/ImguiFilamentBridge.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Altered from Filament's ImGuiHelper.cpp diff --git a/cpp/open3d/visualization/gui/Label.cpp b/cpp/open3d/visualization/gui/Label.cpp index 60e257c7101..253c390f2ea 100644 --- a/cpp/open3d/visualization/gui/Label.cpp +++ b/cpp/open3d/visualization/gui/Label.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Label.h b/cpp/open3d/visualization/gui/Label.h index aa1e5cb071f..1192542b30e 100644 --- a/cpp/open3d/visualization/gui/Label.h +++ b/cpp/open3d/visualization/gui/Label.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Label3D.cpp b/cpp/open3d/visualization/gui/Label3D.cpp index 172f338f153..97bed9bb3c9 100644 --- a/cpp/open3d/visualization/gui/Label3D.cpp +++ b/cpp/open3d/visualization/gui/Label3D.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Label3D.h b/cpp/open3d/visualization/gui/Label3D.h index 06788b2f5a2..419da087842 100644 --- a/cpp/open3d/visualization/gui/Label3D.h +++ b/cpp/open3d/visualization/gui/Label3D.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Layout.cpp b/cpp/open3d/visualization/gui/Layout.cpp index 8da97bc899f..f8e4fa0d111 100644 --- a/cpp/open3d/visualization/gui/Layout.cpp +++ b/cpp/open3d/visualization/gui/Layout.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Layout.h b/cpp/open3d/visualization/gui/Layout.h index 7421c6522cb..175e4ffe263 100644 --- a/cpp/open3d/visualization/gui/Layout.h +++ b/cpp/open3d/visualization/gui/Layout.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ListView.cpp b/cpp/open3d/visualization/gui/ListView.cpp index 4d77f0bd1cd..184234dd974 100644 --- a/cpp/open3d/visualization/gui/ListView.cpp +++ b/cpp/open3d/visualization/gui/ListView.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ListView.h b/cpp/open3d/visualization/gui/ListView.h index ac764be0974..c94cbbcf14f 100644 --- a/cpp/open3d/visualization/gui/ListView.h +++ b/cpp/open3d/visualization/gui/ListView.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Menu.cpp b/cpp/open3d/visualization/gui/Menu.cpp index 7c0e19e9eeb..1c340bdc178 100644 --- a/cpp/open3d/visualization/gui/Menu.cpp +++ b/cpp/open3d/visualization/gui/Menu.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Menu.h b/cpp/open3d/visualization/gui/Menu.h index 9efecd370b9..80381e99387 100644 --- a/cpp/open3d/visualization/gui/Menu.h +++ b/cpp/open3d/visualization/gui/Menu.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/MenuBase.h b/cpp/open3d/visualization/gui/MenuBase.h index f4ecebdf042..29c2f5a9776 100644 --- a/cpp/open3d/visualization/gui/MenuBase.h +++ b/cpp/open3d/visualization/gui/MenuBase.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/MenuImgui.cpp b/cpp/open3d/visualization/gui/MenuImgui.cpp index aba98ddb19c..430aedbd1db 100644 --- a/cpp/open3d/visualization/gui/MenuImgui.cpp +++ b/cpp/open3d/visualization/gui/MenuImgui.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/MenuImgui.h b/cpp/open3d/visualization/gui/MenuImgui.h index 01fc324cd71..b3d9e410941 100644 --- a/cpp/open3d/visualization/gui/MenuImgui.h +++ b/cpp/open3d/visualization/gui/MenuImgui.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/MenuMacOS.h b/cpp/open3d/visualization/gui/MenuMacOS.h index 6b1a8f277ab..b1b9132e00a 100644 --- a/cpp/open3d/visualization/gui/MenuMacOS.h +++ b/cpp/open3d/visualization/gui/MenuMacOS.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/MenuMacOS.mm b/cpp/open3d/visualization/gui/MenuMacOS.mm index 0f958d15f6c..3e0a553584b 100644 --- a/cpp/open3d/visualization/gui/MenuMacOS.mm +++ b/cpp/open3d/visualization/gui/MenuMacOS.mm @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include "open3d/visualization/gui/MenuMacOS.h" diff --git a/cpp/open3d/visualization/gui/Native.h b/cpp/open3d/visualization/gui/Native.h index 1ad03de99df..e8b93f74690 100644 --- a/cpp/open3d/visualization/gui/Native.h +++ b/cpp/open3d/visualization/gui/Native.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/NativeLinux.cpp b/cpp/open3d/visualization/gui/NativeLinux.cpp index d6a64f1068c..89768633b9f 100644 --- a/cpp/open3d/visualization/gui/NativeLinux.cpp +++ b/cpp/open3d/visualization/gui/NativeLinux.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/NativeMacOS.mm b/cpp/open3d/visualization/gui/NativeMacOS.mm index 5803f731286..907731f3dda 100644 --- a/cpp/open3d/visualization/gui/NativeMacOS.mm +++ b/cpp/open3d/visualization/gui/NativeMacOS.mm @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include "open3d/visualization/gui/Native.h" diff --git a/cpp/open3d/visualization/gui/NativeWin32.cpp b/cpp/open3d/visualization/gui/NativeWin32.cpp index 17918030e68..42c2f48b1e0 100644 --- a/cpp/open3d/visualization/gui/NativeWin32.cpp +++ b/cpp/open3d/visualization/gui/NativeWin32.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/NumberEdit.cpp b/cpp/open3d/visualization/gui/NumberEdit.cpp index 46bcfaa81d1..9f59d3dff02 100644 --- a/cpp/open3d/visualization/gui/NumberEdit.cpp +++ b/cpp/open3d/visualization/gui/NumberEdit.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/NumberEdit.h b/cpp/open3d/visualization/gui/NumberEdit.h index 3a86f97d3c3..04403bc030e 100644 --- a/cpp/open3d/visualization/gui/NumberEdit.h +++ b/cpp/open3d/visualization/gui/NumberEdit.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/PickPointsInteractor.cpp b/cpp/open3d/visualization/gui/PickPointsInteractor.cpp index 63ecfba7955..78c76179550 100644 --- a/cpp/open3d/visualization/gui/PickPointsInteractor.cpp +++ b/cpp/open3d/visualization/gui/PickPointsInteractor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/PickPointsInteractor.h b/cpp/open3d/visualization/gui/PickPointsInteractor.h index dd2e2646fba..9d173c4ad94 100644 --- a/cpp/open3d/visualization/gui/PickPointsInteractor.h +++ b/cpp/open3d/visualization/gui/PickPointsInteractor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ProgressBar.cpp b/cpp/open3d/visualization/gui/ProgressBar.cpp index 0c930155a41..06b47c89278 100644 --- a/cpp/open3d/visualization/gui/ProgressBar.cpp +++ b/cpp/open3d/visualization/gui/ProgressBar.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ProgressBar.h b/cpp/open3d/visualization/gui/ProgressBar.h index 5b86162022c..898c4a05af8 100644 --- a/cpp/open3d/visualization/gui/ProgressBar.h +++ b/cpp/open3d/visualization/gui/ProgressBar.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/RadioButton.cpp b/cpp/open3d/visualization/gui/RadioButton.cpp index 0c26b63ccff..e3eac680d3d 100644 --- a/cpp/open3d/visualization/gui/RadioButton.cpp +++ b/cpp/open3d/visualization/gui/RadioButton.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/RadioButton.h b/cpp/open3d/visualization/gui/RadioButton.h index c9f3021a032..d111efca1bf 100644 --- a/cpp/open3d/visualization/gui/RadioButton.h +++ b/cpp/open3d/visualization/gui/RadioButton.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/SceneWidget.cpp b/cpp/open3d/visualization/gui/SceneWidget.cpp index fe03ec73a7f..d0df7af860e 100644 --- a/cpp/open3d/visualization/gui/SceneWidget.cpp +++ b/cpp/open3d/visualization/gui/SceneWidget.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/SceneWidget.h b/cpp/open3d/visualization/gui/SceneWidget.h index 233c7918c01..3d9941cde42 100644 --- a/cpp/open3d/visualization/gui/SceneWidget.h +++ b/cpp/open3d/visualization/gui/SceneWidget.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Slider.cpp b/cpp/open3d/visualization/gui/Slider.cpp index 04267113377..425579c5a13 100644 --- a/cpp/open3d/visualization/gui/Slider.cpp +++ b/cpp/open3d/visualization/gui/Slider.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Slider.h b/cpp/open3d/visualization/gui/Slider.h index 5ad3c263e5a..0c81d41cb14 100644 --- a/cpp/open3d/visualization/gui/Slider.h +++ b/cpp/open3d/visualization/gui/Slider.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/StackedWidget.cpp b/cpp/open3d/visualization/gui/StackedWidget.cpp index 4bbca165aef..0e68dddaaca 100644 --- a/cpp/open3d/visualization/gui/StackedWidget.cpp +++ b/cpp/open3d/visualization/gui/StackedWidget.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/StackedWidget.h b/cpp/open3d/visualization/gui/StackedWidget.h index 455b1be11e1..13ed1f70d80 100644 --- a/cpp/open3d/visualization/gui/StackedWidget.h +++ b/cpp/open3d/visualization/gui/StackedWidget.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/TabControl.cpp b/cpp/open3d/visualization/gui/TabControl.cpp index baf516337af..81188b090c2 100644 --- a/cpp/open3d/visualization/gui/TabControl.cpp +++ b/cpp/open3d/visualization/gui/TabControl.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/TabControl.h b/cpp/open3d/visualization/gui/TabControl.h index 3912ec8f119..af6cae30c7a 100644 --- a/cpp/open3d/visualization/gui/TabControl.h +++ b/cpp/open3d/visualization/gui/TabControl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Task.cpp b/cpp/open3d/visualization/gui/Task.cpp index 075fb2f30de..79dde9eb552 100644 --- a/cpp/open3d/visualization/gui/Task.cpp +++ b/cpp/open3d/visualization/gui/Task.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Task.h b/cpp/open3d/visualization/gui/Task.h index c58080fdca6..3007f6680e5 100644 --- a/cpp/open3d/visualization/gui/Task.h +++ b/cpp/open3d/visualization/gui/Task.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/TextEdit.cpp b/cpp/open3d/visualization/gui/TextEdit.cpp index 13f859908ad..d720e1bb511 100644 --- a/cpp/open3d/visualization/gui/TextEdit.cpp +++ b/cpp/open3d/visualization/gui/TextEdit.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/TextEdit.h b/cpp/open3d/visualization/gui/TextEdit.h index 1e1ca5a2952..c94fd5305ba 100644 --- a/cpp/open3d/visualization/gui/TextEdit.h +++ b/cpp/open3d/visualization/gui/TextEdit.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Theme.cpp b/cpp/open3d/visualization/gui/Theme.cpp index e1736901835..e59f1027228 100644 --- a/cpp/open3d/visualization/gui/Theme.cpp +++ b/cpp/open3d/visualization/gui/Theme.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Theme.h b/cpp/open3d/visualization/gui/Theme.h index d00366bcd45..0ef630abf4f 100644 --- a/cpp/open3d/visualization/gui/Theme.h +++ b/cpp/open3d/visualization/gui/Theme.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ToggleSwitch.cpp b/cpp/open3d/visualization/gui/ToggleSwitch.cpp index 24bc4f011dd..16c843f5fb1 100644 --- a/cpp/open3d/visualization/gui/ToggleSwitch.cpp +++ b/cpp/open3d/visualization/gui/ToggleSwitch.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/ToggleSwitch.h b/cpp/open3d/visualization/gui/ToggleSwitch.h index a1214635377..2b0aa5bf90c 100644 --- a/cpp/open3d/visualization/gui/ToggleSwitch.h +++ b/cpp/open3d/visualization/gui/ToggleSwitch.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/TreeView.cpp b/cpp/open3d/visualization/gui/TreeView.cpp index 19f934915f4..72fca10bd0e 100644 --- a/cpp/open3d/visualization/gui/TreeView.cpp +++ b/cpp/open3d/visualization/gui/TreeView.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/TreeView.h b/cpp/open3d/visualization/gui/TreeView.h index 176544f49ab..956f896149e 100644 --- a/cpp/open3d/visualization/gui/TreeView.h +++ b/cpp/open3d/visualization/gui/TreeView.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/UIImage.cpp b/cpp/open3d/visualization/gui/UIImage.cpp index 8932227fa65..561d9a15c3f 100644 --- a/cpp/open3d/visualization/gui/UIImage.cpp +++ b/cpp/open3d/visualization/gui/UIImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/UIImage.h b/cpp/open3d/visualization/gui/UIImage.h index 235ff3d44bd..f95327b9d14 100644 --- a/cpp/open3d/visualization/gui/UIImage.h +++ b/cpp/open3d/visualization/gui/UIImage.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Util.cpp b/cpp/open3d/visualization/gui/Util.cpp index 123d1485507..05f4e49f190 100644 --- a/cpp/open3d/visualization/gui/Util.cpp +++ b/cpp/open3d/visualization/gui/Util.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Util.h b/cpp/open3d/visualization/gui/Util.h index 375933bd6dd..a7c7ead2909 100644 --- a/cpp/open3d/visualization/gui/Util.h +++ b/cpp/open3d/visualization/gui/Util.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/VectorEdit.cpp b/cpp/open3d/visualization/gui/VectorEdit.cpp index e2fccbb870e..646dd5bc602 100644 --- a/cpp/open3d/visualization/gui/VectorEdit.cpp +++ b/cpp/open3d/visualization/gui/VectorEdit.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/VectorEdit.h b/cpp/open3d/visualization/gui/VectorEdit.h index c92f7519d80..6ed6e718092 100644 --- a/cpp/open3d/visualization/gui/VectorEdit.h +++ b/cpp/open3d/visualization/gui/VectorEdit.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Widget.cpp b/cpp/open3d/visualization/gui/Widget.cpp index 2b577a4c809..d8ab028acda 100644 --- a/cpp/open3d/visualization/gui/Widget.cpp +++ b/cpp/open3d/visualization/gui/Widget.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Widget.h b/cpp/open3d/visualization/gui/Widget.h index 26a743c9258..a3fc46ac723 100644 --- a/cpp/open3d/visualization/gui/Widget.h +++ b/cpp/open3d/visualization/gui/Widget.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/WidgetProxy.cpp b/cpp/open3d/visualization/gui/WidgetProxy.cpp index 00ffc1522de..2ab2de2cd3a 100644 --- a/cpp/open3d/visualization/gui/WidgetProxy.cpp +++ b/cpp/open3d/visualization/gui/WidgetProxy.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/WidgetProxy.h b/cpp/open3d/visualization/gui/WidgetProxy.h index 30132ee506f..13389917300 100644 --- a/cpp/open3d/visualization/gui/WidgetProxy.h +++ b/cpp/open3d/visualization/gui/WidgetProxy.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/WidgetStack.cpp b/cpp/open3d/visualization/gui/WidgetStack.cpp index 5a7675b5fce..ac6ea6bc135 100644 --- a/cpp/open3d/visualization/gui/WidgetStack.cpp +++ b/cpp/open3d/visualization/gui/WidgetStack.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/WidgetStack.h b/cpp/open3d/visualization/gui/WidgetStack.h index 560539d45a3..4e591131a8a 100644 --- a/cpp/open3d/visualization/gui/WidgetStack.h +++ b/cpp/open3d/visualization/gui/WidgetStack.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Window.cpp b/cpp/open3d/visualization/gui/Window.cpp index bb023903792..3c9f2a315c5 100644 --- a/cpp/open3d/visualization/gui/Window.cpp +++ b/cpp/open3d/visualization/gui/Window.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/Window.h b/cpp/open3d/visualization/gui/Window.h index b186d760699..78e366329c5 100644 --- a/cpp/open3d/visualization/gui/Window.h +++ b/cpp/open3d/visualization/gui/Window.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/gui/WindowSystem.h b/cpp/open3d/visualization/gui/WindowSystem.h index 682e732acb7..f77ce15886f 100644 --- a/cpp/open3d/visualization/gui/WindowSystem.h +++ b/cpp/open3d/visualization/gui/WindowSystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Camera.cpp b/cpp/open3d/visualization/rendering/Camera.cpp index 0b0fac15654..071a36e9e0f 100644 --- a/cpp/open3d/visualization/rendering/Camera.cpp +++ b/cpp/open3d/visualization/rendering/Camera.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Camera.h b/cpp/open3d/visualization/rendering/Camera.h index 136d1e5f743..d1502ba7553 100644 --- a/cpp/open3d/visualization/rendering/Camera.h +++ b/cpp/open3d/visualization/rendering/Camera.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/CameraInteractorLogic.cpp b/cpp/open3d/visualization/rendering/CameraInteractorLogic.cpp index 1b4f2b5e10e..bc934303239 100644 --- a/cpp/open3d/visualization/rendering/CameraInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/CameraInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/CameraInteractorLogic.h b/cpp/open3d/visualization/rendering/CameraInteractorLogic.h index 5e80e4336bc..ea066c30073 100644 --- a/cpp/open3d/visualization/rendering/CameraInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/CameraInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.cpp b/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.cpp index 366fea30550..31e88338c7d 100644 --- a/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.h b/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.h index a2e8e67516f..0d92abbd57f 100644 --- a/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/CameraSphereInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/ColorGrading.cpp b/cpp/open3d/visualization/rendering/ColorGrading.cpp index a7bd647965d..a10bb9f5b97 100644 --- a/cpp/open3d/visualization/rendering/ColorGrading.cpp +++ b/cpp/open3d/visualization/rendering/ColorGrading.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/ColorGrading.h b/cpp/open3d/visualization/rendering/ColorGrading.h index 7df7c8dde1f..4db57db4bef 100644 --- a/cpp/open3d/visualization/rendering/ColorGrading.h +++ b/cpp/open3d/visualization/rendering/ColorGrading.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Gradient.cpp b/cpp/open3d/visualization/rendering/Gradient.cpp index 04c6e287d4e..6a0d312003c 100644 --- a/cpp/open3d/visualization/rendering/Gradient.cpp +++ b/cpp/open3d/visualization/rendering/Gradient.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Gradient.h b/cpp/open3d/visualization/rendering/Gradient.h index 6c1b9f07401..74ad5398664 100644 --- a/cpp/open3d/visualization/rendering/Gradient.h +++ b/cpp/open3d/visualization/rendering/Gradient.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.cpp b/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.cpp index cbd6c511f06..b5d902dba7f 100644 --- a/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.h b/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.h index 10f33876bbe..bcac90a3053 100644 --- a/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/IBLRotationInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Light.h b/cpp/open3d/visualization/rendering/Light.h index f0ca0a460c4..5538073b5f8 100644 --- a/cpp/open3d/visualization/rendering/Light.h +++ b/cpp/open3d/visualization/rendering/Light.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.cpp b/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.cpp index ab0d2cd1e42..ed840aea16d 100644 --- a/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.h b/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.h index 22bd97ba87b..92a22052248 100644 --- a/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/LightDirectionInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Material.cpp b/cpp/open3d/visualization/rendering/Material.cpp index d264711f987..321ea13ebd7 100644 --- a/cpp/open3d/visualization/rendering/Material.cpp +++ b/cpp/open3d/visualization/rendering/Material.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Material.h b/cpp/open3d/visualization/rendering/Material.h index 27afcd8a69a..2eeddcafc6a 100644 --- a/cpp/open3d/visualization/rendering/Material.h +++ b/cpp/open3d/visualization/rendering/Material.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/MaterialModifier.cpp b/cpp/open3d/visualization/rendering/MaterialModifier.cpp index c7490f3b888..77b560d0a13 100644 --- a/cpp/open3d/visualization/rendering/MaterialModifier.cpp +++ b/cpp/open3d/visualization/rendering/MaterialModifier.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/MaterialModifier.h b/cpp/open3d/visualization/rendering/MaterialModifier.h index 7c4a87bab03..e9cc11eaa24 100644 --- a/cpp/open3d/visualization/rendering/MaterialModifier.h +++ b/cpp/open3d/visualization/rendering/MaterialModifier.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/MaterialRecord.h b/cpp/open3d/visualization/rendering/MaterialRecord.h index 987099f1816..6822cbaf1ff 100644 --- a/cpp/open3d/visualization/rendering/MaterialRecord.h +++ b/cpp/open3d/visualization/rendering/MaterialRecord.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/MatrixInteractorLogic.cpp b/cpp/open3d/visualization/rendering/MatrixInteractorLogic.cpp index f61e4628217..bf547fe7d4e 100644 --- a/cpp/open3d/visualization/rendering/MatrixInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/MatrixInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/MatrixInteractorLogic.h b/cpp/open3d/visualization/rendering/MatrixInteractorLogic.h index c8976fc43cf..7457c579e8b 100644 --- a/cpp/open3d/visualization/rendering/MatrixInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/MatrixInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Model.h b/cpp/open3d/visualization/rendering/Model.h index 68ad6d4f5ed..070cecd1e28 100644 --- a/cpp/open3d/visualization/rendering/Model.h +++ b/cpp/open3d/visualization/rendering/Model.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/ModelInteractorLogic.cpp b/cpp/open3d/visualization/rendering/ModelInteractorLogic.cpp index 8814200627a..b6d3331aad4 100644 --- a/cpp/open3d/visualization/rendering/ModelInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/ModelInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/ModelInteractorLogic.h b/cpp/open3d/visualization/rendering/ModelInteractorLogic.h index e072d9ea336..7c5781f84cc 100644 --- a/cpp/open3d/visualization/rendering/ModelInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/ModelInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Open3DScene.cpp b/cpp/open3d/visualization/rendering/Open3DScene.cpp index dacd926ec1f..c0142da8fb2 100644 --- a/cpp/open3d/visualization/rendering/Open3DScene.cpp +++ b/cpp/open3d/visualization/rendering/Open3DScene.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Open3DScene.h b/cpp/open3d/visualization/rendering/Open3DScene.h index 28e7bdb36e2..5c3e0dce8f8 100644 --- a/cpp/open3d/visualization/rendering/Open3DScene.h +++ b/cpp/open3d/visualization/rendering/Open3DScene.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/RenderToBuffer.h b/cpp/open3d/visualization/rendering/RenderToBuffer.h index ee124a63859..97265e66ed7 100644 --- a/cpp/open3d/visualization/rendering/RenderToBuffer.h +++ b/cpp/open3d/visualization/rendering/RenderToBuffer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Renderer.cpp b/cpp/open3d/visualization/rendering/Renderer.cpp index 7ccf91a876b..78eae53f981 100644 --- a/cpp/open3d/visualization/rendering/Renderer.cpp +++ b/cpp/open3d/visualization/rendering/Renderer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Renderer.h b/cpp/open3d/visualization/rendering/Renderer.h index b642e4b6d46..fc787662103 100644 --- a/cpp/open3d/visualization/rendering/Renderer.h +++ b/cpp/open3d/visualization/rendering/Renderer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/RendererHandle.cpp b/cpp/open3d/visualization/rendering/RendererHandle.cpp index 127606f7dd5..42d150788a7 100644 --- a/cpp/open3d/visualization/rendering/RendererHandle.cpp +++ b/cpp/open3d/visualization/rendering/RendererHandle.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/RendererHandle.h b/cpp/open3d/visualization/rendering/RendererHandle.h index be69a3d99a8..8f328accb51 100644 --- a/cpp/open3d/visualization/rendering/RendererHandle.h +++ b/cpp/open3d/visualization/rendering/RendererHandle.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/RendererStructs.h b/cpp/open3d/visualization/rendering/RendererStructs.h index e07901c9ac0..e1b053a72a6 100644 --- a/cpp/open3d/visualization/rendering/RendererStructs.h +++ b/cpp/open3d/visualization/rendering/RendererStructs.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/RotationInteractorLogic.cpp b/cpp/open3d/visualization/rendering/RotationInteractorLogic.cpp index e909412b846..f311ce1e841 100644 --- a/cpp/open3d/visualization/rendering/RotationInteractorLogic.cpp +++ b/cpp/open3d/visualization/rendering/RotationInteractorLogic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/RotationInteractorLogic.h b/cpp/open3d/visualization/rendering/RotationInteractorLogic.h index 1371950cff8..9b108ea102d 100644 --- a/cpp/open3d/visualization/rendering/RotationInteractorLogic.h +++ b/cpp/open3d/visualization/rendering/RotationInteractorLogic.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/Scene.h b/cpp/open3d/visualization/rendering/Scene.h index 75578f39f89..cbf9eb3efb4 100644 --- a/cpp/open3d/visualization/rendering/Scene.h +++ b/cpp/open3d/visualization/rendering/Scene.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/View.h b/cpp/open3d/visualization/rendering/View.h index f9a586b59fc..cd29b6a4df2 100644 --- a/cpp/open3d/visualization/rendering/View.h +++ b/cpp/open3d/visualization/rendering/View.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentCamera.cpp b/cpp/open3d/visualization/rendering/filament/FilamentCamera.cpp index 31f8572392e..553bfe91815 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentCamera.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentCamera.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentCamera.h b/cpp/open3d/visualization/rendering/filament/FilamentCamera.h index 29d30249257..90da81a245e 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentCamera.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentCamera.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentEngine.cpp b/cpp/open3d/visualization/rendering/filament/FilamentEngine.cpp index f3d03ebec40..f90b00d5a03 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentEngine.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentEngine.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentEngine.h b/cpp/open3d/visualization/rendering/filament/FilamentEngine.h index 834acca20b8..f270279ff97 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentEngine.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentEngine.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.cpp b/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.cpp index feadc341780..68fa808b8b3 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.h b/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.h index ea99c2fa145..80fa1971f3e 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentEntitiesMods.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.cpp b/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.cpp index fc2c40ea1b2..fe3dbd39bf7 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.h b/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.h index 0d6271c8894..afaa4a84831 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentGeometryBuffersBuilder.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.cpp b/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.cpp index cb5525754e9..27e758deddb 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- @@ -144,6 +144,10 @@ void FilamentRenderToBuffer::CopySettings(const View* view) { // overhead and the depth buffer is discarded when post-processing is // enabled so the returned image is all 0s. view_->ConfigureForColorPicking(); + // Set shadowing to true as there is a pixel coordinate scaling + // issue on Apple Retina displays that results in quarter size depth + // images if shadowing is disabled. + view_->SetShadowing(true, View::ShadowType::kPCF); } } diff --git a/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.h b/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.h index cf19fd9c01c..3817b27e96b 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentRenderToBuffer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentRenderer.cpp b/cpp/open3d/visualization/rendering/filament/FilamentRenderer.cpp index e7ea9771cae..8600de2db4f 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentRenderer.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentRenderer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentRenderer.h b/cpp/open3d/visualization/rendering/filament/FilamentRenderer.h index 097f341108d..8c89cfd0a80 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentRenderer.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentRenderer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.cpp b/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.cpp index 1dcf1715368..baee308e93c 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.h b/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.h index 606d590f447..d3a6716bbab 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentResourceManager.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentScene.cpp b/cpp/open3d/visualization/rendering/filament/FilamentScene.cpp index 13f2d7800d7..ecb6c5c89c0 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentScene.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentScene.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentScene.h b/cpp/open3d/visualization/rendering/filament/FilamentScene.h index f956d7c5888..4556f895441 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentScene.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentScene.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentView.cpp b/cpp/open3d/visualization/rendering/filament/FilamentView.cpp index 2a11feff3f0..8022905dd10 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentView.cpp +++ b/cpp/open3d/visualization/rendering/filament/FilamentView.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/FilamentView.h b/cpp/open3d/visualization/rendering/filament/FilamentView.h index 8af6b63d9a6..792e0d2c149 100644 --- a/cpp/open3d/visualization/rendering/filament/FilamentView.h +++ b/cpp/open3d/visualization/rendering/filament/FilamentView.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/LineSetBuffers.cpp b/cpp/open3d/visualization/rendering/filament/LineSetBuffers.cpp index 88d5230556f..2e14cfbca48 100644 --- a/cpp/open3d/visualization/rendering/filament/LineSetBuffers.cpp +++ b/cpp/open3d/visualization/rendering/filament/LineSetBuffers.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/PointCloudBuffers.cpp b/cpp/open3d/visualization/rendering/filament/PointCloudBuffers.cpp index 014d4b0562a..2d0c1295ed6 100644 --- a/cpp/open3d/visualization/rendering/filament/PointCloudBuffers.cpp +++ b/cpp/open3d/visualization/rendering/filament/PointCloudBuffers.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/rendering/filament/TriangleMeshBuffers.cpp b/cpp/open3d/visualization/rendering/filament/TriangleMeshBuffers.cpp index a3edcccd540..776e7011191 100644 --- a/cpp/open3d/visualization/rendering/filament/TriangleMeshBuffers.cpp +++ b/cpp/open3d/visualization/rendering/filament/TriangleMeshBuffers.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/GeometryRenderer.cpp b/cpp/open3d/visualization/shader/GeometryRenderer.cpp index 9725103d080..fb24a822ebf 100644 --- a/cpp/open3d/visualization/shader/GeometryRenderer.cpp +++ b/cpp/open3d/visualization/shader/GeometryRenderer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/GeometryRenderer.h b/cpp/open3d/visualization/shader/GeometryRenderer.h index 21230eab20f..5952c6a3e48 100644 --- a/cpp/open3d/visualization/shader/GeometryRenderer.h +++ b/cpp/open3d/visualization/shader/GeometryRenderer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/ImageMaskShader.cpp b/cpp/open3d/visualization/shader/ImageMaskShader.cpp index a63046e0dd6..9bfbeb57e89 100644 --- a/cpp/open3d/visualization/shader/ImageMaskShader.cpp +++ b/cpp/open3d/visualization/shader/ImageMaskShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/ImageMaskShader.h b/cpp/open3d/visualization/shader/ImageMaskShader.h index c5ed2239ff0..c549525fd49 100644 --- a/cpp/open3d/visualization/shader/ImageMaskShader.h +++ b/cpp/open3d/visualization/shader/ImageMaskShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/ImageShader.cpp b/cpp/open3d/visualization/shader/ImageShader.cpp index ed9c952028e..9f3baffc586 100644 --- a/cpp/open3d/visualization/shader/ImageShader.cpp +++ b/cpp/open3d/visualization/shader/ImageShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/ImageShader.h b/cpp/open3d/visualization/shader/ImageShader.h index 9b5d78ac717..e6340ca5232 100644 --- a/cpp/open3d/visualization/shader/ImageShader.h +++ b/cpp/open3d/visualization/shader/ImageShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/NormalShader.cpp b/cpp/open3d/visualization/shader/NormalShader.cpp index 46fc78a7c83..33ffe9d3400 100644 --- a/cpp/open3d/visualization/shader/NormalShader.cpp +++ b/cpp/open3d/visualization/shader/NormalShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/NormalShader.h b/cpp/open3d/visualization/shader/NormalShader.h index cb0c6a95b13..4f05686554d 100644 --- a/cpp/open3d/visualization/shader/NormalShader.h +++ b/cpp/open3d/visualization/shader/NormalShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/PhongShader.cpp b/cpp/open3d/visualization/shader/PhongShader.cpp index 5b4ac86df50..b50694579cd 100644 --- a/cpp/open3d/visualization/shader/PhongShader.cpp +++ b/cpp/open3d/visualization/shader/PhongShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/PhongShader.h b/cpp/open3d/visualization/shader/PhongShader.h index d58b68d1bac..9859aee1f8f 100644 --- a/cpp/open3d/visualization/shader/PhongShader.h +++ b/cpp/open3d/visualization/shader/PhongShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/PickingShader.cpp b/cpp/open3d/visualization/shader/PickingShader.cpp index d712e3a2af1..2b35b285388 100644 --- a/cpp/open3d/visualization/shader/PickingShader.cpp +++ b/cpp/open3d/visualization/shader/PickingShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/PickingShader.h b/cpp/open3d/visualization/shader/PickingShader.h index f76f2314953..040f2c1cbb3 100644 --- a/cpp/open3d/visualization/shader/PickingShader.h +++ b/cpp/open3d/visualization/shader/PickingShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/RGBDImageShader.cpp b/cpp/open3d/visualization/shader/RGBDImageShader.cpp index d63c608a601..e311d421542 100644 --- a/cpp/open3d/visualization/shader/RGBDImageShader.cpp +++ b/cpp/open3d/visualization/shader/RGBDImageShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/RGBDImageShader.h b/cpp/open3d/visualization/shader/RGBDImageShader.h index 02a83f6da73..642672d28ee 100644 --- a/cpp/open3d/visualization/shader/RGBDImageShader.h +++ b/cpp/open3d/visualization/shader/RGBDImageShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/ShaderWrapper.cpp b/cpp/open3d/visualization/shader/ShaderWrapper.cpp index 84f770fc64c..84e35d26f41 100644 --- a/cpp/open3d/visualization/shader/ShaderWrapper.cpp +++ b/cpp/open3d/visualization/shader/ShaderWrapper.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/ShaderWrapper.h b/cpp/open3d/visualization/shader/ShaderWrapper.h index 7f41b9aff23..db053fb80cb 100644 --- a/cpp/open3d/visualization/shader/ShaderWrapper.h +++ b/cpp/open3d/visualization/shader/ShaderWrapper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/Simple2DShader.cpp b/cpp/open3d/visualization/shader/Simple2DShader.cpp index e96da9acb0e..4a204d0dbf7 100644 --- a/cpp/open3d/visualization/shader/Simple2DShader.cpp +++ b/cpp/open3d/visualization/shader/Simple2DShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/Simple2DShader.h b/cpp/open3d/visualization/shader/Simple2DShader.h index 44d147310f2..32fa3e935f1 100644 --- a/cpp/open3d/visualization/shader/Simple2DShader.h +++ b/cpp/open3d/visualization/shader/Simple2DShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/SimpleBlackShader.cpp b/cpp/open3d/visualization/shader/SimpleBlackShader.cpp index 48e2a69bdc1..e45d5d1abb1 100644 --- a/cpp/open3d/visualization/shader/SimpleBlackShader.cpp +++ b/cpp/open3d/visualization/shader/SimpleBlackShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/SimpleBlackShader.h b/cpp/open3d/visualization/shader/SimpleBlackShader.h index 06384f86d6c..94059ec10bb 100644 --- a/cpp/open3d/visualization/shader/SimpleBlackShader.h +++ b/cpp/open3d/visualization/shader/SimpleBlackShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/SimpleShader.cpp b/cpp/open3d/visualization/shader/SimpleShader.cpp index d25bfb3412a..c14db429639 100644 --- a/cpp/open3d/visualization/shader/SimpleShader.cpp +++ b/cpp/open3d/visualization/shader/SimpleShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/SimpleShader.h b/cpp/open3d/visualization/shader/SimpleShader.h index 5262f5485ed..e5bd2cbaa23 100644 --- a/cpp/open3d/visualization/shader/SimpleShader.h +++ b/cpp/open3d/visualization/shader/SimpleShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/TexturePhongShader.cpp b/cpp/open3d/visualization/shader/TexturePhongShader.cpp index 0c69f18a177..c4256c070a7 100644 --- a/cpp/open3d/visualization/shader/TexturePhongShader.cpp +++ b/cpp/open3d/visualization/shader/TexturePhongShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/TexturePhongShader.h b/cpp/open3d/visualization/shader/TexturePhongShader.h index 6f469546808..86ef6e2a94b 100644 --- a/cpp/open3d/visualization/shader/TexturePhongShader.h +++ b/cpp/open3d/visualization/shader/TexturePhongShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/TextureSimpleShader.cpp b/cpp/open3d/visualization/shader/TextureSimpleShader.cpp index 7b1b88723da..0e9a428728d 100644 --- a/cpp/open3d/visualization/shader/TextureSimpleShader.cpp +++ b/cpp/open3d/visualization/shader/TextureSimpleShader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/shader/TextureSimpleShader.h b/cpp/open3d/visualization/shader/TextureSimpleShader.h index 6980beabee8..ae696e24afb 100644 --- a/cpp/open3d/visualization/shader/TextureSimpleShader.h +++ b/cpp/open3d/visualization/shader/TextureSimpleShader.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/ColorMap.cpp b/cpp/open3d/visualization/utility/ColorMap.cpp index cd2f9f02c03..71530c1982a 100644 --- a/cpp/open3d/visualization/utility/ColorMap.cpp +++ b/cpp/open3d/visualization/utility/ColorMap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/ColorMap.h b/cpp/open3d/visualization/utility/ColorMap.h index 59c6b66b6fe..6f620581a9e 100644 --- a/cpp/open3d/visualization/utility/ColorMap.h +++ b/cpp/open3d/visualization/utility/ColorMap.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/Draw.cpp b/cpp/open3d/visualization/utility/Draw.cpp index fac8b6fe1ec..6bb9e8817af 100644 --- a/cpp/open3d/visualization/utility/Draw.cpp +++ b/cpp/open3d/visualization/utility/Draw.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/Draw.h b/cpp/open3d/visualization/utility/Draw.h index 9a51dffa16a..dba40b3e355 100644 --- a/cpp/open3d/visualization/utility/Draw.h +++ b/cpp/open3d/visualization/utility/Draw.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/DrawGeometry.cpp b/cpp/open3d/visualization/utility/DrawGeometry.cpp index a03c54ead87..e057e393f29 100644 --- a/cpp/open3d/visualization/utility/DrawGeometry.cpp +++ b/cpp/open3d/visualization/utility/DrawGeometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/DrawGeometry.h b/cpp/open3d/visualization/utility/DrawGeometry.h index 6650787bc2a..3d55e1e78cb 100644 --- a/cpp/open3d/visualization/utility/DrawGeometry.h +++ b/cpp/open3d/visualization/utility/DrawGeometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/GLHelper.cpp b/cpp/open3d/visualization/utility/GLHelper.cpp index c0ab2d992ef..81e1cb3087c 100644 --- a/cpp/open3d/visualization/utility/GLHelper.cpp +++ b/cpp/open3d/visualization/utility/GLHelper.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/GLHelper.h b/cpp/open3d/visualization/utility/GLHelper.h index 02020b75067..76e5eab94a0 100644 --- a/cpp/open3d/visualization/utility/GLHelper.h +++ b/cpp/open3d/visualization/utility/GLHelper.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/PointCloudPicker.cpp b/cpp/open3d/visualization/utility/PointCloudPicker.cpp index 6e43f541e0f..77c8f2f05a3 100644 --- a/cpp/open3d/visualization/utility/PointCloudPicker.cpp +++ b/cpp/open3d/visualization/utility/PointCloudPicker.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/PointCloudPicker.h b/cpp/open3d/visualization/utility/PointCloudPicker.h index 213f935445c..915e65b44e9 100644 --- a/cpp/open3d/visualization/utility/PointCloudPicker.h +++ b/cpp/open3d/visualization/utility/PointCloudPicker.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/SelectionPolygon.cpp b/cpp/open3d/visualization/utility/SelectionPolygon.cpp index d1437b24fe9..227ff55db01 100644 --- a/cpp/open3d/visualization/utility/SelectionPolygon.cpp +++ b/cpp/open3d/visualization/utility/SelectionPolygon.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/SelectionPolygon.h b/cpp/open3d/visualization/utility/SelectionPolygon.h index 4cb778f7e5e..4cdc40cae87 100644 --- a/cpp/open3d/visualization/utility/SelectionPolygon.h +++ b/cpp/open3d/visualization/utility/SelectionPolygon.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/SelectionPolygonVolume.cpp b/cpp/open3d/visualization/utility/SelectionPolygonVolume.cpp index f02472ca6e8..fbbfaa38eeb 100644 --- a/cpp/open3d/visualization/utility/SelectionPolygonVolume.cpp +++ b/cpp/open3d/visualization/utility/SelectionPolygonVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/utility/SelectionPolygonVolume.h b/cpp/open3d/visualization/utility/SelectionPolygonVolume.h index 614058eba3d..c6e6ec87e0f 100644 --- a/cpp/open3d/visualization/utility/SelectionPolygonVolume.h +++ b/cpp/open3d/visualization/utility/SelectionPolygonVolume.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiSettingsModel.cpp b/cpp/open3d/visualization/visualizer/GuiSettingsModel.cpp index 71c5db0ebff..ddb21ff5ba5 100644 --- a/cpp/open3d/visualization/visualizer/GuiSettingsModel.cpp +++ b/cpp/open3d/visualization/visualizer/GuiSettingsModel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiSettingsModel.h b/cpp/open3d/visualization/visualizer/GuiSettingsModel.h index 307ebec9691..cb179a6b51c 100644 --- a/cpp/open3d/visualization/visualizer/GuiSettingsModel.h +++ b/cpp/open3d/visualization/visualizer/GuiSettingsModel.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiSettingsView.cpp b/cpp/open3d/visualization/visualizer/GuiSettingsView.cpp index f9ecd658358..a7d44acc2dd 100644 --- a/cpp/open3d/visualization/visualizer/GuiSettingsView.cpp +++ b/cpp/open3d/visualization/visualizer/GuiSettingsView.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiSettingsView.h b/cpp/open3d/visualization/visualizer/GuiSettingsView.h index 0eab298b8b6..10e81f9fc43 100644 --- a/cpp/open3d/visualization/visualizer/GuiSettingsView.h +++ b/cpp/open3d/visualization/visualizer/GuiSettingsView.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiVisualizer.cpp b/cpp/open3d/visualization/visualizer/GuiVisualizer.cpp index 545ee98001e..62b6b3fca99 100644 --- a/cpp/open3d/visualization/visualizer/GuiVisualizer.cpp +++ b/cpp/open3d/visualization/visualizer/GuiVisualizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiVisualizer.h b/cpp/open3d/visualization/visualizer/GuiVisualizer.h index 4f8a0e9087d..7ae59ae22dd 100644 --- a/cpp/open3d/visualization/visualizer/GuiVisualizer.h +++ b/cpp/open3d/visualization/visualizer/GuiVisualizer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiWidgets.cpp b/cpp/open3d/visualization/visualizer/GuiWidgets.cpp index 3d6ac28ecbd..5cd444afc58 100644 --- a/cpp/open3d/visualization/visualizer/GuiWidgets.cpp +++ b/cpp/open3d/visualization/visualizer/GuiWidgets.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/GuiWidgets.h b/cpp/open3d/visualization/visualizer/GuiWidgets.h index dcc2ef38b71..1ddf304617d 100644 --- a/cpp/open3d/visualization/visualizer/GuiWidgets.h +++ b/cpp/open3d/visualization/visualizer/GuiWidgets.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/MessageProcessor.cpp b/cpp/open3d/visualization/visualizer/MessageProcessor.cpp index ea637efe76a..1300ec915c3 100644 --- a/cpp/open3d/visualization/visualizer/MessageProcessor.cpp +++ b/cpp/open3d/visualization/visualizer/MessageProcessor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/MessageProcessor.h b/cpp/open3d/visualization/visualizer/MessageProcessor.h index 3525c5e0e30..c75773f1a47 100644 --- a/cpp/open3d/visualization/visualizer/MessageProcessor.h +++ b/cpp/open3d/visualization/visualizer/MessageProcessor.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/O3DVisualizer.cpp b/cpp/open3d/visualization/visualizer/O3DVisualizer.cpp index 69dbcbadb61..0cf3ce380cb 100644 --- a/cpp/open3d/visualization/visualizer/O3DVisualizer.cpp +++ b/cpp/open3d/visualization/visualizer/O3DVisualizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/O3DVisualizer.h b/cpp/open3d/visualization/visualizer/O3DVisualizer.h index af0ced3d6ba..dcd97e770a9 100644 --- a/cpp/open3d/visualization/visualizer/O3DVisualizer.h +++ b/cpp/open3d/visualization/visualizer/O3DVisualizer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.cpp b/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.cpp index ed2370adc3a..e245dda3b23 100644 --- a/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.cpp +++ b/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.h b/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.h index 38d4c5898e1..dd1f8eddb43 100644 --- a/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.h +++ b/cpp/open3d/visualization/visualizer/O3DVisualizerSelections.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/RenderOption.cpp b/cpp/open3d/visualization/visualizer/RenderOption.cpp index d4617edff69..1ae831d0400 100644 --- a/cpp/open3d/visualization/visualizer/RenderOption.cpp +++ b/cpp/open3d/visualization/visualizer/RenderOption.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/RenderOption.h b/cpp/open3d/visualization/visualizer/RenderOption.h index 83f22e9bc41..918b339cca4 100644 --- a/cpp/open3d/visualization/visualizer/RenderOption.h +++ b/cpp/open3d/visualization/visualizer/RenderOption.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.cpp b/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.cpp index 3fecb139af9..690e3a8617b 100644 --- a/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.cpp +++ b/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.h b/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.h index bd4bf0befdd..9f642f81b10 100644 --- a/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.h +++ b/cpp/open3d/visualization/visualizer/RenderOptionWithEditing.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewControl.cpp b/cpp/open3d/visualization/visualizer/ViewControl.cpp index a4ba2aae314..0f7da7cc892 100644 --- a/cpp/open3d/visualization/visualizer/ViewControl.cpp +++ b/cpp/open3d/visualization/visualizer/ViewControl.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewControl.h b/cpp/open3d/visualization/visualizer/ViewControl.h index 7d438427210..19dd7c7f92b 100644 --- a/cpp/open3d/visualization/visualizer/ViewControl.h +++ b/cpp/open3d/visualization/visualizer/ViewControl.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.cpp b/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.cpp index b176706aece..dc4d9a77408 100644 --- a/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.cpp +++ b/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.h b/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.h index 0155ecf80e5..e2fba484dc5 100644 --- a/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.h +++ b/cpp/open3d/visualization/visualizer/ViewControlWithCustomAnimation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewControlWithEditing.cpp b/cpp/open3d/visualization/visualizer/ViewControlWithEditing.cpp index a11b0ad3eba..3122b4e133b 100644 --- a/cpp/open3d/visualization/visualizer/ViewControlWithEditing.cpp +++ b/cpp/open3d/visualization/visualizer/ViewControlWithEditing.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewControlWithEditing.h b/cpp/open3d/visualization/visualizer/ViewControlWithEditing.h index c1fa57e992d..ae652912051 100644 --- a/cpp/open3d/visualization/visualizer/ViewControlWithEditing.h +++ b/cpp/open3d/visualization/visualizer/ViewControlWithEditing.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewParameters.cpp b/cpp/open3d/visualization/visualizer/ViewParameters.cpp index c3d3dd3f0a7..d80358d2b0f 100644 --- a/cpp/open3d/visualization/visualizer/ViewParameters.cpp +++ b/cpp/open3d/visualization/visualizer/ViewParameters.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewParameters.h b/cpp/open3d/visualization/visualizer/ViewParameters.h index 41541895677..7ee6bb72510 100644 --- a/cpp/open3d/visualization/visualizer/ViewParameters.h +++ b/cpp/open3d/visualization/visualizer/ViewParameters.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewTrajectory.cpp b/cpp/open3d/visualization/visualizer/ViewTrajectory.cpp index e3435b76a71..947c2bb51a1 100644 --- a/cpp/open3d/visualization/visualizer/ViewTrajectory.cpp +++ b/cpp/open3d/visualization/visualizer/ViewTrajectory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/ViewTrajectory.h b/cpp/open3d/visualization/visualizer/ViewTrajectory.h index e3f93303420..8ce08403164 100644 --- a/cpp/open3d/visualization/visualizer/ViewTrajectory.h +++ b/cpp/open3d/visualization/visualizer/ViewTrajectory.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/Visualizer.cpp b/cpp/open3d/visualization/visualizer/Visualizer.cpp index 216c4898a0a..37b24827e49 100644 --- a/cpp/open3d/visualization/visualizer/Visualizer.cpp +++ b/cpp/open3d/visualization/visualizer/Visualizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/Visualizer.h b/cpp/open3d/visualization/visualizer/Visualizer.h index 3d72d54ee41..7a2cd149baa 100644 --- a/cpp/open3d/visualization/visualizer/Visualizer.h +++ b/cpp/open3d/visualization/visualizer/Visualizer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerCallback.cpp b/cpp/open3d/visualization/visualizer/VisualizerCallback.cpp index d9482407e89..93eeec8d35c 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerCallback.cpp +++ b/cpp/open3d/visualization/visualizer/VisualizerCallback.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerRender.cpp b/cpp/open3d/visualization/visualizer/VisualizerRender.cpp index 175d11f99f8..9ca5c966da2 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerRender.cpp +++ b/cpp/open3d/visualization/visualizer/VisualizerRender.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.cpp b/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.cpp index 795b3a4a449..fa13111961e 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.cpp +++ b/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.h b/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.h index f3d8e1b0c55..836995eb823 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.h +++ b/cpp/open3d/visualization/visualizer/VisualizerWithCustomAnimation.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithEditing.cpp b/cpp/open3d/visualization/visualizer/VisualizerWithEditing.cpp index 7a56a6f8d86..69328302dfa 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithEditing.cpp +++ b/cpp/open3d/visualization/visualizer/VisualizerWithEditing.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithEditing.h b/cpp/open3d/visualization/visualizer/VisualizerWithEditing.h index 66ee4477df0..b6b34242dac 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithEditing.h +++ b/cpp/open3d/visualization/visualizer/VisualizerWithEditing.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.cpp b/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.cpp index 6fd167b73e5..5a4b0063b01 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.cpp +++ b/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.h b/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.h index add4e265edc..734bbfef0cb 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.h +++ b/cpp/open3d/visualization/visualizer/VisualizerWithKeyCallback.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.cpp b/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.cpp index 3bf224f2368..fcc6ad48140 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.cpp +++ b/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.h b/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.h index bc9c3298cd0..d360c996bf8 100644 --- a/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.h +++ b/cpp/open3d/visualization/visualizer/VisualizerWithVertexSelection.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.cpp b/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.cpp index f28c7684cff..6fd753baf43 100644 --- a/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.cpp +++ b/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.h b/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.h index 2605b8f592e..81ea8243392 100644 --- a/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.h +++ b/cpp/open3d/visualization/webrtc_server/BitmapTrackSource.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.cpp b/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.cpp index 3d933f6070f..1a1030714cd 100644 --- a/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.cpp +++ b/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.h b/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.h index 44367f12270..91af2fdbb5c 100644 --- a/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.h +++ b/cpp/open3d/visualization/webrtc_server/HttpServerRequestHandler.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/ImageCapturer.cpp b/cpp/open3d/visualization/webrtc_server/ImageCapturer.cpp index d870c2170bb..a7ad0109607 100644 --- a/cpp/open3d/visualization/webrtc_server/ImageCapturer.cpp +++ b/cpp/open3d/visualization/webrtc_server/ImageCapturer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/ImageCapturer.h b/cpp/open3d/visualization/webrtc_server/ImageCapturer.h index b83624f05cf..f1b094ba3ca 100644 --- a/cpp/open3d/visualization/webrtc_server/ImageCapturer.h +++ b/cpp/open3d/visualization/webrtc_server/ImageCapturer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // diff --git a/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.cpp b/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.cpp index 7b61ac144f5..c29696c39e2 100644 --- a/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.cpp +++ b/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.h b/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.h index 8ef27e79a54..e57f7891ce1 100644 --- a/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.h +++ b/cpp/open3d/visualization/webrtc_server/PeerConnectionManager.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/VideoFilter.h b/cpp/open3d/visualization/webrtc_server/VideoFilter.h index 6a9ddc2f2dd..16588c96a2a 100644 --- a/cpp/open3d/visualization/webrtc_server/VideoFilter.h +++ b/cpp/open3d/visualization/webrtc_server/VideoFilter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/VideoScaler.h b/cpp/open3d/visualization/webrtc_server/VideoScaler.h index 733ef7a8517..cd57e3dc898 100644 --- a/cpp/open3d/visualization/webrtc_server/VideoScaler.h +++ b/cpp/open3d/visualization/webrtc_server/VideoScaler.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.cpp b/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.cpp index 4440f0d865b..667a7c88be4 100644 --- a/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.cpp +++ b/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.h b/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.h index 1904187ba54..c2769333639 100644 --- a/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.h +++ b/cpp/open3d/visualization/webrtc_server/WebRTCWindowSystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- /// \file WebRTCWindowSystem.h diff --git a/cpp/open3d/visualization/webrtc_server/html/webrtcstreamer.js b/cpp/open3d/visualization/webrtc_server/html/webrtcstreamer.js index 418139df27e..d7bcd8f6c13 100755 --- a/cpp/open3d/visualization/webrtc_server/html/webrtcstreamer.js +++ b/cpp/open3d/visualization/webrtc_server/html/webrtcstreamer.js @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Contains source code from // https://github.com/mpromonet/webrtc-streamer diff --git a/cpp/pybind/camera/camera.cpp b/cpp/pybind/camera/camera.cpp index 6f78b631f00..54d865e4d27 100644 --- a/cpp/pybind/camera/camera.cpp +++ b/cpp/pybind/camera/camera.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/camera/camera.h b/cpp/pybind/camera/camera.h index b7de65643fe..dbc4a762987 100644 --- a/cpp/pybind/camera/camera.h +++ b/cpp/pybind/camera/camera.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/blob.cpp b/cpp/pybind/core/blob.cpp index 228347cf81b..b7a4827d5c5 100644 --- a/cpp/pybind/core/blob.cpp +++ b/cpp/pybind/core/blob.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/core.cpp b/cpp/pybind/core/core.cpp index 764852ae2e7..c69e658e045 100644 --- a/cpp/pybind/core/core.cpp +++ b/cpp/pybind/core/core.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/core.h b/cpp/pybind/core/core.h index 634b697a55a..798098b93fc 100644 --- a/cpp/pybind/core/core.h +++ b/cpp/pybind/core/core.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/cuda_utils.cpp b/cpp/pybind/core/cuda_utils.cpp index 30b0f84511f..cb82bb030c4 100644 --- a/cpp/pybind/core/cuda_utils.cpp +++ b/cpp/pybind/core/cuda_utils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/device.cpp b/cpp/pybind/core/device.cpp index f72f7ace754..c048d4c1e8a 100644 --- a/cpp/pybind/core/device.cpp +++ b/cpp/pybind/core/device.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/dtype.cpp b/cpp/pybind/core/dtype.cpp index 5a17a6cb105..870b2f10033 100644 --- a/cpp/pybind/core/dtype.cpp +++ b/cpp/pybind/core/dtype.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/hashmap.cpp b/cpp/pybind/core/hashmap.cpp index 44220aaeae1..ce95bf15658 100644 --- a/cpp/pybind/core/hashmap.cpp +++ b/cpp/pybind/core/hashmap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/kernel.cpp b/cpp/pybind/core/kernel.cpp index abfa9785e63..887bfae918f 100644 --- a/cpp/pybind/core/kernel.cpp +++ b/cpp/pybind/core/kernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/linalg.cpp b/cpp/pybind/core/linalg.cpp index c225daf6861..fa90f6ed3f9 100644 --- a/cpp/pybind/core/linalg.cpp +++ b/cpp/pybind/core/linalg.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/nns/nearest_neighbor_search.cpp b/cpp/pybind/core/nns/nearest_neighbor_search.cpp index 5512bccf3be..ad8de540b93 100644 --- a/cpp/pybind/core/nns/nearest_neighbor_search.cpp +++ b/cpp/pybind/core/nns/nearest_neighbor_search.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/nns/nearest_neighbor_search.h b/cpp/pybind/core/nns/nearest_neighbor_search.h index 278f240b64b..c81970cf4f0 100644 --- a/cpp/pybind/core/nns/nearest_neighbor_search.h +++ b/cpp/pybind/core/nns/nearest_neighbor_search.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/scalar.cpp b/cpp/pybind/core/scalar.cpp index fc6512d09dd..e72ecffec3d 100644 --- a/cpp/pybind/core/scalar.cpp +++ b/cpp/pybind/core/scalar.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/size_vector.cpp b/cpp/pybind/core/size_vector.cpp index f9344908a3b..65630d4949d 100644 --- a/cpp/pybind/core/size_vector.cpp +++ b/cpp/pybind/core/size_vector.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/sycl_utils.cpp b/cpp/pybind/core/sycl_utils.cpp index 0acf8c37a5b..ad706498499 100644 --- a/cpp/pybind/core/sycl_utils.cpp +++ b/cpp/pybind/core/sycl_utils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor.cpp b/cpp/pybind/core/tensor.cpp index d81cccaf7de..fb2929fc54d 100644 --- a/cpp/pybind/core/tensor.cpp +++ b/cpp/pybind/core/tensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor_accessor.cpp b/cpp/pybind/core/tensor_accessor.cpp index 01825ca8662..15b028bb78c 100644 --- a/cpp/pybind/core/tensor_accessor.cpp +++ b/cpp/pybind/core/tensor_accessor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor_converter.cpp b/cpp/pybind/core/tensor_converter.cpp index 1e07ad91d0c..ea3e2ff4f45 100644 --- a/cpp/pybind/core/tensor_converter.cpp +++ b/cpp/pybind/core/tensor_converter.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor_converter.h b/cpp/pybind/core/tensor_converter.h index 975910e56f5..cf255925830 100644 --- a/cpp/pybind/core/tensor_converter.h +++ b/cpp/pybind/core/tensor_converter.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor_function.cpp b/cpp/pybind/core/tensor_function.cpp index 01adb644ce0..0259c564062 100644 --- a/cpp/pybind/core/tensor_function.cpp +++ b/cpp/pybind/core/tensor_function.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor_type_caster.cpp b/cpp/pybind/core/tensor_type_caster.cpp index 2fb4ff99d67..cb69fddfef0 100644 --- a/cpp/pybind/core/tensor_type_caster.cpp +++ b/cpp/pybind/core/tensor_type_caster.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/core/tensor_type_caster.h b/cpp/pybind/core/tensor_type_caster.h index 6cc50935957..19455769f2f 100644 --- a/cpp/pybind/core/tensor_type_caster.h +++ b/cpp/pybind/core/tensor_type_caster.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/data/dataset.cpp b/cpp/pybind/data/dataset.cpp index 6526088fc5c..bbd331d1010 100644 --- a/cpp/pybind/data/dataset.cpp +++ b/cpp/pybind/data/dataset.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/data/dataset.h b/cpp/pybind/data/dataset.h index 57b1183a255..b5323357bb7 100644 --- a/cpp/pybind/data/dataset.h +++ b/cpp/pybind/data/dataset.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/docstring.cpp b/cpp/pybind/docstring.cpp index f6ed0d1a4b3..6db1ff883fe 100644 --- a/cpp/pybind/docstring.cpp +++ b/cpp/pybind/docstring.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/docstring.h b/cpp/pybind/docstring.h index 3b6d29043e1..6a91681097a 100644 --- a/cpp/pybind/docstring.h +++ b/cpp/pybind/docstring.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/generate_tf_ops_wrapper.py b/cpp/pybind/generate_tf_ops_wrapper.py index 68fd76cda08..5883b45f4ab 100644 --- a/cpp/pybind/generate_tf_ops_wrapper.py +++ b/cpp/pybind/generate_tf_ops_wrapper.py @@ -1,29 +1,9 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# The MIT License (MIT) -# -# Copyright (c) 2018-2023 www.open3d.org -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -# IN THE SOFTWARE. +# Copyright (c) 2018-2024 www.open3d.org +# SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- - """This script inspects the open3d_tf_ops library and generates function wrappers""" import os import sys diff --git a/cpp/pybind/generate_torch_ops_wrapper.py b/cpp/pybind/generate_torch_ops_wrapper.py index 38b381d7e28..bda52b8fc83 100644 --- a/cpp/pybind/generate_torch_ops_wrapper.py +++ b/cpp/pybind/generate_torch_ops_wrapper.py @@ -1,27 +1,8 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# The MIT License (MIT) -# -# Copyright (c) 2018-2023 www.open3d.org -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -# IN THE SOFTWARE. +# Copyright (c) 2018-2024 www.open3d.org +# SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """This script inspects the open3d_torch_ops library and generates function wrappers""" import os diff --git a/cpp/pybind/geometry/boundingvolume.cpp b/cpp/pybind/geometry/boundingvolume.cpp index 4ffcbf8a52d..3501bebd400 100644 --- a/cpp/pybind/geometry/boundingvolume.cpp +++ b/cpp/pybind/geometry/boundingvolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/geometry.cpp b/cpp/pybind/geometry/geometry.cpp index 22b63c8184c..98bf6c1e9e7 100644 --- a/cpp/pybind/geometry/geometry.cpp +++ b/cpp/pybind/geometry/geometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/geometry.h b/cpp/pybind/geometry/geometry.h index ec9d6f6f3fa..99733368a44 100644 --- a/cpp/pybind/geometry/geometry.h +++ b/cpp/pybind/geometry/geometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/geometry_trampoline.h b/cpp/pybind/geometry/geometry_trampoline.h index f81a44f6d43..84afa97efbf 100644 --- a/cpp/pybind/geometry/geometry_trampoline.h +++ b/cpp/pybind/geometry/geometry_trampoline.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/halfedgetrianglemesh.cpp b/cpp/pybind/geometry/halfedgetrianglemesh.cpp index ee269a33f84..f25b9af893c 100644 --- a/cpp/pybind/geometry/halfedgetrianglemesh.cpp +++ b/cpp/pybind/geometry/halfedgetrianglemesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/image.cpp b/cpp/pybind/geometry/image.cpp index 910826708de..c53336b8068 100644 --- a/cpp/pybind/geometry/image.cpp +++ b/cpp/pybind/geometry/image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/kdtreeflann.cpp b/cpp/pybind/geometry/kdtreeflann.cpp index 42dfaba3795..7b2d590ca9c 100644 --- a/cpp/pybind/geometry/kdtreeflann.cpp +++ b/cpp/pybind/geometry/kdtreeflann.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/keypoint.cpp b/cpp/pybind/geometry/keypoint.cpp index 97865a7f36c..117a2eeefde 100644 --- a/cpp/pybind/geometry/keypoint.cpp +++ b/cpp/pybind/geometry/keypoint.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/pybind/geometry/lineset.cpp b/cpp/pybind/geometry/lineset.cpp index fe13fd0b848..637bdc0ea36 100644 --- a/cpp/pybind/geometry/lineset.cpp +++ b/cpp/pybind/geometry/lineset.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/meshbase.cpp b/cpp/pybind/geometry/meshbase.cpp index d3c3ec447e6..1f7657202df 100644 --- a/cpp/pybind/geometry/meshbase.cpp +++ b/cpp/pybind/geometry/meshbase.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/octree.cpp b/cpp/pybind/geometry/octree.cpp index 9e4c2c62c71..64001b7efab 100644 --- a/cpp/pybind/geometry/octree.cpp +++ b/cpp/pybind/geometry/octree.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/octree.h b/cpp/pybind/geometry/octree.h index 4dbe5cd44aa..5d488fbdfd1 100644 --- a/cpp/pybind/geometry/octree.h +++ b/cpp/pybind/geometry/octree.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/pointcloud.cpp b/cpp/pybind/geometry/pointcloud.cpp index 9a77636f628..42ca23e7b4f 100644 --- a/cpp/pybind/geometry/pointcloud.cpp +++ b/cpp/pybind/geometry/pointcloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/tetramesh.cpp b/cpp/pybind/geometry/tetramesh.cpp index 62e7ec7e807..fd2077ac1d8 100644 --- a/cpp/pybind/geometry/tetramesh.cpp +++ b/cpp/pybind/geometry/tetramesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/trianglemesh.cpp b/cpp/pybind/geometry/trianglemesh.cpp index 1c0fbd8c365..4c046d5871b 100644 --- a/cpp/pybind/geometry/trianglemesh.cpp +++ b/cpp/pybind/geometry/trianglemesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/geometry/voxelgrid.cpp b/cpp/pybind/geometry/voxelgrid.cpp index 591d8705af6..8cf66ce8a95 100644 --- a/cpp/pybind/geometry/voxelgrid.cpp +++ b/cpp/pybind/geometry/voxelgrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/io/class_io.cpp b/cpp/pybind/io/class_io.cpp index 137d1784708..e422af14654 100644 --- a/cpp/pybind/io/class_io.cpp +++ b/cpp/pybind/io/class_io.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/io/io.cpp b/cpp/pybind/io/io.cpp index 27c6c32e705..fd6efd919de 100644 --- a/cpp/pybind/io/io.cpp +++ b/cpp/pybind/io/io.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/io/io.h b/cpp/pybind/io/io.h index c08a1d1fa90..bf8720a8e98 100644 --- a/cpp/pybind/io/io.h +++ b/cpp/pybind/io/io.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/io/rpc.cpp b/cpp/pybind/io/rpc.cpp index 590f2bd3d66..9871e4ec968 100644 --- a/cpp/pybind/io/rpc.cpp +++ b/cpp/pybind/io/rpc.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/io/sensor.cpp b/cpp/pybind/io/sensor.cpp index b9108d69116..9ee5dd0ebc8 100644 --- a/cpp/pybind/io/sensor.cpp +++ b/cpp/pybind/io/sensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/ml/contrib/contrib.cpp b/cpp/pybind/ml/contrib/contrib.cpp index bd3b87d45cd..70b0a83d610 100644 --- a/cpp/pybind/ml/contrib/contrib.cpp +++ b/cpp/pybind/ml/contrib/contrib.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/ml/contrib/contrib.h b/cpp/pybind/ml/contrib/contrib.h index 1b13668843d..453218485d5 100644 --- a/cpp/pybind/ml/contrib/contrib.h +++ b/cpp/pybind/ml/contrib/contrib.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/ml/contrib/contrib_subsample.cpp b/cpp/pybind/ml/contrib/contrib_subsample.cpp index ce028afff07..982ba2489f8 100644 --- a/cpp/pybind/ml/contrib/contrib_subsample.cpp +++ b/cpp/pybind/ml/contrib/contrib_subsample.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/ml/contrib/iou.cpp b/cpp/pybind/ml/contrib/iou.cpp index 58a83e4b593..0b590d2e2d5 100644 --- a/cpp/pybind/ml/contrib/iou.cpp +++ b/cpp/pybind/ml/contrib/iou.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/ml/ml.cpp b/cpp/pybind/ml/ml.cpp index c0e4c882241..731a70da6d9 100644 --- a/cpp/pybind/ml/ml.cpp +++ b/cpp/pybind/ml/ml.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/ml/ml.h b/cpp/pybind/ml/ml.h index 454771411b0..f7617964c8c 100644 --- a/cpp/pybind/ml/ml.h +++ b/cpp/pybind/ml/ml.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/open3d_pybind.cpp b/cpp/pybind/open3d_pybind.cpp index 5b587408398..148a6d81f27 100644 --- a/cpp/pybind/open3d_pybind.cpp +++ b/cpp/pybind/open3d_pybind.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/open3d_pybind.h b/cpp/pybind/open3d_pybind.h index 0d6caaa4b02..f432092096a 100644 --- a/cpp/pybind/open3d_pybind.h +++ b/cpp/pybind/open3d_pybind.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/color_map/color_map.cpp b/cpp/pybind/pipelines/color_map/color_map.cpp index dfc57470bb6..06217165c46 100644 --- a/cpp/pybind/pipelines/color_map/color_map.cpp +++ b/cpp/pybind/pipelines/color_map/color_map.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/color_map/color_map.h b/cpp/pybind/pipelines/color_map/color_map.h index bea1a3c84a4..b897c65e281 100644 --- a/cpp/pybind/pipelines/color_map/color_map.h +++ b/cpp/pybind/pipelines/color_map/color_map.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/integration/integration.cpp b/cpp/pybind/pipelines/integration/integration.cpp index 1ffca9843c6..ded304ce64f 100644 --- a/cpp/pybind/pipelines/integration/integration.cpp +++ b/cpp/pybind/pipelines/integration/integration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/integration/integration.h b/cpp/pybind/pipelines/integration/integration.h index 47c2454a32e..2b2c74b7fe2 100644 --- a/cpp/pybind/pipelines/integration/integration.h +++ b/cpp/pybind/pipelines/integration/integration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/odometry/odometry.cpp b/cpp/pybind/pipelines/odometry/odometry.cpp index b365edfc7b7..44a09ff0a3a 100644 --- a/cpp/pybind/pipelines/odometry/odometry.cpp +++ b/cpp/pybind/pipelines/odometry/odometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/odometry/odometry.h b/cpp/pybind/pipelines/odometry/odometry.h index 0a7d2868969..e3ed804288e 100644 --- a/cpp/pybind/pipelines/odometry/odometry.h +++ b/cpp/pybind/pipelines/odometry/odometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/pipelines.cpp b/cpp/pybind/pipelines/pipelines.cpp index 9b1f4422828..11a83921f3b 100644 --- a/cpp/pybind/pipelines/pipelines.cpp +++ b/cpp/pybind/pipelines/pipelines.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/pipelines.h b/cpp/pybind/pipelines/pipelines.h index 7783055cff0..22f1aa5fcde 100644 --- a/cpp/pybind/pipelines/pipelines.h +++ b/cpp/pybind/pipelines/pipelines.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/registration/feature.cpp b/cpp/pybind/pipelines/registration/feature.cpp index 5896243b5c3..ce298dceec3 100644 --- a/cpp/pybind/pipelines/registration/feature.cpp +++ b/cpp/pybind/pipelines/registration/feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/registration/global_optimization.cpp b/cpp/pybind/pipelines/registration/global_optimization.cpp index b1c4d246c45..7f5b747c2aa 100644 --- a/cpp/pybind/pipelines/registration/global_optimization.cpp +++ b/cpp/pybind/pipelines/registration/global_optimization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/registration/registration.cpp b/cpp/pybind/pipelines/registration/registration.cpp index b57836bdcee..d5b9af18c28 100644 --- a/cpp/pybind/pipelines/registration/registration.cpp +++ b/cpp/pybind/pipelines/registration/registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/registration/registration.h b/cpp/pybind/pipelines/registration/registration.h index 1e98308e073..ff1240bf5a2 100644 --- a/cpp/pybind/pipelines/registration/registration.h +++ b/cpp/pybind/pipelines/registration/registration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pipelines/registration/robust_kernels.cpp b/cpp/pybind/pipelines/registration/robust_kernels.cpp index 477c5812427..f47d6fdb1ff 100644 --- a/cpp/pybind/pipelines/registration/robust_kernels.cpp +++ b/cpp/pybind/pipelines/registration/robust_kernels.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/pybind/pybind_filesystem.h b/cpp/pybind/pybind_filesystem.h index 85028761057..3617d6cad45 100644 --- a/cpp/pybind/pybind_filesystem.h +++ b/cpp/pybind/pybind_filesystem.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pybind_utils.cpp b/cpp/pybind/pybind_utils.cpp index 50fafea4a85..f907d0d9c17 100644 --- a/cpp/pybind/pybind_utils.cpp +++ b/cpp/pybind/pybind_utils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/pybind_utils.h b/cpp/pybind/pybind_utils.h index d99ea505351..066b54b0112 100644 --- a/cpp/pybind/pybind_utils.h +++ b/cpp/pybind/pybind_utils.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/boundingvolume.cpp b/cpp/pybind/t/geometry/boundingvolume.cpp index 8e4494d1b79..ed973e739d5 100644 --- a/cpp/pybind/t/geometry/boundingvolume.cpp +++ b/cpp/pybind/t/geometry/boundingvolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/drawablegeometry.cpp b/cpp/pybind/t/geometry/drawablegeometry.cpp index 57ef37b2f3a..7408c503a38 100644 --- a/cpp/pybind/t/geometry/drawablegeometry.cpp +++ b/cpp/pybind/t/geometry/drawablegeometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/geometry.cpp b/cpp/pybind/t/geometry/geometry.cpp index 47c13bebc25..dc11818c770 100644 --- a/cpp/pybind/t/geometry/geometry.cpp +++ b/cpp/pybind/t/geometry/geometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/geometry.h b/cpp/pybind/t/geometry/geometry.h index a1c9f81ea62..1776a283cd1 100644 --- a/cpp/pybind/t/geometry/geometry.h +++ b/cpp/pybind/t/geometry/geometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/image.cpp b/cpp/pybind/t/geometry/image.cpp index 6f42c4eca35..46ae6e8807a 100644 --- a/cpp/pybind/t/geometry/image.cpp +++ b/cpp/pybind/t/geometry/image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/lineset.cpp b/cpp/pybind/t/geometry/lineset.cpp index fe5bdb8ad33..44fce56fd28 100644 --- a/cpp/pybind/t/geometry/lineset.cpp +++ b/cpp/pybind/t/geometry/lineset.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- @@ -257,12 +257,9 @@ transformation as :math:`P = R(P) + t`)"); Args: angle (float): The rotation angle in degree. - axis (open3d.core.Tensor): The rotation axis. - resolution (int): The resolution defines the number of intermediate sweeps about the rotation axis. - translation (float): The translation along the rotation axis. Returns: @@ -270,7 +267,6 @@ transformation as :math:`P = R(P) + t`)"); Example: - This code generates a spring from a single line:: import open3d as o3d @@ -286,9 +282,7 @@ transformation as :math:`P = R(P) + t`)"); R"(Sweeps the line set along a direction vector. Args: - vector (open3d.core.Tensor): The direction vector. - scale (float): Scalar factor which essentially scales the direction vector. Returns: @@ -296,8 +290,8 @@ transformation as :math:`P = R(P) + t`)"); Example: - This code generates an L-shaped mesh:: + import open3d as o3d lines = o3d.t.geometry.LineSet([[1.0,0.0,0.0],[0,0,0],[0,0,1]], [[0,1],[1,2]]) @@ -326,7 +320,7 @@ matrices. Camera reference frame is shown with XYZ axes in RGB. Example: - Draw a purple camera frame with XYZ axes in RGB. + Draw a purple camera frame with XYZ axes in RGB:: import open3d.core as o3c from open3d.t.geometry import LineSet diff --git a/cpp/pybind/t/geometry/pointcloud.cpp b/cpp/pybind/t/geometry/pointcloud.cpp index ddcfd89d788..f601746d0fe 100644 --- a/cpp/pybind/t/geometry/pointcloud.cpp +++ b/cpp/pybind/t/geometry/pointcloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/raycasting_scene.cpp b/cpp/pybind/t/geometry/raycasting_scene.cpp index b3e8983aaef..d11d8af9fcf 100644 --- a/cpp/pybind/t/geometry/raycasting_scene.cpp +++ b/cpp/pybind/t/geometry/raycasting_scene.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/tensormap.cpp b/cpp/pybind/t/geometry/tensormap.cpp index 45882dc3115..6fd4f0e6a9c 100644 --- a/cpp/pybind/t/geometry/tensormap.cpp +++ b/cpp/pybind/t/geometry/tensormap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/trianglemesh.cpp b/cpp/pybind/t/geometry/trianglemesh.cpp index 5c2de11fa18..7d81279d25d 100644 --- a/cpp/pybind/t/geometry/trianglemesh.cpp +++ b/cpp/pybind/t/geometry/trianglemesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/geometry/voxel_block_grid.cpp b/cpp/pybind/t/geometry/voxel_block_grid.cpp index 9928fcde83f..e5a4d4fea2a 100644 --- a/cpp/pybind/t/geometry/voxel_block_grid.cpp +++ b/cpp/pybind/t/geometry/voxel_block_grid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/io/class_io.cpp b/cpp/pybind/t/io/class_io.cpp index 756187a8aa4..9a12b3a93c4 100644 --- a/cpp/pybind/t/io/class_io.cpp +++ b/cpp/pybind/t/io/class_io.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/io/io.cpp b/cpp/pybind/t/io/io.cpp index 8282c3a94fb..cc0a10cab70 100644 --- a/cpp/pybind/t/io/io.cpp +++ b/cpp/pybind/t/io/io.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/io/io.h b/cpp/pybind/t/io/io.h index 84561452aa3..73e334f6f3a 100644 --- a/cpp/pybind/t/io/io.h +++ b/cpp/pybind/t/io/io.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/io/sensor.cpp b/cpp/pybind/t/io/sensor.cpp index b0d9cf13cc2..d33f171446e 100644 --- a/cpp/pybind/t/io/sensor.cpp +++ b/cpp/pybind/t/io/sensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/odometry/odometry.cpp b/cpp/pybind/t/pipelines/odometry/odometry.cpp index 120d5827522..3626de2c4c2 100644 --- a/cpp/pybind/t/pipelines/odometry/odometry.cpp +++ b/cpp/pybind/t/pipelines/odometry/odometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/odometry/odometry.h b/cpp/pybind/t/pipelines/odometry/odometry.h index c8494d66654..ee82edc956d 100644 --- a/cpp/pybind/t/pipelines/odometry/odometry.h +++ b/cpp/pybind/t/pipelines/odometry/odometry.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/pipelines.cpp b/cpp/pybind/t/pipelines/pipelines.cpp index 7f3fbe4e551..083a0c06f5b 100644 --- a/cpp/pybind/t/pipelines/pipelines.cpp +++ b/cpp/pybind/t/pipelines/pipelines.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/pipelines.h b/cpp/pybind/t/pipelines/pipelines.h index 96635b839a1..f9a02a5e0bd 100644 --- a/cpp/pybind/t/pipelines/pipelines.h +++ b/cpp/pybind/t/pipelines/pipelines.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/registration/feature.cpp b/cpp/pybind/t/pipelines/registration/feature.cpp index 2317e5ae5cd..b7e9e1d5ca5 100644 --- a/cpp/pybind/t/pipelines/registration/feature.cpp +++ b/cpp/pybind/t/pipelines/registration/feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/registration/registration.cpp b/cpp/pybind/t/pipelines/registration/registration.cpp index 10988a80894..0d3e54eddaf 100644 --- a/cpp/pybind/t/pipelines/registration/registration.cpp +++ b/cpp/pybind/t/pipelines/registration/registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/registration/registration.h b/cpp/pybind/t/pipelines/registration/registration.h index 518e6b319ed..1032d7e2d7b 100644 --- a/cpp/pybind/t/pipelines/registration/registration.h +++ b/cpp/pybind/t/pipelines/registration/registration.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/registration/robust_kernel.cpp b/cpp/pybind/t/pipelines/registration/robust_kernel.cpp index 49198c0fb4b..e6cd74e7526 100644 --- a/cpp/pybind/t/pipelines/registration/robust_kernel.cpp +++ b/cpp/pybind/t/pipelines/registration/robust_kernel.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/slac/slac.cpp b/cpp/pybind/t/pipelines/slac/slac.cpp index 4510f78207a..c32475ca007 100644 --- a/cpp/pybind/t/pipelines/slac/slac.cpp +++ b/cpp/pybind/t/pipelines/slac/slac.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/slac/slac.h b/cpp/pybind/t/pipelines/slac/slac.h index c3e734086b4..d2b836f2835 100644 --- a/cpp/pybind/t/pipelines/slac/slac.h +++ b/cpp/pybind/t/pipelines/slac/slac.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/slam/slam.cpp b/cpp/pybind/t/pipelines/slam/slam.cpp index c7ea2940c81..c43daf0fc81 100644 --- a/cpp/pybind/t/pipelines/slam/slam.cpp +++ b/cpp/pybind/t/pipelines/slam/slam.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/pipelines/slam/slam.h b/cpp/pybind/t/pipelines/slam/slam.h index 335e03c65fd..4e281ed850c 100644 --- a/cpp/pybind/t/pipelines/slam/slam.h +++ b/cpp/pybind/t/pipelines/slam/slam.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/t.cpp b/cpp/pybind/t/t.cpp index 48a6dd9b811..7f8f9e85ebb 100644 --- a/cpp/pybind/t/t.cpp +++ b/cpp/pybind/t/t.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/t/t.h b/cpp/pybind/t/t.h index 95a050b4c02..6585d208af9 100644 --- a/cpp/pybind/t/t.h +++ b/cpp/pybind/t/t.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/utility/eigen.cpp b/cpp/pybind/utility/eigen.cpp index 6220d7e14f8..1eb621772eb 100644 --- a/cpp/pybind/utility/eigen.cpp +++ b/cpp/pybind/utility/eigen.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/utility/logging.cpp b/cpp/pybind/utility/logging.cpp index 8d50af1213f..eaaabb27616 100644 --- a/cpp/pybind/utility/logging.cpp +++ b/cpp/pybind/utility/logging.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/utility/random.cpp b/cpp/pybind/utility/random.cpp index 38fefa7869f..fbecce49f0d 100644 --- a/cpp/pybind/utility/random.cpp +++ b/cpp/pybind/utility/random.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/utility/utility.cpp b/cpp/pybind/utility/utility.cpp index 1e26aa1bfb9..eca65bcf2fb 100644 --- a/cpp/pybind/utility/utility.cpp +++ b/cpp/pybind/utility/utility.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/utility/utility.h b/cpp/pybind/utility/utility.h index 2f61661674d..636d93547b9 100644 --- a/cpp/pybind/utility/utility.h +++ b/cpp/pybind/utility/utility.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/app/viewer.cpp b/cpp/pybind/visualization/app/viewer.cpp index f6be9c4d158..37a3a03989c 100644 --- a/cpp/pybind/visualization/app/viewer.cpp +++ b/cpp/pybind/visualization/app/viewer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/app/viewer.h b/cpp/pybind/visualization/app/viewer.h index b39310b6081..5f726feacf4 100644 --- a/cpp/pybind/visualization/app/viewer.h +++ b/cpp/pybind/visualization/app/viewer.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/gui/events.cpp b/cpp/pybind/visualization/gui/events.cpp index f6a3876e8ee..62999d472ee 100644 --- a/cpp/pybind/visualization/gui/events.cpp +++ b/cpp/pybind/visualization/gui/events.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/gui/gui.cpp b/cpp/pybind/visualization/gui/gui.cpp index 708d2c14e2b..a7c22c1e74b 100644 --- a/cpp/pybind/visualization/gui/gui.cpp +++ b/cpp/pybind/visualization/gui/gui.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/gui/gui.h b/cpp/pybind/visualization/gui/gui.h index c2a10b990d3..45cb8b4a62e 100644 --- a/cpp/pybind/visualization/gui/gui.h +++ b/cpp/pybind/visualization/gui/gui.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/o3dvisualizer.cpp b/cpp/pybind/visualization/o3dvisualizer.cpp index ba422cc9cc7..89a09b73203 100644 --- a/cpp/pybind/visualization/o3dvisualizer.cpp +++ b/cpp/pybind/visualization/o3dvisualizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/rendering/material.cpp b/cpp/pybind/visualization/rendering/material.cpp index 15ac1a08b09..004c9590574 100644 --- a/cpp/pybind/visualization/rendering/material.cpp +++ b/cpp/pybind/visualization/rendering/material.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/rendering/material.h b/cpp/pybind/visualization/rendering/material.h index 6e157cd74a1..a15e9fa33f4 100644 --- a/cpp/pybind/visualization/rendering/material.h +++ b/cpp/pybind/visualization/rendering/material.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/rendering/rendering.cpp b/cpp/pybind/visualization/rendering/rendering.cpp index f670289f420..24d93fc6163 100644 --- a/cpp/pybind/visualization/rendering/rendering.cpp +++ b/cpp/pybind/visualization/rendering/rendering.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/rendering/rendering.h b/cpp/pybind/visualization/rendering/rendering.h index 0e5dd6bc035..c432bb20975 100644 --- a/cpp/pybind/visualization/rendering/rendering.h +++ b/cpp/pybind/visualization/rendering/rendering.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/renderoption.cpp b/cpp/pybind/visualization/renderoption.cpp index c2a3424c0b4..5e66621e358 100644 --- a/cpp/pybind/visualization/renderoption.cpp +++ b/cpp/pybind/visualization/renderoption.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/utility.cpp b/cpp/pybind/visualization/utility.cpp index 99cb4323d60..77d63d5e100 100644 --- a/cpp/pybind/visualization/utility.cpp +++ b/cpp/pybind/visualization/utility.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/viewcontrol.cpp b/cpp/pybind/visualization/viewcontrol.cpp index 695f7d7c626..ceb95addda4 100644 --- a/cpp/pybind/visualization/viewcontrol.cpp +++ b/cpp/pybind/visualization/viewcontrol.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/visualization.cpp b/cpp/pybind/visualization/visualization.cpp index d143683996b..44c3770f598 100644 --- a/cpp/pybind/visualization/visualization.cpp +++ b/cpp/pybind/visualization/visualization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/visualization.h b/cpp/pybind/visualization/visualization.h index 73dd95c952d..be6d8ef703c 100644 --- a/cpp/pybind/visualization/visualization.h +++ b/cpp/pybind/visualization/visualization.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/visualization_trampoline.h b/cpp/pybind/visualization/visualization_trampoline.h index bb605a2fb4d..8a6a5509abe 100644 --- a/cpp/pybind/visualization/visualization_trampoline.h +++ b/cpp/pybind/visualization/visualization_trampoline.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/visualizer.cpp b/cpp/pybind/visualization/visualizer.cpp index 579db2cadb6..1305fa49202 100644 --- a/cpp/pybind/visualization/visualizer.cpp +++ b/cpp/pybind/visualization/visualizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/webrtc_server/webrtc_window_system.cpp b/cpp/pybind/visualization/webrtc_server/webrtc_window_system.cpp index cd499897358..abccf5f043f 100644 --- a/cpp/pybind/visualization/webrtc_server/webrtc_window_system.cpp +++ b/cpp/pybind/visualization/webrtc_server/webrtc_window_system.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/pybind/visualization/webrtc_server/webrtc_window_system.h b/cpp/pybind/visualization/webrtc_server/webrtc_window_system.h index 45b820ccaf1..94580d4406a 100644 --- a/cpp/pybind/visualization/webrtc_server/webrtc_window_system.h +++ b/cpp/pybind/visualization/webrtc_server/webrtc_window_system.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/Main.cpp b/cpp/tests/Main.cpp index f839dc3556b..ece271ee137 100644 --- a/cpp/tests/Main.cpp +++ b/cpp/tests/Main.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/Tests.cpp b/cpp/tests/Tests.cpp index ee6fcdead6b..af0df371df8 100644 --- a/cpp/tests/Tests.cpp +++ b/cpp/tests/Tests.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/Tests.h b/cpp/tests/Tests.h index 10e8ca6cbb4..f5c0cfd5b97 100644 --- a/cpp/tests/Tests.h +++ b/cpp/tests/Tests.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/camera/PinholeCameraIntrinsic.cpp b/cpp/tests/camera/PinholeCameraIntrinsic.cpp index 6da9cd85594..ccb274f23e5 100644 --- a/cpp/tests/camera/PinholeCameraIntrinsic.cpp +++ b/cpp/tests/camera/PinholeCameraIntrinsic.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/camera/PinholeCameraParameters.cpp b/cpp/tests/camera/PinholeCameraParameters.cpp index e979acfe616..47c7a06222d 100644 --- a/cpp/tests/camera/PinholeCameraParameters.cpp +++ b/cpp/tests/camera/PinholeCameraParameters.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/camera/PinholeCameraTrajectory.cpp b/cpp/tests/camera/PinholeCameraTrajectory.cpp index 01c4002ee44..3d771f1ea26 100644 --- a/cpp/tests/camera/PinholeCameraTrajectory.cpp +++ b/cpp/tests/camera/PinholeCameraTrajectory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/Blob.cpp b/cpp/tests/core/Blob.cpp index 7996c744468..85be95d31cc 100644 --- a/cpp/tests/core/Blob.cpp +++ b/cpp/tests/core/Blob.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/CUDAUtils.cpp b/cpp/tests/core/CUDAUtils.cpp index 10cda864d95..3a0634fe3d7 100644 --- a/cpp/tests/core/CUDAUtils.cpp +++ b/cpp/tests/core/CUDAUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/CoreTest.cpp b/cpp/tests/core/CoreTest.cpp index 3bb29941993..babfc30a0e3 100644 --- a/cpp/tests/core/CoreTest.cpp +++ b/cpp/tests/core/CoreTest.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/CoreTest.h b/cpp/tests/core/CoreTest.h index 3b2f6f6dd29..ab874b8b485 100644 --- a/cpp/tests/core/CoreTest.h +++ b/cpp/tests/core/CoreTest.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/Device.cpp b/cpp/tests/core/Device.cpp index a93aba7caf7..0f54a962d4e 100644 --- a/cpp/tests/core/Device.cpp +++ b/cpp/tests/core/Device.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/EigenConverter.cpp b/cpp/tests/core/EigenConverter.cpp index 41a810ede47..7754657cc13 100644 --- a/cpp/tests/core/EigenConverter.cpp +++ b/cpp/tests/core/EigenConverter.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/FixedRadiusIndex.cpp b/cpp/tests/core/FixedRadiusIndex.cpp index 04a457a23dc..fb735b799e0 100644 --- a/cpp/tests/core/FixedRadiusIndex.cpp +++ b/cpp/tests/core/FixedRadiusIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/HashMap.cpp b/cpp/tests/core/HashMap.cpp index 3d048e68883..c3077ebef16 100644 --- a/cpp/tests/core/HashMap.cpp +++ b/cpp/tests/core/HashMap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/Indexer.cpp b/cpp/tests/core/Indexer.cpp index bc53c4f3c59..305c08693a0 100644 --- a/cpp/tests/core/Indexer.cpp +++ b/cpp/tests/core/Indexer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/Indexer.ispc b/cpp/tests/core/Indexer.ispc index 19c9d41e4a9..c25ba876f26 100644 --- a/cpp/tests/core/Indexer.ispc +++ b/cpp/tests/core/Indexer.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/KnnIndex.cpp b/cpp/tests/core/KnnIndex.cpp index d8af7c72983..1ceb32d4835 100644 --- a/cpp/tests/core/KnnIndex.cpp +++ b/cpp/tests/core/KnnIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include "open3d/core/nns/KnnIndex.h" diff --git a/cpp/tests/core/Linalg.cpp b/cpp/tests/core/Linalg.cpp index 20dce1117f5..2c8be12323b 100644 --- a/cpp/tests/core/Linalg.cpp +++ b/cpp/tests/core/Linalg.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/MemoryManager.cpp b/cpp/tests/core/MemoryManager.cpp index c4904bb2f1c..9e3570a5af0 100644 --- a/cpp/tests/core/MemoryManager.cpp +++ b/cpp/tests/core/MemoryManager.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/NanoFlannIndex.cpp b/cpp/tests/core/NanoFlannIndex.cpp index 83daf3b8916..6deb8bca639 100644 --- a/cpp/tests/core/NanoFlannIndex.cpp +++ b/cpp/tests/core/NanoFlannIndex.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/NearestNeighborSearch.cpp b/cpp/tests/core/NearestNeighborSearch.cpp index 57722b83ab0..a53e33642e1 100644 --- a/cpp/tests/core/NearestNeighborSearch.cpp +++ b/cpp/tests/core/NearestNeighborSearch.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/ParallelFor.cpp b/cpp/tests/core/ParallelFor.cpp index 36d0dfc3c87..db366758b18 100644 --- a/cpp/tests/core/ParallelFor.cpp +++ b/cpp/tests/core/ParallelFor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/ParallelFor.cu b/cpp/tests/core/ParallelFor.cu index c5806c264dc..b83517b8f45 100644 --- a/cpp/tests/core/ParallelFor.cu +++ b/cpp/tests/core/ParallelFor.cu @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/ParallelFor.ispc b/cpp/tests/core/ParallelFor.ispc index 3eb68daa00a..f3d9edfa8fb 100644 --- a/cpp/tests/core/ParallelFor.ispc +++ b/cpp/tests/core/ParallelFor.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/SYCLUtils.cpp b/cpp/tests/core/SYCLUtils.cpp index d10d99f09fa..b22911c720a 100644 --- a/cpp/tests/core/SYCLUtils.cpp +++ b/cpp/tests/core/SYCLUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/Scalar.cpp b/cpp/tests/core/Scalar.cpp index f3148facc20..12d538aa244 100644 --- a/cpp/tests/core/Scalar.cpp +++ b/cpp/tests/core/Scalar.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/ShapeUtil.cpp b/cpp/tests/core/ShapeUtil.cpp index 3991c4b988e..77b7c90801a 100644 --- a/cpp/tests/core/ShapeUtil.cpp +++ b/cpp/tests/core/ShapeUtil.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/SizeVector.cpp b/cpp/tests/core/SizeVector.cpp index c551a170e77..a3e6724103e 100644 --- a/cpp/tests/core/SizeVector.cpp +++ b/cpp/tests/core/SizeVector.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/Tensor.cpp b/cpp/tests/core/Tensor.cpp index e4a4b14cf9d..9f788116be7 100644 --- a/cpp/tests/core/Tensor.cpp +++ b/cpp/tests/core/Tensor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/TensorCheck.cpp b/cpp/tests/core/TensorCheck.cpp index f65be5ddaef..8b789b481b6 100644 --- a/cpp/tests/core/TensorCheck.cpp +++ b/cpp/tests/core/TensorCheck.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/TensorFunction.cpp b/cpp/tests/core/TensorFunction.cpp index d1ba5be783d..0d25b941dfd 100644 --- a/cpp/tests/core/TensorFunction.cpp +++ b/cpp/tests/core/TensorFunction.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/TensorList.cpp b/cpp/tests/core/TensorList.cpp index 305879927c3..39091f3d386 100644 --- a/cpp/tests/core/TensorList.cpp +++ b/cpp/tests/core/TensorList.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/core/TensorObject.cpp b/cpp/tests/core/TensorObject.cpp index f5383885535..0ff294dbc88 100644 --- a/cpp/tests/core/TensorObject.cpp +++ b/cpp/tests/core/TensorObject.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/data/Dataset.cpp b/cpp/tests/data/Dataset.cpp index 49feb3de8b6..6f7e1e4561c 100644 --- a/cpp/tests/data/Dataset.cpp +++ b/cpp/tests/data/Dataset.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/AccumulatedPoint.cpp b/cpp/tests/geometry/AccumulatedPoint.cpp index 4088e0a48d4..8cf19130437 100644 --- a/cpp/tests/geometry/AccumulatedPoint.cpp +++ b/cpp/tests/geometry/AccumulatedPoint.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/AxisAlignedBoundingBox.cpp b/cpp/tests/geometry/AxisAlignedBoundingBox.cpp index 9cf7db8f241..449f1dc378f 100644 --- a/cpp/tests/geometry/AxisAlignedBoundingBox.cpp +++ b/cpp/tests/geometry/AxisAlignedBoundingBox.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/EstimateNormals.cpp b/cpp/tests/geometry/EstimateNormals.cpp index 559ffc2f666..cecb57de182 100644 --- a/cpp/tests/geometry/EstimateNormals.cpp +++ b/cpp/tests/geometry/EstimateNormals.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/HalfEdgeTriangleMesh.cpp b/cpp/tests/geometry/HalfEdgeTriangleMesh.cpp index 7b71fb38080..d6d23cf5f1b 100644 --- a/cpp/tests/geometry/HalfEdgeTriangleMesh.cpp +++ b/cpp/tests/geometry/HalfEdgeTriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/Image.cpp b/cpp/tests/geometry/Image.cpp index f6e5741cba1..f7ca53c67bf 100644 --- a/cpp/tests/geometry/Image.cpp +++ b/cpp/tests/geometry/Image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/IntersectionTest.cpp b/cpp/tests/geometry/IntersectionTest.cpp index 73539a9f443..8911e42936c 100644 --- a/cpp/tests/geometry/IntersectionTest.cpp +++ b/cpp/tests/geometry/IntersectionTest.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/KDTreeFlann.cpp b/cpp/tests/geometry/KDTreeFlann.cpp index 25a7822e487..43d62eddf71 100644 --- a/cpp/tests/geometry/KDTreeFlann.cpp +++ b/cpp/tests/geometry/KDTreeFlann.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/Line3D.cpp b/cpp/tests/geometry/Line3D.cpp index f3944645b52..14c3dc33975 100644 --- a/cpp/tests/geometry/Line3D.cpp +++ b/cpp/tests/geometry/Line3D.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/LineSet.cpp b/cpp/tests/geometry/LineSet.cpp index 8a68120598f..efbec0d91e2 100644 --- a/cpp/tests/geometry/LineSet.cpp +++ b/cpp/tests/geometry/LineSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/Octree.cpp b/cpp/tests/geometry/Octree.cpp index edcfac1a8f7..9ed6f4cf33f 100644 --- a/cpp/tests/geometry/Octree.cpp +++ b/cpp/tests/geometry/Octree.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/PointCloud.cpp b/cpp/tests/geometry/PointCloud.cpp index 21bfe5659bf..0a8d56d9890 100644 --- a/cpp/tests/geometry/PointCloud.cpp +++ b/cpp/tests/geometry/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/RGBDImage.cpp b/cpp/tests/geometry/RGBDImage.cpp index 433feb1a4c6..e4944981669 100644 --- a/cpp/tests/geometry/RGBDImage.cpp +++ b/cpp/tests/geometry/RGBDImage.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/TetraMesh.cpp b/cpp/tests/geometry/TetraMesh.cpp index 6c26a6784f4..00e8dd3f9de 100644 --- a/cpp/tests/geometry/TetraMesh.cpp +++ b/cpp/tests/geometry/TetraMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/TriangleMesh.cpp b/cpp/tests/geometry/TriangleMesh.cpp index c00084d7ba4..6131cc5b36a 100644 --- a/cpp/tests/geometry/TriangleMesh.cpp +++ b/cpp/tests/geometry/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/geometry/VoxelGrid.cpp b/cpp/tests/geometry/VoxelGrid.cpp index 3108f591dbb..51e13b720a1 100644 --- a/cpp/tests/geometry/VoxelGrid.cpp +++ b/cpp/tests/geometry/VoxelGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/FeatureIO.cpp b/cpp/tests/io/FeatureIO.cpp index d4b797dcef6..f747054f80a 100644 --- a/cpp/tests/io/FeatureIO.cpp +++ b/cpp/tests/io/FeatureIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/IJsonConvertibleIO.cpp b/cpp/tests/io/IJsonConvertibleIO.cpp index 63a1591a88d..a7761df3a86 100644 --- a/cpp/tests/io/IJsonConvertibleIO.cpp +++ b/cpp/tests/io/IJsonConvertibleIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/ImageIO.cpp b/cpp/tests/io/ImageIO.cpp index 4f935503f48..c8950403122 100644 --- a/cpp/tests/io/ImageIO.cpp +++ b/cpp/tests/io/ImageIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/OctreeIO.cpp b/cpp/tests/io/OctreeIO.cpp index 1cd425e9582..b7b7b083cf9 100644 --- a/cpp/tests/io/OctreeIO.cpp +++ b/cpp/tests/io/OctreeIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/PinholeCameraTrajectoryIO.cpp b/cpp/tests/io/PinholeCameraTrajectoryIO.cpp index a3f8b56cbdb..06eb6681748 100644 --- a/cpp/tests/io/PinholeCameraTrajectoryIO.cpp +++ b/cpp/tests/io/PinholeCameraTrajectoryIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/PointCloudIO.cpp b/cpp/tests/io/PointCloudIO.cpp index 78bbcee8eac..5464ad2241b 100644 --- a/cpp/tests/io/PointCloudIO.cpp +++ b/cpp/tests/io/PointCloudIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/PoseGraphIO.cpp b/cpp/tests/io/PoseGraphIO.cpp index b54ce26e409..969e9c4f825 100644 --- a/cpp/tests/io/PoseGraphIO.cpp +++ b/cpp/tests/io/PoseGraphIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/TriangleMeshIO.cpp b/cpp/tests/io/TriangleMeshIO.cpp index b0ff9814889..48fb541a01f 100644 --- a/cpp/tests/io/TriangleMeshIO.cpp +++ b/cpp/tests/io/TriangleMeshIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/VoxelGridIO.cpp b/cpp/tests/io/VoxelGridIO.cpp index 6ae783c1b4e..3fe300da2a5 100644 --- a/cpp/tests/io/VoxelGridIO.cpp +++ b/cpp/tests/io/VoxelGridIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileBIN.cpp b/cpp/tests/io/file_format/FileBIN.cpp index a3b8fca4c92..adb4ce3dae4 100644 --- a/cpp/tests/io/file_format/FileBIN.cpp +++ b/cpp/tests/io/file_format/FileBIN.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileGLTF.cpp b/cpp/tests/io/file_format/FileGLTF.cpp index 1b5a2a47a64..8a6920276ee 100644 --- a/cpp/tests/io/file_format/FileGLTF.cpp +++ b/cpp/tests/io/file_format/FileGLTF.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileJPG.cpp b/cpp/tests/io/file_format/FileJPG.cpp index 45828ad9e37..0ab112ca13a 100644 --- a/cpp/tests/io/file_format/FileJPG.cpp +++ b/cpp/tests/io/file_format/FileJPG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileJSON.cpp b/cpp/tests/io/file_format/FileJSON.cpp index 7db0044a91f..81fa11334f0 100644 --- a/cpp/tests/io/file_format/FileJSON.cpp +++ b/cpp/tests/io/file_format/FileJSON.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileLOG.cpp b/cpp/tests/io/file_format/FileLOG.cpp index 05c8a2cd616..222510084bb 100644 --- a/cpp/tests/io/file_format/FileLOG.cpp +++ b/cpp/tests/io/file_format/FileLOG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FilePCD.cpp b/cpp/tests/io/file_format/FilePCD.cpp index 66f33d86739..c47caf56546 100644 --- a/cpp/tests/io/file_format/FilePCD.cpp +++ b/cpp/tests/io/file_format/FilePCD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FilePLY.cpp b/cpp/tests/io/file_format/FilePLY.cpp index e27e87d13fd..cc74fcbbe40 100644 --- a/cpp/tests/io/file_format/FilePLY.cpp +++ b/cpp/tests/io/file_format/FilePLY.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FilePNG.cpp b/cpp/tests/io/file_format/FilePNG.cpp index 829fa832feb..e407194dfde 100644 --- a/cpp/tests/io/file_format/FilePNG.cpp +++ b/cpp/tests/io/file_format/FilePNG.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FilePTS.cpp b/cpp/tests/io/file_format/FilePTS.cpp index 467f24095ae..886055d5ef0 100644 --- a/cpp/tests/io/file_format/FilePTS.cpp +++ b/cpp/tests/io/file_format/FilePTS.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileSTL.cpp b/cpp/tests/io/file_format/FileSTL.cpp index 267e4d2fa70..7e16e8f4bd7 100644 --- a/cpp/tests/io/file_format/FileSTL.cpp +++ b/cpp/tests/io/file_format/FileSTL.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileXYZ.cpp b/cpp/tests/io/file_format/FileXYZ.cpp index 6a689bcec73..a9d662790ed 100644 --- a/cpp/tests/io/file_format/FileXYZ.cpp +++ b/cpp/tests/io/file_format/FileXYZ.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileXYZN.cpp b/cpp/tests/io/file_format/FileXYZN.cpp index 5b9ce27fe07..819d305c983 100644 --- a/cpp/tests/io/file_format/FileXYZN.cpp +++ b/cpp/tests/io/file_format/FileXYZN.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/file_format/FileXYZRGB.cpp b/cpp/tests/io/file_format/FileXYZRGB.cpp index 70d1cc1933d..9b83f512633 100644 --- a/cpp/tests/io/file_format/FileXYZRGB.cpp +++ b/cpp/tests/io/file_format/FileXYZRGB.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/rpc/RemoteFunctions.cpp b/cpp/tests/io/rpc/RemoteFunctions.cpp index 38e3c61d25f..989d3e5e510 100644 --- a/cpp/tests/io/rpc/RemoteFunctions.cpp +++ b/cpp/tests/io/rpc/RemoteFunctions.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/io/sensor/AzureKinect/AzureKinectSensorConfig.cpp b/cpp/tests/io/sensor/AzureKinect/AzureKinectSensorConfig.cpp index f50ddc14770..ea8a0be6d62 100644 --- a/cpp/tests/io/sensor/AzureKinect/AzureKinectSensorConfig.cpp +++ b/cpp/tests/io/sensor/AzureKinect/AzureKinectSensorConfig.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/ml/ShapeChecking.cpp b/cpp/tests/ml/ShapeChecking.cpp index 75dd57764a0..9095bd0bd66 100644 --- a/cpp/tests/ml/ShapeChecking.cpp +++ b/cpp/tests/ml/ShapeChecking.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/integration/ScalableTSDFVolume.cpp b/cpp/tests/pipelines/integration/ScalableTSDFVolume.cpp index ea511904c91..dbf0b4015ae 100644 --- a/cpp/tests/pipelines/integration/ScalableTSDFVolume.cpp +++ b/cpp/tests/pipelines/integration/ScalableTSDFVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/integration/UniformTSDFVolume.cpp b/cpp/tests/pipelines/integration/UniformTSDFVolume.cpp index f7b247c5844..a9036f5c2fa 100644 --- a/cpp/tests/pipelines/integration/UniformTSDFVolume.cpp +++ b/cpp/tests/pipelines/integration/UniformTSDFVolume.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/odometry/Odometry.cpp b/cpp/tests/pipelines/odometry/Odometry.cpp index 2e598aa8519..3d5e51ffc5d 100644 --- a/cpp/tests/pipelines/odometry/Odometry.cpp +++ b/cpp/tests/pipelines/odometry/Odometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/odometry/OdometryOption.cpp b/cpp/tests/pipelines/odometry/OdometryOption.cpp index fba8096b164..70ef4c3115a 100644 --- a/cpp/tests/pipelines/odometry/OdometryOption.cpp +++ b/cpp/tests/pipelines/odometry/OdometryOption.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/odometry/OdometryTools.cpp b/cpp/tests/pipelines/odometry/OdometryTools.cpp index e72fb2c8d91..5da3d6132c9 100644 --- a/cpp/tests/pipelines/odometry/OdometryTools.cpp +++ b/cpp/tests/pipelines/odometry/OdometryTools.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/odometry/OdometryTools.h b/cpp/tests/pipelines/odometry/OdometryTools.h index e435345793c..f690d087800 100644 --- a/cpp/tests/pipelines/odometry/OdometryTools.h +++ b/cpp/tests/pipelines/odometry/OdometryTools.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromColorTerm.cpp b/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromColorTerm.cpp index 02bea126a8b..1e65a8d0121 100644 --- a/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromColorTerm.cpp +++ b/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromColorTerm.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromHybridTerm.cpp b/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromHybridTerm.cpp index e71fd432d83..a79ddbf2da5 100644 --- a/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromHybridTerm.cpp +++ b/cpp/tests/pipelines/odometry/RGBDOdometryJacobianFromHybridTerm.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/CorrespondenceChecker.cpp b/cpp/tests/pipelines/registration/CorrespondenceChecker.cpp index 6a5a060e7d4..f8c95b0cb1a 100644 --- a/cpp/tests/pipelines/registration/CorrespondenceChecker.cpp +++ b/cpp/tests/pipelines/registration/CorrespondenceChecker.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/FastGlobalRegistration.cpp b/cpp/tests/pipelines/registration/FastGlobalRegistration.cpp index 99f1722c260..c2b4367a77f 100644 --- a/cpp/tests/pipelines/registration/FastGlobalRegistration.cpp +++ b/cpp/tests/pipelines/registration/FastGlobalRegistration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/Feature.cpp b/cpp/tests/pipelines/registration/Feature.cpp index 359a7530c77..77beaaf55c9 100644 --- a/cpp/tests/pipelines/registration/Feature.cpp +++ b/cpp/tests/pipelines/registration/Feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/GeneralizedICP.cpp b/cpp/tests/pipelines/registration/GeneralizedICP.cpp index a8601b24e71..60ec8479992 100644 --- a/cpp/tests/pipelines/registration/GeneralizedICP.cpp +++ b/cpp/tests/pipelines/registration/GeneralizedICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/cpp/tests/pipelines/registration/GlobalOptimization.cpp b/cpp/tests/pipelines/registration/GlobalOptimization.cpp index 9016c716acb..8c3290dbec1 100644 --- a/cpp/tests/pipelines/registration/GlobalOptimization.cpp +++ b/cpp/tests/pipelines/registration/GlobalOptimization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/GlobalOptimizationConvergenceCriteria.cpp b/cpp/tests/pipelines/registration/GlobalOptimizationConvergenceCriteria.cpp index eca671b1d45..e05e7a0c45b 100644 --- a/cpp/tests/pipelines/registration/GlobalOptimizationConvergenceCriteria.cpp +++ b/cpp/tests/pipelines/registration/GlobalOptimizationConvergenceCriteria.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/PoseGraph.cpp b/cpp/tests/pipelines/registration/PoseGraph.cpp index e286e66be0b..41e27e85422 100644 --- a/cpp/tests/pipelines/registration/PoseGraph.cpp +++ b/cpp/tests/pipelines/registration/PoseGraph.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/Registration.cpp b/cpp/tests/pipelines/registration/Registration.cpp index e160d2a2588..3d66e393e8c 100644 --- a/cpp/tests/pipelines/registration/Registration.cpp +++ b/cpp/tests/pipelines/registration/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/pipelines/registration/TransformationEstimation.cpp b/cpp/tests/pipelines/registration/TransformationEstimation.cpp index 28d03558024..96fb8333cb7 100644 --- a/cpp/tests/pipelines/registration/TransformationEstimation.cpp +++ b/cpp/tests/pipelines/registration/TransformationEstimation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/AxisAlignedBoundingBox.cpp b/cpp/tests/t/geometry/AxisAlignedBoundingBox.cpp index 54405b414ff..2139b40263c 100644 --- a/cpp/tests/t/geometry/AxisAlignedBoundingBox.cpp +++ b/cpp/tests/t/geometry/AxisAlignedBoundingBox.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/Image.cpp b/cpp/tests/t/geometry/Image.cpp index 2e270261106..626c9725c53 100644 --- a/cpp/tests/t/geometry/Image.cpp +++ b/cpp/tests/t/geometry/Image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/LineSet.cpp b/cpp/tests/t/geometry/LineSet.cpp index dbc774f2b1d..30c86eaa78f 100644 --- a/cpp/tests/t/geometry/LineSet.cpp +++ b/cpp/tests/t/geometry/LineSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/OrientedBoundingBox.cpp b/cpp/tests/t/geometry/OrientedBoundingBox.cpp index 95a0b4fe983..5a730f4cfb2 100644 --- a/cpp/tests/t/geometry/OrientedBoundingBox.cpp +++ b/cpp/tests/t/geometry/OrientedBoundingBox.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/PointCloud.cpp b/cpp/tests/t/geometry/PointCloud.cpp index 6fb8e72d2ed..8abf761acdb 100644 --- a/cpp/tests/t/geometry/PointCloud.cpp +++ b/cpp/tests/t/geometry/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/TensorMap.cpp b/cpp/tests/t/geometry/TensorMap.cpp index 8512ce68ccb..edf80230073 100644 --- a/cpp/tests/t/geometry/TensorMap.cpp +++ b/cpp/tests/t/geometry/TensorMap.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/TriangleMesh.cpp b/cpp/tests/t/geometry/TriangleMesh.cpp index f4af2974f20..89e75b5ec31 100644 --- a/cpp/tests/t/geometry/TriangleMesh.cpp +++ b/cpp/tests/t/geometry/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/VoxelBlockGrid.cpp b/cpp/tests/t/geometry/VoxelBlockGrid.cpp index 570a1868c0c..cb47a424ca1 100644 --- a/cpp/tests/t/geometry/VoxelBlockGrid.cpp +++ b/cpp/tests/t/geometry/VoxelBlockGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/geometry/VtkUtils.cpp b/cpp/tests/t/geometry/VtkUtils.cpp index ad6af29812d..b45e33e9dec 100644 --- a/cpp/tests/t/geometry/VtkUtils.cpp +++ b/cpp/tests/t/geometry/VtkUtils.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/io/ImageIO.cpp b/cpp/tests/t/io/ImageIO.cpp index 12fb7dd511c..db6be27041c 100644 --- a/cpp/tests/t/io/ImageIO.cpp +++ b/cpp/tests/t/io/ImageIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/io/NumpyIO.cpp b/cpp/tests/t/io/NumpyIO.cpp index e80d7ff6fc9..2c76067740d 100644 --- a/cpp/tests/t/io/NumpyIO.cpp +++ b/cpp/tests/t/io/NumpyIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/io/PointCloudIO.cpp b/cpp/tests/t/io/PointCloudIO.cpp index e6f38270fcb..1de79086a17 100644 --- a/cpp/tests/t/io/PointCloudIO.cpp +++ b/cpp/tests/t/io/PointCloudIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/io/TriangleMeshIO.cpp b/cpp/tests/t/io/TriangleMeshIO.cpp index acfd8f1234f..f5333226d9c 100644 --- a/cpp/tests/t/io/TriangleMeshIO.cpp +++ b/cpp/tests/t/io/TriangleMeshIO.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/TransformationConverter.cpp b/cpp/tests/t/pipelines/TransformationConverter.cpp index abb868dfdb8..5d8bd0d8434 100644 --- a/cpp/tests/t/pipelines/TransformationConverter.cpp +++ b/cpp/tests/t/pipelines/TransformationConverter.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/odometry/RGBDOdometry.cpp b/cpp/tests/t/pipelines/odometry/RGBDOdometry.cpp index 614499fe43f..3bb7ee36142 100644 --- a/cpp/tests/t/pipelines/odometry/RGBDOdometry.cpp +++ b/cpp/tests/t/pipelines/odometry/RGBDOdometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/registration/Feature.cpp b/cpp/tests/t/pipelines/registration/Feature.cpp index f4eb9dffa6d..b636b8cd516 100644 --- a/cpp/tests/t/pipelines/registration/Feature.cpp +++ b/cpp/tests/t/pipelines/registration/Feature.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/registration/Registration.cpp b/cpp/tests/t/pipelines/registration/Registration.cpp index 75fd20a530d..a29cc99b859 100644 --- a/cpp/tests/t/pipelines/registration/Registration.cpp +++ b/cpp/tests/t/pipelines/registration/Registration.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/registration/TransformationEstimation.cpp b/cpp/tests/t/pipelines/registration/TransformationEstimation.cpp index e87c7975e22..2daca846d0a 100644 --- a/cpp/tests/t/pipelines/registration/TransformationEstimation.cpp +++ b/cpp/tests/t/pipelines/registration/TransformationEstimation.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/slac/ControlGrid.cpp b/cpp/tests/t/pipelines/slac/ControlGrid.cpp index 14d51e94b46..98bce9d5ef2 100644 --- a/cpp/tests/t/pipelines/slac/ControlGrid.cpp +++ b/cpp/tests/t/pipelines/slac/ControlGrid.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/t/pipelines/slac/SLAC.cpp b/cpp/tests/t/pipelines/slac/SLAC.cpp index fe2813b37eb..bc31cb31044 100644 --- a/cpp/tests/t/pipelines/slac/SLAC.cpp +++ b/cpp/tests/t/pipelines/slac/SLAC.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Compare.cpp b/cpp/tests/test_utility/Compare.cpp index c8c2523a94c..fe6d4dd7e19 100644 --- a/cpp/tests/test_utility/Compare.cpp +++ b/cpp/tests/test_utility/Compare.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Compare.h b/cpp/tests/test_utility/Compare.h index 5e81c5fe07d..ac3d1888999 100644 --- a/cpp/tests/test_utility/Compare.h +++ b/cpp/tests/test_utility/Compare.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Print.h b/cpp/tests/test_utility/Print.h index 58b4fa9123c..c0e4ac98393 100644 --- a/cpp/tests/test_utility/Print.h +++ b/cpp/tests/test_utility/Print.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Rand.cpp b/cpp/tests/test_utility/Rand.cpp index b4ae3ab5545..9b9764c283d 100644 --- a/cpp/tests/test_utility/Rand.cpp +++ b/cpp/tests/test_utility/Rand.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Rand.h b/cpp/tests/test_utility/Rand.h index c040df229c3..cdb270adf40 100644 --- a/cpp/tests/test_utility/Rand.h +++ b/cpp/tests/test_utility/Rand.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Raw.cpp b/cpp/tests/test_utility/Raw.cpp index e001923f88a..8565d5acdd8 100644 --- a/cpp/tests/test_utility/Raw.cpp +++ b/cpp/tests/test_utility/Raw.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Raw.h b/cpp/tests/test_utility/Raw.h index 1ee7b1aa7ff..f8060732f8b 100644 --- a/cpp/tests/test_utility/Raw.h +++ b/cpp/tests/test_utility/Raw.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Sort.cpp b/cpp/tests/test_utility/Sort.cpp index 0563b0d3326..adde2836e56 100644 --- a/cpp/tests/test_utility/Sort.cpp +++ b/cpp/tests/test_utility/Sort.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/test_utility/Sort.h b/cpp/tests/test_utility/Sort.h index 9270cca629e..69632472296 100644 --- a/cpp/tests/test_utility/Sort.h +++ b/cpp/tests/test_utility/Sort.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Download.cpp b/cpp/tests/utility/Download.cpp index d98679d17bb..bb52efcf432 100644 --- a/cpp/tests/utility/Download.cpp +++ b/cpp/tests/utility/Download.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Eigen.cpp b/cpp/tests/utility/Eigen.cpp index 5f1c859f03d..deb09558c53 100644 --- a/cpp/tests/utility/Eigen.cpp +++ b/cpp/tests/utility/Eigen.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Extract.cpp b/cpp/tests/utility/Extract.cpp index 2ac8b49063c..923aff03bc1 100644 --- a/cpp/tests/utility/Extract.cpp +++ b/cpp/tests/utility/Extract.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/FileSystem.cpp b/cpp/tests/utility/FileSystem.cpp index 2c0359166ef..bfdd2dc28bd 100644 --- a/cpp/tests/utility/FileSystem.cpp +++ b/cpp/tests/utility/FileSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Helper.cpp b/cpp/tests/utility/Helper.cpp index 2991660d877..f11b7c59380 100644 --- a/cpp/tests/utility/Helper.cpp +++ b/cpp/tests/utility/Helper.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Helper.ispc b/cpp/tests/utility/Helper.ispc index 018fba0b900..01515166e6b 100644 --- a/cpp/tests/utility/Helper.ispc +++ b/cpp/tests/utility/Helper.ispc @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/IJsonConvertible.cpp b/cpp/tests/utility/IJsonConvertible.cpp index af7cc8d128b..c91c9113d78 100644 --- a/cpp/tests/utility/IJsonConvertible.cpp +++ b/cpp/tests/utility/IJsonConvertible.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/ISAInfo.cpp b/cpp/tests/utility/ISAInfo.cpp index 74fc83710ae..6b929415613 100644 --- a/cpp/tests/utility/ISAInfo.cpp +++ b/cpp/tests/utility/ISAInfo.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Logging.cpp b/cpp/tests/utility/Logging.cpp index 23cbae2b620..21edb61e260 100644 --- a/cpp/tests/utility/Logging.cpp +++ b/cpp/tests/utility/Logging.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Preprocessor.cpp b/cpp/tests/utility/Preprocessor.cpp index e167cc99250..1022fc43896 100644 --- a/cpp/tests/utility/Preprocessor.cpp +++ b/cpp/tests/utility/Preprocessor.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/ProgressBar.cpp b/cpp/tests/utility/ProgressBar.cpp index 4641305813c..9ff9e09b6ae 100644 --- a/cpp/tests/utility/ProgressBar.cpp +++ b/cpp/tests/utility/ProgressBar.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Random.cpp b/cpp/tests/utility/Random.cpp index 8c321f08758..c31c7442f96 100644 --- a/cpp/tests/utility/Random.cpp +++ b/cpp/tests/utility/Random.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/utility/Timer.cpp b/cpp/tests/utility/Timer.cpp index 55bbeeed736..3e80b0481cb 100644 --- a/cpp/tests/utility/Timer.cpp +++ b/cpp/tests/utility/Timer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tests/visualization/rendering/MaterialModifier.cpp b/cpp/tests/visualization/rendering/MaterialModifier.cpp index a1a6a9246a3..a150e2c99cf 100644 --- a/cpp/tests/visualization/rendering/MaterialModifier.cpp +++ b/cpp/tests/visualization/rendering/MaterialModifier.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ConvertPointCloud.cpp b/cpp/tools/ConvertPointCloud.cpp index a89f3d632b9..eebf4be7df7 100644 --- a/cpp/tools/ConvertPointCloud.cpp +++ b/cpp/tools/ConvertPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/GLInfo.cpp b/cpp/tools/GLInfo.cpp index af9360cc0d2..fac9a1ae94b 100644 --- a/cpp/tools/GLInfo.cpp +++ b/cpp/tools/GLInfo.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.cpp b/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.cpp index 0d26ecfd75d..6899528b282 100644 --- a/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.cpp +++ b/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.h b/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.h index 1763742a733..ff3407437b9 100644 --- a/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.h +++ b/cpp/tools/ManuallyAlignPointCloud/AlignmentSession.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ManuallyAlignPointCloud/ManuallyAlignPointCloud.cpp b/cpp/tools/ManuallyAlignPointCloud/ManuallyAlignPointCloud.cpp index c10f1f93675..9846faa5705 100644 --- a/cpp/tools/ManuallyAlignPointCloud/ManuallyAlignPointCloud.cpp +++ b/cpp/tools/ManuallyAlignPointCloud/ManuallyAlignPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.cpp b/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.cpp index 715160bc9e6..261e5146c6c 100644 --- a/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.cpp +++ b/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.h b/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.h index 9742890970e..6ce8c049381 100644 --- a/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.h +++ b/cpp/tools/ManuallyAlignPointCloud/VisualizerForAlignment.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ManuallyCropGeometry.cpp b/cpp/tools/ManuallyCropGeometry.cpp index f40c535ca83..e8777e8ac11 100644 --- a/cpp/tools/ManuallyCropGeometry.cpp +++ b/cpp/tools/ManuallyCropGeometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/MergeMesh.cpp b/cpp/tools/MergeMesh.cpp index df64f2ae54e..e7b9d997246 100644 --- a/cpp/tools/MergeMesh.cpp +++ b/cpp/tools/MergeMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/cpp/tools/ViewGeometry.cpp b/cpp/tools/ViewGeometry.cpp index 09339583699..b31dd110c57 100644 --- a/cpp/tools/ViewGeometry.cpp +++ b/cpp/tools/ViewGeometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index 9ec55efcaf1..867fcae1423 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/docs/jupyter/jupyter_run_all.py b/docs/jupyter/jupyter_run_all.py index 5cbb244d56d..9c39c2578c0 100644 --- a/docs/jupyter/jupyter_run_all.py +++ b/docs/jupyter/jupyter_run_all.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/docs/jupyter/jupyter_strip_output.py b/docs/jupyter/jupyter_strip_output.py index b08a2731c58..0fb6d562fb1 100644 --- a/docs/jupyter/jupyter_strip_output.py +++ b/docs/jupyter/jupyter_strip_output.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/docs/jupyter/open3d_tutorial.py b/docs/jupyter/open3d_tutorial.py index 36589f76dd9..3aa767f6617 100644 --- a/docs/jupyter/open3d_tutorial.py +++ b/docs/jupyter/open3d_tutorial.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/docs/make_docs.py b/docs/make_docs.py index c49f7e31af1..bb8ebfbacb0 100644 --- a/docs/make_docs.py +++ b/docs/make_docs.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/cmake/open3d-cmake-external-project/Draw.cpp b/examples/cmake/open3d-cmake-external-project/Draw.cpp index 5415508ed11..0d01a1b72d8 100644 --- a/examples/cmake/open3d-cmake-external-project/Draw.cpp +++ b/examples/cmake/open3d-cmake-external-project/Draw.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cmake/open3d-cmake-find-package/Draw.cpp b/examples/cmake/open3d-cmake-find-package/Draw.cpp index 5415508ed11..0d01a1b72d8 100644 --- a/examples/cmake/open3d-cmake-find-package/Draw.cpp +++ b/examples/cmake/open3d-cmake-find-package/Draw.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/AzureKinectMKVReader.cpp b/examples/cpp/AzureKinectMKVReader.cpp index 16d0f6cc484..b6ac2199a49 100644 --- a/examples/cpp/AzureKinectMKVReader.cpp +++ b/examples/cpp/AzureKinectMKVReader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/AzureKinectRecord.cpp b/examples/cpp/AzureKinectRecord.cpp index 05e8ee91460..15fe045b47c 100644 --- a/examples/cpp/AzureKinectRecord.cpp +++ b/examples/cpp/AzureKinectRecord.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. diff --git a/examples/cpp/AzureKinectViewer.cpp b/examples/cpp/AzureKinectViewer.cpp index e525e50001d..48913663a20 100644 --- a/examples/cpp/AzureKinectViewer.cpp +++ b/examples/cpp/AzureKinectViewer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. diff --git a/examples/cpp/CameraPoseTrajectory.cpp b/examples/cpp/CameraPoseTrajectory.cpp index dfd4d71eeef..4498dd871e7 100644 --- a/examples/cpp/CameraPoseTrajectory.cpp +++ b/examples/cpp/CameraPoseTrajectory.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/ColorMapOptimization.cpp b/examples/cpp/ColorMapOptimization.cpp index 7de5bb6bf10..c96b3da17ec 100644 --- a/examples/cpp/ColorMapOptimization.cpp +++ b/examples/cpp/ColorMapOptimization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/DepthCapture.cpp b/examples/cpp/DepthCapture.cpp index 8ae8cba7b58..30715e95df8 100644 --- a/examples/cpp/DepthCapture.cpp +++ b/examples/cpp/DepthCapture.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/Draw.cpp b/examples/cpp/Draw.cpp index c8e05973b35..a3b3fb74404 100644 --- a/examples/cpp/Draw.cpp +++ b/examples/cpp/Draw.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/DrawWebRTC.cpp b/examples/cpp/DrawWebRTC.cpp index 96dccdd164e..45fdce9fe80 100644 --- a/examples/cpp/DrawWebRTC.cpp +++ b/examples/cpp/DrawWebRTC.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/EvaluatePCDMatch.cpp b/examples/cpp/EvaluatePCDMatch.cpp index ce3f07c1864..b26ebd2986b 100644 --- a/examples/cpp/EvaluatePCDMatch.cpp +++ b/examples/cpp/EvaluatePCDMatch.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/FileDialog.cpp b/examples/cpp/FileDialog.cpp index b4f25195145..ea0564cdc0c 100644 --- a/examples/cpp/FileDialog.cpp +++ b/examples/cpp/FileDialog.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/FileSystem.cpp b/examples/cpp/FileSystem.cpp index b93ea9a1c2b..bb7d5a84db4 100644 --- a/examples/cpp/FileSystem.cpp +++ b/examples/cpp/FileSystem.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/Flann.cpp b/examples/cpp/Flann.cpp index 4217c3e2a81..c747920bcaa 100644 --- a/examples/cpp/Flann.cpp +++ b/examples/cpp/Flann.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/GeneralizedICP.cpp b/examples/cpp/GeneralizedICP.cpp index 614c9cf5b86..92c7b7171db 100644 --- a/examples/cpp/GeneralizedICP.cpp +++ b/examples/cpp/GeneralizedICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/ISSKeypoints.cpp b/examples/cpp/ISSKeypoints.cpp index c5088d9b11b..768883ae65a 100644 --- a/examples/cpp/ISSKeypoints.cpp +++ b/examples/cpp/ISSKeypoints.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // @author Ignacio Vizzo [ivizzo@uni-bonn.de] diff --git a/examples/cpp/Image.cpp b/examples/cpp/Image.cpp index 9ea23a34615..1603e2c9f4d 100644 --- a/examples/cpp/Image.cpp +++ b/examples/cpp/Image.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/IntegrateRGBD.cpp b/examples/cpp/IntegrateRGBD.cpp index 39fc3d98225..0ffcaa1a219 100644 --- a/examples/cpp/IntegrateRGBD.cpp +++ b/examples/cpp/IntegrateRGBD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/LineSet.cpp b/examples/cpp/LineSet.cpp index 836e3d740e4..9307354857f 100644 --- a/examples/cpp/LineSet.cpp +++ b/examples/cpp/LineSet.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/Log.cpp b/examples/cpp/Log.cpp index ba5ebeb408a..8a6cdd2d436 100644 --- a/examples/cpp/Log.cpp +++ b/examples/cpp/Log.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/MultipleWindows.cpp b/examples/cpp/MultipleWindows.cpp index 01921f9cf33..2735d1f4185 100644 --- a/examples/cpp/MultipleWindows.cpp +++ b/examples/cpp/MultipleWindows.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/Octree.cpp b/examples/cpp/Octree.cpp index bf0cca65323..210eae7d221 100644 --- a/examples/cpp/Octree.cpp +++ b/examples/cpp/Octree.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OdometryRGBD.cpp b/examples/cpp/OdometryRGBD.cpp index 1848edbed05..f5f8037031d 100644 --- a/examples/cpp/OdometryRGBD.cpp +++ b/examples/cpp/OdometryRGBD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OfflineSLAM.cpp b/examples/cpp/OfflineSLAM.cpp index 3e67b194b21..d865b537fb2 100644 --- a/examples/cpp/OfflineSLAM.cpp +++ b/examples/cpp/OfflineSLAM.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OffscreenRendering.cpp b/examples/cpp/OffscreenRendering.cpp index 5e73cda538b..18bc71d3b76 100644 --- a/examples/cpp/OffscreenRendering.cpp +++ b/examples/cpp/OffscreenRendering.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OnlineSLAMRGBD.cpp b/examples/cpp/OnlineSLAMRGBD.cpp index 70f915d5b5f..2101e7aab18 100644 --- a/examples/cpp/OnlineSLAMRGBD.cpp +++ b/examples/cpp/OnlineSLAMRGBD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OnlineSLAMRealSense.cpp b/examples/cpp/OnlineSLAMRealSense.cpp index 4e1b26aa447..754a0d41371 100644 --- a/examples/cpp/OnlineSLAMRealSense.cpp +++ b/examples/cpp/OnlineSLAMRealSense.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OnlineSLAMUtil.h b/examples/cpp/OnlineSLAMUtil.h index 358256de3df..56e91eea139 100644 --- a/examples/cpp/OnlineSLAMUtil.h +++ b/examples/cpp/OnlineSLAMUtil.h @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/OpenMP.cpp b/examples/cpp/OpenMP.cpp index 0995a0bf49e..f61e9aa2909 100644 --- a/examples/cpp/OpenMP.cpp +++ b/examples/cpp/OpenMP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/PCDFileFormat.cpp b/examples/cpp/PCDFileFormat.cpp index 6de798ef5ac..0bd7db87226 100644 --- a/examples/cpp/PCDFileFormat.cpp +++ b/examples/cpp/PCDFileFormat.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/PlanarPatchDetection.cpp b/examples/cpp/PlanarPatchDetection.cpp index ccc5dc28747..b8c4c41ef98 100644 --- a/examples/cpp/PlanarPatchDetection.cpp +++ b/examples/cpp/PlanarPatchDetection.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/PointCloud.cpp b/examples/cpp/PointCloud.cpp index 9de7cc3b11c..73bc9e15209 100644 --- a/examples/cpp/PointCloud.cpp +++ b/examples/cpp/PointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/PoseGraph.cpp b/examples/cpp/PoseGraph.cpp index 226a35cafdc..179e9210813 100644 --- a/examples/cpp/PoseGraph.cpp +++ b/examples/cpp/PoseGraph.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/ProgramOptions.cpp b/examples/cpp/ProgramOptions.cpp index 0c606ca93ee..38483fd885b 100644 --- a/examples/cpp/ProgramOptions.cpp +++ b/examples/cpp/ProgramOptions.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RGBDOdometry.cpp b/examples/cpp/RGBDOdometry.cpp index 536e7a883ec..2a292519d3d 100644 --- a/examples/cpp/RGBDOdometry.cpp +++ b/examples/cpp/RGBDOdometry.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RealSenseBagReader.cpp b/examples/cpp/RealSenseBagReader.cpp index 8fd81397022..a231a1759f6 100644 --- a/examples/cpp/RealSenseBagReader.cpp +++ b/examples/cpp/RealSenseBagReader.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RealSenseRecorder.cpp b/examples/cpp/RealSenseRecorder.cpp index 2efa912cc00..2904703cb52 100644 --- a/examples/cpp/RealSenseRecorder.cpp +++ b/examples/cpp/RealSenseRecorder.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RegistrationColoredICP.cpp b/examples/cpp/RegistrationColoredICP.cpp index 9f5d5776382..eb07869000e 100644 --- a/examples/cpp/RegistrationColoredICP.cpp +++ b/examples/cpp/RegistrationColoredICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RegistrationDopplerICP.cpp b/examples/cpp/RegistrationDopplerICP.cpp index 331bd8dfd56..07acea0afd0 100644 --- a/examples/cpp/RegistrationDopplerICP.cpp +++ b/examples/cpp/RegistrationDopplerICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RegistrationFGR.cpp b/examples/cpp/RegistrationFGR.cpp index 77c0120d0b1..c0d0d18377d 100644 --- a/examples/cpp/RegistrationFGR.cpp +++ b/examples/cpp/RegistrationFGR.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/RegistrationRANSAC.cpp b/examples/cpp/RegistrationRANSAC.cpp index 2a84bbcff04..7e6829657e6 100644 --- a/examples/cpp/RegistrationRANSAC.cpp +++ b/examples/cpp/RegistrationRANSAC.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/SLAC.cpp b/examples/cpp/SLAC.cpp index 071ee192e0d..c783a3470aa 100644 --- a/examples/cpp/SLAC.cpp +++ b/examples/cpp/SLAC.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/SLACIntegrate.cpp b/examples/cpp/SLACIntegrate.cpp index 3bf00e14e0f..593435e0802 100644 --- a/examples/cpp/SLACIntegrate.cpp +++ b/examples/cpp/SLACIntegrate.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/SYCLDemo.cpp b/examples/cpp/SYCLDemo.cpp index 2fcd8c55dd1..2dcf7c1d8dd 100644 --- a/examples/cpp/SYCLDemo.cpp +++ b/examples/cpp/SYCLDemo.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/TICP.cpp b/examples/cpp/TICP.cpp index d7995e233f1..a63298c7614 100644 --- a/examples/cpp/TICP.cpp +++ b/examples/cpp/TICP.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/TICPSequential.cpp b/examples/cpp/TICPSequential.cpp index d0bf4dcee42..3efba06e75c 100644 --- a/examples/cpp/TICPSequential.cpp +++ b/examples/cpp/TICPSequential.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/TIntegrateRGBD.cpp b/examples/cpp/TIntegrateRGBD.cpp index cab188b6dc8..283bb40d79b 100644 --- a/examples/cpp/TIntegrateRGBD.cpp +++ b/examples/cpp/TIntegrateRGBD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include "open3d/Open3D.h" diff --git a/examples/cpp/TOdometryRGBD.cpp b/examples/cpp/TOdometryRGBD.cpp index a39580ed018..c4414f4652f 100644 --- a/examples/cpp/TOdometryRGBD.cpp +++ b/examples/cpp/TOdometryRGBD.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- #include "open3d/Open3D.h" diff --git a/examples/cpp/TriangleMesh.cpp b/examples/cpp/TriangleMesh.cpp index 64082476cb5..be3b5215ea9 100644 --- a/examples/cpp/TriangleMesh.cpp +++ b/examples/cpp/TriangleMesh.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/TrimMeshBasedOnPointCloud.cpp b/examples/cpp/TrimMeshBasedOnPointCloud.cpp index a5f82506f0a..ffb5f47d8c4 100644 --- a/examples/cpp/TrimMeshBasedOnPointCloud.cpp +++ b/examples/cpp/TrimMeshBasedOnPointCloud.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/ViewDistances.cpp b/examples/cpp/ViewDistances.cpp index ab61377f3f9..2404645c379 100644 --- a/examples/cpp/ViewDistances.cpp +++ b/examples/cpp/ViewDistances.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/ViewPCDMatch.cpp b/examples/cpp/ViewPCDMatch.cpp index 526f3617bb6..c8669f4f48e 100644 --- a/examples/cpp/ViewPCDMatch.cpp +++ b/examples/cpp/ViewPCDMatch.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/Visualizer.cpp b/examples/cpp/Visualizer.cpp index d7ffcedbc66..44bedaeec02 100644 --- a/examples/cpp/Visualizer.cpp +++ b/examples/cpp/Visualizer.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/Voxelization.cpp b/examples/cpp/Voxelization.cpp index e0265b3f1d0..5461dba55ec 100644 --- a/examples/cpp/Voxelization.cpp +++ b/examples/cpp/Voxelization.cpp @@ -1,7 +1,7 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- diff --git a/examples/cpp/registration_example_util/download_kitti.py b/examples/cpp/registration_example_util/download_kitti.py index f736353487f..a202d32aaf0 100644 --- a/examples/cpp/registration_example_util/download_kitti.py +++ b/examples/cpp/registration_example_util/download_kitti.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/benchmark/benchmark_fgr.py b/examples/python/benchmark/benchmark_fgr.py index 788476a9fca..9e832764271 100644 --- a/examples/python/benchmark/benchmark_fgr.py +++ b/examples/python/benchmark/benchmark_fgr.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/benchmark/benchmark_nns.py b/examples/python/benchmark/benchmark_nns.py index 0b18a37e97a..b1242af5deb 100644 --- a/examples/python/benchmark/benchmark_nns.py +++ b/examples/python/benchmark/benchmark_nns.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/benchmark/benchmark_pre.py b/examples/python/benchmark/benchmark_pre.py index bc1bca4a651..4f82f16aef7 100644 --- a/examples/python/benchmark/benchmark_pre.py +++ b/examples/python/benchmark/benchmark_pre.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/benchmark/benchmark_ransac.py b/examples/python/benchmark/benchmark_ransac.py index 05c0c6b8a0b..de9f9a04c4d 100644 --- a/examples/python/benchmark/benchmark_ransac.py +++ b/examples/python/benchmark/benchmark_ransac.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/benchmark/benchmark_tsdf.py b/examples/python/benchmark/benchmark_tsdf.py index c915a6e908d..516fe601e1b 100644 --- a/examples/python/benchmark/benchmark_tsdf.py +++ b/examples/python/benchmark/benchmark_tsdf.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/benchmark/benchmark_utils.py b/examples/python/benchmark/benchmark_utils.py index d7f6e1dbb9d..12af2f3cddb 100644 --- a/examples/python/benchmark/benchmark_utils.py +++ b/examples/python/benchmark/benchmark_utils.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/camera/camera_trajectory.py b/examples/python/camera/camera_trajectory.py index 132dea28bb8..4b729fee07d 100644 --- a/examples/python/camera/camera_trajectory.py +++ b/examples/python/camera/camera_trajectory.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/image_processing.py b/examples/python/geometry/image_processing.py index abf9bde1c72..c0a5056236c 100644 --- a/examples/python/geometry/image_processing.py +++ b/examples/python/geometry/image_processing.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/kd_tree_feature_matching.py b/examples/python/geometry/kd_tree_feature_matching.py index 89f21f20245..10a894e03ba 100644 --- a/examples/python/geometry/kd_tree_feature_matching.py +++ b/examples/python/geometry/kd_tree_feature_matching.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/kd_tree_search.py b/examples/python/geometry/kd_tree_search.py index 145439b52d4..46ed5e8ae62 100644 --- a/examples/python/geometry/kd_tree_search.py +++ b/examples/python/geometry/kd_tree_search.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Build a KDTree and use it for neighbour search""" diff --git a/examples/python/geometry/octree_find_leaf.py b/examples/python/geometry/octree_find_leaf.py index 85eaae4720a..3fd598be08e 100644 --- a/examples/python/geometry/octree_find_leaf.py +++ b/examples/python/geometry/octree_find_leaf.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/octree_from_voxel_grid.py b/examples/python/geometry/octree_from_voxel_grid.py index d5130a41bb4..7eeb7a3744c 100644 --- a/examples/python/geometry/octree_from_voxel_grid.py +++ b/examples/python/geometry/octree_from_voxel_grid.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/octree_point_cloud.py b/examples/python/geometry/octree_point_cloud.py index 6ed73e02259..bf2f68ee123 100644 --- a/examples/python/geometry/octree_point_cloud.py +++ b/examples/python/geometry/octree_point_cloud.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/octree_traversal.py b/examples/python/geometry/octree_traversal.py index e890d390792..37c3379f1d8 100644 --- a/examples/python/geometry/octree_traversal.py +++ b/examples/python/geometry/octree_traversal.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_bounding_box.py b/examples/python/geometry/point_cloud_bounding_box.py index 79ac4667fe2..45d9dfee040 100644 --- a/examples/python/geometry/point_cloud_bounding_box.py +++ b/examples/python/geometry/point_cloud_bounding_box.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_convex_hull.py b/examples/python/geometry/point_cloud_convex_hull.py index 98d3d5af175..c23541f8dd5 100644 --- a/examples/python/geometry/point_cloud_convex_hull.py +++ b/examples/python/geometry/point_cloud_convex_hull.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_crop.py b/examples/python/geometry/point_cloud_crop.py index ac53ad63862..e1cb977fa1d 100644 --- a/examples/python/geometry/point_cloud_crop.py +++ b/examples/python/geometry/point_cloud_crop.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_dbscan_clustering.py b/examples/python/geometry/point_cloud_dbscan_clustering.py index 5b938636e00..5fbf0e014f6 100644 --- a/examples/python/geometry/point_cloud_dbscan_clustering.py +++ b/examples/python/geometry/point_cloud_dbscan_clustering.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_distance.py b/examples/python/geometry/point_cloud_distance.py index 00207221134..1db4e15860b 100644 --- a/examples/python/geometry/point_cloud_distance.py +++ b/examples/python/geometry/point_cloud_distance.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_farthest_point_sampling.py b/examples/python/geometry/point_cloud_farthest_point_sampling.py index f4892b2e432..a799d2f0601 100644 --- a/examples/python/geometry/point_cloud_farthest_point_sampling.py +++ b/examples/python/geometry/point_cloud_farthest_point_sampling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_hidden_point_removal.py b/examples/python/geometry/point_cloud_hidden_point_removal.py index ce5fa9bd74d..114e91ae9cc 100644 --- a/examples/python/geometry/point_cloud_hidden_point_removal.py +++ b/examples/python/geometry/point_cloud_hidden_point_removal.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_iss_keypoint_detector.py b/examples/python/geometry/point_cloud_iss_keypoint_detector.py index 486ef3104fa..06c7390b836 100644 --- a/examples/python/geometry/point_cloud_iss_keypoint_detector.py +++ b/examples/python/geometry/point_cloud_iss_keypoint_detector.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_normal_estimation.py b/examples/python/geometry/point_cloud_normal_estimation.py index e32f4b8703f..32f955bfbe7 100644 --- a/examples/python/geometry/point_cloud_normal_estimation.py +++ b/examples/python/geometry/point_cloud_normal_estimation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_outlier_removal_radius.py b/examples/python/geometry/point_cloud_outlier_removal_radius.py index 99c53244e6d..3df3eed5a7b 100644 --- a/examples/python/geometry/point_cloud_outlier_removal_radius.py +++ b/examples/python/geometry/point_cloud_outlier_removal_radius.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_outlier_removal_statistical.py b/examples/python/geometry/point_cloud_outlier_removal_statistical.py index 1dc02e83b57..30f451b2f1f 100644 --- a/examples/python/geometry/point_cloud_outlier_removal_statistical.py +++ b/examples/python/geometry/point_cloud_outlier_removal_statistical.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_paint.py b/examples/python/geometry/point_cloud_paint.py index e82db48f215..4364964bc39 100644 --- a/examples/python/geometry/point_cloud_paint.py +++ b/examples/python/geometry/point_cloud_paint.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_plane_segmentation.py b/examples/python/geometry/point_cloud_plane_segmentation.py index f5650260843..20ce092de1f 100644 --- a/examples/python/geometry/point_cloud_plane_segmentation.py +++ b/examples/python/geometry/point_cloud_plane_segmentation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_to_depth.py b/examples/python/geometry/point_cloud_to_depth.py index 53a58d4bfb1..af5a483d501 100644 --- a/examples/python/geometry/point_cloud_to_depth.py +++ b/examples/python/geometry/point_cloud_to_depth.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_to_rgbd.py b/examples/python/geometry/point_cloud_to_rgbd.py index 179fd29d172..899aa2675be 100644 --- a/examples/python/geometry/point_cloud_to_rgbd.py +++ b/examples/python/geometry/point_cloud_to_rgbd.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_transformation.py b/examples/python/geometry/point_cloud_transformation.py index 38d100d4fec..3383a13308c 100644 --- a/examples/python/geometry/point_cloud_transformation.py +++ b/examples/python/geometry/point_cloud_transformation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_voxel_downsampling.py b/examples/python/geometry/point_cloud_voxel_downsampling.py index ad0ac27c49f..cf219c889ac 100644 --- a/examples/python/geometry/point_cloud_voxel_downsampling.py +++ b/examples/python/geometry/point_cloud_voxel_downsampling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/point_cloud_with_numpy.py b/examples/python/geometry/point_cloud_with_numpy.py index bcd5291a158..de0394d7c73 100644 --- a/examples/python/geometry/point_cloud_with_numpy.py +++ b/examples/python/geometry/point_cloud_with_numpy.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/ray_casting_closest_geometry.py b/examples/python/geometry/ray_casting_closest_geometry.py index d465800c45d..9e8c82db9d4 100644 --- a/examples/python/geometry/ray_casting_closest_geometry.py +++ b/examples/python/geometry/ray_casting_closest_geometry.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/ray_casting_sdf.py b/examples/python/geometry/ray_casting_sdf.py index 5536ad18401..62b862fa3f9 100644 --- a/examples/python/geometry/ray_casting_sdf.py +++ b/examples/python/geometry/ray_casting_sdf.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/ray_casting_to_image.py b/examples/python/geometry/ray_casting_to_image.py index 17ed49aa9d4..153714ecc47 100644 --- a/examples/python/geometry/ray_casting_to_image.py +++ b/examples/python/geometry/ray_casting_to_image.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/rgbd_datasets.py b/examples/python/geometry/rgbd_datasets.py index c2296e22d85..812e10b19c2 100644 --- a/examples/python/geometry/rgbd_datasets.py +++ b/examples/python/geometry/rgbd_datasets.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_connected_components.py b/examples/python/geometry/triangle_mesh_connected_components.py index f4dcf9d1d02..8672b9ec845 100644 --- a/examples/python/geometry/triangle_mesh_connected_components.py +++ b/examples/python/geometry/triangle_mesh_connected_components.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_cropping.py b/examples/python/geometry/triangle_mesh_cropping.py index 62b71c889e2..663b06c00c2 100644 --- a/examples/python/geometry/triangle_mesh_cropping.py +++ b/examples/python/geometry/triangle_mesh_cropping.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_deformation.py b/examples/python/geometry/triangle_mesh_deformation.py index 70014714004..967a0a49649 100644 --- a/examples/python/geometry/triangle_mesh_deformation.py +++ b/examples/python/geometry/triangle_mesh_deformation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_filtering_average.py b/examples/python/geometry/triangle_mesh_filtering_average.py index 4f7d271f9d1..d53d5a15de1 100644 --- a/examples/python/geometry/triangle_mesh_filtering_average.py +++ b/examples/python/geometry/triangle_mesh_filtering_average.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_from_point_cloud_alpha_shapes.py b/examples/python/geometry/triangle_mesh_from_point_cloud_alpha_shapes.py index 59e7a75754c..cb4ada90c5f 100644 --- a/examples/python/geometry/triangle_mesh_from_point_cloud_alpha_shapes.py +++ b/examples/python/geometry/triangle_mesh_from_point_cloud_alpha_shapes.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_from_point_cloud_ball_pivoting.py b/examples/python/geometry/triangle_mesh_from_point_cloud_ball_pivoting.py index 9b3b58bdb8d..31adc14b076 100644 --- a/examples/python/geometry/triangle_mesh_from_point_cloud_ball_pivoting.py +++ b/examples/python/geometry/triangle_mesh_from_point_cloud_ball_pivoting.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_from_point_cloud_poisson.py b/examples/python/geometry/triangle_mesh_from_point_cloud_poisson.py index 5c3122861af..3be6163f7ef 100644 --- a/examples/python/geometry/triangle_mesh_from_point_cloud_poisson.py +++ b/examples/python/geometry/triangle_mesh_from_point_cloud_poisson.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_normal_estimation.py b/examples/python/geometry/triangle_mesh_normal_estimation.py index 99a4c2dc9ce..5dbac60747d 100644 --- a/examples/python/geometry/triangle_mesh_normal_estimation.py +++ b/examples/python/geometry/triangle_mesh_normal_estimation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_properties.py b/examples/python/geometry/triangle_mesh_properties.py index 372e79590e9..3acb0ee2b8e 100644 --- a/examples/python/geometry/triangle_mesh_properties.py +++ b/examples/python/geometry/triangle_mesh_properties.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_sampling.py b/examples/python/geometry/triangle_mesh_sampling.py index f75ae1ce7ec..388f9cd2e44 100644 --- a/examples/python/geometry/triangle_mesh_sampling.py +++ b/examples/python/geometry/triangle_mesh_sampling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_simplification_decimation.py b/examples/python/geometry/triangle_mesh_simplification_decimation.py index cd286014ef9..5cb6d671d40 100644 --- a/examples/python/geometry/triangle_mesh_simplification_decimation.py +++ b/examples/python/geometry/triangle_mesh_simplification_decimation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_simplification_vertex_clustering.py b/examples/python/geometry/triangle_mesh_simplification_vertex_clustering.py index 51e76f57617..ba742250907 100644 --- a/examples/python/geometry/triangle_mesh_simplification_vertex_clustering.py +++ b/examples/python/geometry/triangle_mesh_simplification_vertex_clustering.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_subdivision.py b/examples/python/geometry/triangle_mesh_subdivision.py index 88807e32a7c..266ea664f6a 100644 --- a/examples/python/geometry/triangle_mesh_subdivision.py +++ b/examples/python/geometry/triangle_mesh_subdivision.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_transformation.py b/examples/python/geometry/triangle_mesh_transformation.py index 65b3f7b36c0..76126453b5e 100644 --- a/examples/python/geometry/triangle_mesh_transformation.py +++ b/examples/python/geometry/triangle_mesh_transformation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/triangle_mesh_with_numpy.py b/examples/python/geometry/triangle_mesh_with_numpy.py index 6b63b5dddb5..d63725bc6e7 100644 --- a/examples/python/geometry/triangle_mesh_with_numpy.py +++ b/examples/python/geometry/triangle_mesh_with_numpy.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/voxel_grid_carving.py b/examples/python/geometry/voxel_grid_carving.py index bd6d4f97df9..eccca9f9f1f 100644 --- a/examples/python/geometry/voxel_grid_carving.py +++ b/examples/python/geometry/voxel_grid_carving.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/voxel_grid_from_point_cloud.py b/examples/python/geometry/voxel_grid_from_point_cloud.py index 371b3d7f360..a8e2d4e92d1 100644 --- a/examples/python/geometry/voxel_grid_from_point_cloud.py +++ b/examples/python/geometry/voxel_grid_from_point_cloud.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/geometry/voxel_grid_from_triangle_mesh.py b/examples/python/geometry/voxel_grid_from_triangle_mesh.py index a99bf250556..0c1493884ff 100644 --- a/examples/python/geometry/voxel_grid_from_triangle_mesh.py +++ b/examples/python/geometry/voxel_grid_from_triangle_mesh.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/io/image_io.py b/examples/python/io/image_io.py index 0b34472f726..2bda0b78360 100644 --- a/examples/python/io/image_io.py +++ b/examples/python/io/image_io.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/io/point_cloud_io.py b/examples/python/io/point_cloud_io.py index 0d2a8086d7a..0d7f97a6838 100644 --- a/examples/python/io/point_cloud_io.py +++ b/examples/python/io/point_cloud_io.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/io/realsense_io.py b/examples/python/io/realsense_io.py index fa386554034..d3ba99c1c3d 100644 --- a/examples/python/io/realsense_io.py +++ b/examples/python/io/realsense_io.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Demonstrate RealSense camera discovery and frame capture. An RS bag file is diff --git a/examples/python/io/triangle_mesh_io.py b/examples/python/io/triangle_mesh_io.py index 13adfa14e6f..b78ebb4bb98 100644 --- a/examples/python/io/triangle_mesh_io.py +++ b/examples/python/io/triangle_mesh_io.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/open3d_example.py b/examples/python/open3d_example.py index 486d5387898..f3f4b7e28b6 100644 --- a/examples/python/open3d_example.py +++ b/examples/python/open3d_example.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/pipelines/colored_icp_registration.py b/examples/python/pipelines/colored_icp_registration.py index 89a7eb04849..dbd1879cad4 100644 --- a/examples/python/pipelines/colored_icp_registration.py +++ b/examples/python/pipelines/colored_icp_registration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """ICP variant that uses both geometry and color for registration""" diff --git a/examples/python/pipelines/doppler_icp_registration.py b/examples/python/pipelines/doppler_icp_registration.py index 5fface38e6e..e87d6eb361b 100644 --- a/examples/python/pipelines/doppler_icp_registration.py +++ b/examples/python/pipelines/doppler_icp_registration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Example script to run Doppler ICP point cloud registration. diff --git a/examples/python/pipelines/icp_registration.py b/examples/python/pipelines/icp_registration.py index 082794b7895..6badc4f5bd5 100644 --- a/examples/python/pipelines/icp_registration.py +++ b/examples/python/pipelines/icp_registration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """ICP (Iterative Closest Point) registration algorithm""" diff --git a/examples/python/pipelines/multiway_registration.py b/examples/python/pipelines/multiway_registration.py index 3f2bc903ff2..7b634481ae6 100644 --- a/examples/python/pipelines/multiway_registration.py +++ b/examples/python/pipelines/multiway_registration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Align multiple pieces of geometry in a global space""" diff --git a/examples/python/pipelines/pose_graph_optimization.py b/examples/python/pipelines/pose_graph_optimization.py index b6061dc897c..a21d95677fe 100644 --- a/examples/python/pipelines/pose_graph_optimization.py +++ b/examples/python/pipelines/pose_graph_optimization.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/pipelines/registration_fgr.py b/examples/python/pipelines/registration_fgr.py index 06de478ac54..35285f5aaf4 100644 --- a/examples/python/pipelines/registration_fgr.py +++ b/examples/python/pipelines/registration_fgr.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/pipelines/registration_ransac.py b/examples/python/pipelines/registration_ransac.py index df7e73dfa51..eca030a03d8 100644 --- a/examples/python/pipelines/registration_ransac.py +++ b/examples/python/pipelines/registration_ransac.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/pipelines/rgbd_integration_uniform.py b/examples/python/pipelines/rgbd_integration_uniform.py index 2bbe318064e..a1659efd442 100644 --- a/examples/python/pipelines/rgbd_integration_uniform.py +++ b/examples/python/pipelines/rgbd_integration_uniform.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/pipelines/rgbd_odometry.py b/examples/python/pipelines/rgbd_odometry.py index 56912e04e1d..c735644c611 100644 --- a/examples/python/pipelines/rgbd_odometry.py +++ b/examples/python/pipelines/rgbd_odometry.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Find camera movement between two consecutive RGBD image pairs""" diff --git a/examples/python/pipelines/robust_icp.py b/examples/python/pipelines/robust_icp.py index a0e75f2acf2..dcca2e8e120 100644 --- a/examples/python/pipelines/robust_icp.py +++ b/examples/python/pipelines/robust_icp.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Outlier rejection using robust kernels for ICP""" diff --git a/examples/python/reconstruction_system/color_map_optimization_for_reconstruction_system.py b/examples/python/reconstruction_system/color_map_optimization_for_reconstruction_system.py index 088ec51818a..36c54f1fb91 100644 --- a/examples/python/reconstruction_system/color_map_optimization_for_reconstruction_system.py +++ b/examples/python/reconstruction_system/color_map_optimization_for_reconstruction_system.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/data_loader.py b/examples/python/reconstruction_system/data_loader.py index 99ba265265e..7ec6b108a12 100644 --- a/examples/python/reconstruction_system/data_loader.py +++ b/examples/python/reconstruction_system/data_loader.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/debug/pairwise_pc_alignment.py b/examples/python/reconstruction_system/debug/pairwise_pc_alignment.py index fdc899d744e..29052e855eb 100644 --- a/examples/python/reconstruction_system/debug/pairwise_pc_alignment.py +++ b/examples/python/reconstruction_system/debug/pairwise_pc_alignment.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/debug/pairwise_rgbd_alignment.py b/examples/python/reconstruction_system/debug/pairwise_rgbd_alignment.py index f9b87c2c1d3..915e079bb61 100644 --- a/examples/python/reconstruction_system/debug/pairwise_rgbd_alignment.py +++ b/examples/python/reconstruction_system/debug/pairwise_rgbd_alignment.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/debug/visualize_alignment.py b/examples/python/reconstruction_system/debug/visualize_alignment.py index 031b9cc4882..b6f51f0405e 100644 --- a/examples/python/reconstruction_system/debug/visualize_alignment.py +++ b/examples/python/reconstruction_system/debug/visualize_alignment.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/debug/visualize_fragments.py b/examples/python/reconstruction_system/debug/visualize_fragments.py index 2c05bd19142..f13b67cb0ee 100644 --- a/examples/python/reconstruction_system/debug/visualize_fragments.py +++ b/examples/python/reconstruction_system/debug/visualize_fragments.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/debug/visualize_pointcloud.py b/examples/python/reconstruction_system/debug/visualize_pointcloud.py index ee20d9aa792..65ee7e06766 100644 --- a/examples/python/reconstruction_system/debug/visualize_pointcloud.py +++ b/examples/python/reconstruction_system/debug/visualize_pointcloud.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/debug/visualize_scene.py b/examples/python/reconstruction_system/debug/visualize_scene.py index 353d4bac04a..fa1c526b5ba 100644 --- a/examples/python/reconstruction_system/debug/visualize_scene.py +++ b/examples/python/reconstruction_system/debug/visualize_scene.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/initialize_config.py b/examples/python/reconstruction_system/initialize_config.py index ee9c4c747c7..c1f8ac4d894 100644 --- a/examples/python/reconstruction_system/initialize_config.py +++ b/examples/python/reconstruction_system/initialize_config.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/integrate_scene.py b/examples/python/reconstruction_system/integrate_scene.py index f80e8d55f28..1fceb37a691 100644 --- a/examples/python/reconstruction_system/integrate_scene.py +++ b/examples/python/reconstruction_system/integrate_scene.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/make_fragments.py b/examples/python/reconstruction_system/make_fragments.py index 5af9d960f4b..64e3af37f7a 100644 --- a/examples/python/reconstruction_system/make_fragments.py +++ b/examples/python/reconstruction_system/make_fragments.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/opencv_pose_estimation.py b/examples/python/reconstruction_system/opencv_pose_estimation.py index 47714065858..7c9040086b6 100644 --- a/examples/python/reconstruction_system/opencv_pose_estimation.py +++ b/examples/python/reconstruction_system/opencv_pose_estimation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/optimize_posegraph.py b/examples/python/reconstruction_system/optimize_posegraph.py index ddc57aa0518..3a73750a829 100644 --- a/examples/python/reconstruction_system/optimize_posegraph.py +++ b/examples/python/reconstruction_system/optimize_posegraph.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/refine_registration.py b/examples/python/reconstruction_system/refine_registration.py index bd555b150f9..7c056440edd 100644 --- a/examples/python/reconstruction_system/refine_registration.py +++ b/examples/python/reconstruction_system/refine_registration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/register_fragments.py b/examples/python/reconstruction_system/register_fragments.py index f7d3c72e664..ac1c5e9795d 100644 --- a/examples/python/reconstruction_system/register_fragments.py +++ b/examples/python/reconstruction_system/register_fragments.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/run_system.py b/examples/python/reconstruction_system/run_system.py index dedfc5552d2..cb54ad792a5 100644 --- a/examples/python/reconstruction_system/run_system.py +++ b/examples/python/reconstruction_system/run_system.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/sensors/azure_kinect_mkv_reader.py b/examples/python/reconstruction_system/sensors/azure_kinect_mkv_reader.py index 2ebb025e04f..91f8f5841de 100644 --- a/examples/python/reconstruction_system/sensors/azure_kinect_mkv_reader.py +++ b/examples/python/reconstruction_system/sensors/azure_kinect_mkv_reader.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/sensors/azure_kinect_recorder.py b/examples/python/reconstruction_system/sensors/azure_kinect_recorder.py index 0302310b8ef..a743cf42000 100644 --- a/examples/python/reconstruction_system/sensors/azure_kinect_recorder.py +++ b/examples/python/reconstruction_system/sensors/azure_kinect_recorder.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/sensors/azure_kinect_viewer.py b/examples/python/reconstruction_system/sensors/azure_kinect_viewer.py index c0cacf4accb..6f4b74652ea 100644 --- a/examples/python/reconstruction_system/sensors/azure_kinect_viewer.py +++ b/examples/python/reconstruction_system/sensors/azure_kinect_viewer.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/sensors/realsense_helper.py b/examples/python/reconstruction_system/sensors/realsense_helper.py index 5e37b0c50bb..12c42bf9c53 100644 --- a/examples/python/reconstruction_system/sensors/realsense_helper.py +++ b/examples/python/reconstruction_system/sensors/realsense_helper.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/sensors/realsense_pcd_visualizer.py b/examples/python/reconstruction_system/sensors/realsense_pcd_visualizer.py index a0f5ecfdaa9..fa8636bd10a 100644 --- a/examples/python/reconstruction_system/sensors/realsense_pcd_visualizer.py +++ b/examples/python/reconstruction_system/sensors/realsense_pcd_visualizer.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/sensors/realsense_recorder.py b/examples/python/reconstruction_system/sensors/realsense_recorder.py index 034f5ffaf35..539b9d09a41 100644 --- a/examples/python/reconstruction_system/sensors/realsense_recorder.py +++ b/examples/python/reconstruction_system/sensors/realsense_recorder.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/slac.py b/examples/python/reconstruction_system/slac.py index 45d080214b8..03b8fec067a 100644 --- a/examples/python/reconstruction_system/slac.py +++ b/examples/python/reconstruction_system/slac.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/reconstruction_system/slac_integrate.py b/examples/python/reconstruction_system/slac_integrate.py index 5ba48801fd9..0638b30691d 100644 --- a/examples/python/reconstruction_system/slac_integrate.py +++ b/examples/python/reconstruction_system/slac_integrate.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/common.py b/examples/python/t_reconstruction_system/common.py index d6331920d87..18fdc757560 100644 --- a/examples/python/t_reconstruction_system/common.py +++ b/examples/python/t_reconstruction_system/common.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/config.py b/examples/python/t_reconstruction_system/config.py index 59b9ec40e2f..091cde49442 100644 --- a/examples/python/t_reconstruction_system/config.py +++ b/examples/python/t_reconstruction_system/config.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/dense_slam.py b/examples/python/t_reconstruction_system/dense_slam.py index 374b6dce91c..65ef9716ffb 100644 --- a/examples/python/t_reconstruction_system/dense_slam.py +++ b/examples/python/t_reconstruction_system/dense_slam.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/dense_slam_gui.py b/examples/python/t_reconstruction_system/dense_slam_gui.py index 24744b9e87d..1389aa77d0f 100644 --- a/examples/python/t_reconstruction_system/dense_slam_gui.py +++ b/examples/python/t_reconstruction_system/dense_slam_gui.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/integrate.py b/examples/python/t_reconstruction_system/integrate.py index 3d86ec02943..e99c6ac82cd 100644 --- a/examples/python/t_reconstruction_system/integrate.py +++ b/examples/python/t_reconstruction_system/integrate.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/integrate_custom.py b/examples/python/t_reconstruction_system/integrate_custom.py index 8b352780b04..d1dedb4b825 100644 --- a/examples/python/t_reconstruction_system/integrate_custom.py +++ b/examples/python/t_reconstruction_system/integrate_custom.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/pose_graph_optim.py b/examples/python/t_reconstruction_system/pose_graph_optim.py index 94abaf34711..51138171117 100644 --- a/examples/python/t_reconstruction_system/pose_graph_optim.py +++ b/examples/python/t_reconstruction_system/pose_graph_optim.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/ray_casting.py b/examples/python/t_reconstruction_system/ray_casting.py index 5bae7301a30..6142b3875fe 100644 --- a/examples/python/t_reconstruction_system/ray_casting.py +++ b/examples/python/t_reconstruction_system/ray_casting.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/rgbd_odometry.py b/examples/python/t_reconstruction_system/rgbd_odometry.py index 759501b1189..c803fd89f67 100644 --- a/examples/python/t_reconstruction_system/rgbd_odometry.py +++ b/examples/python/t_reconstruction_system/rgbd_odometry.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/run_system.py b/examples/python/t_reconstruction_system/run_system.py index 51e94257ace..6e1b63ed46c 100644 --- a/examples/python/t_reconstruction_system/run_system.py +++ b/examples/python/t_reconstruction_system/run_system.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/t_reconstruction_system/split_fragments.py b/examples/python/t_reconstruction_system/split_fragments.py index 96170685ad4..0759e870453 100644 --- a/examples/python/t_reconstruction_system/split_fragments.py +++ b/examples/python/t_reconstruction_system/split_fragments.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/utility/vector.py b/examples/python/utility/vector.py index 257cb54e672..512d814dc6e 100644 --- a/examples/python/utility/vector.py +++ b/examples/python/utility/vector.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/add_geometry.py b/examples/python/visualization/add_geometry.py index e58c456fc66..aa8c0fe43c4 100644 --- a/examples/python/visualization/add_geometry.py +++ b/examples/python/visualization/add_geometry.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/all_widgets.py b/examples/python/visualization/all_widgets.py index 45bd855eaca..1e8383c6e2e 100644 --- a/examples/python/visualization/all_widgets.py +++ b/examples/python/visualization/all_widgets.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/customized_visualization.py b/examples/python/visualization/customized_visualization.py index 1592278e044..80e006c749a 100644 --- a/examples/python/visualization/customized_visualization.py +++ b/examples/python/visualization/customized_visualization.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/customized_visualization_key_action.py b/examples/python/visualization/customized_visualization_key_action.py index c68e2f1110f..1f981b0a165 100644 --- a/examples/python/visualization/customized_visualization_key_action.py +++ b/examples/python/visualization/customized_visualization_key_action.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/demo_scene.py b/examples/python/visualization/demo_scene.py index b0662feadc7..f9d452c7dc7 100644 --- a/examples/python/visualization/demo_scene.py +++ b/examples/python/visualization/demo_scene.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Demo scene demonstrating models, built-in shapes, and materials""" diff --git a/examples/python/visualization/draw.py b/examples/python/visualization/draw.py index 231a0af8bb0..49dc1660ae4 100644 --- a/examples/python/visualization/draw.py +++ b/examples/python/visualization/draw.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/draw_webrtc.py b/examples/python/visualization/draw_webrtc.py index 9e92c9498c3..cfb1f93cb2a 100644 --- a/examples/python/visualization/draw_webrtc.py +++ b/examples/python/visualization/draw_webrtc.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/headless_rendering.py b/examples/python/visualization/headless_rendering.py index 6a9a51970e6..f0a4f1ae162 100644 --- a/examples/python/visualization/headless_rendering.py +++ b/examples/python/visualization/headless_rendering.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/interactive_visualization.py b/examples/python/visualization/interactive_visualization.py index 1b3ff5ed051..6769c0f5d8a 100644 --- a/examples/python/visualization/interactive_visualization.py +++ b/examples/python/visualization/interactive_visualization.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/line_width.py b/examples/python/visualization/line_width.py index 318f563c10f..194d75cfa79 100644 --- a/examples/python/visualization/line_width.py +++ b/examples/python/visualization/line_width.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/load_save_viewpoint.py b/examples/python/visualization/load_save_viewpoint.py index 65c20c8dff0..415b5165fad 100644 --- a/examples/python/visualization/load_save_viewpoint.py +++ b/examples/python/visualization/load_save_viewpoint.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/mitsuba_material_estimation.py b/examples/python/visualization/mitsuba_material_estimation.py index fc8d26c9ecf..448009a478f 100644 --- a/examples/python/visualization/mitsuba_material_estimation.py +++ b/examples/python/visualization/mitsuba_material_estimation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/mouse_and_point_coord.py b/examples/python/visualization/mouse_and_point_coord.py index 5d3ad56f794..883582a2ba2 100644 --- a/examples/python/visualization/mouse_and_point_coord.py +++ b/examples/python/visualization/mouse_and_point_coord.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/multiple_windows.py b/examples/python/visualization/multiple_windows.py index 2cc367d0be7..e839901a894 100644 --- a/examples/python/visualization/multiple_windows.py +++ b/examples/python/visualization/multiple_windows.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/non_blocking_visualization.py b/examples/python/visualization/non_blocking_visualization.py index 04baaf85574..cc6f70f8e06 100644 --- a/examples/python/visualization/non_blocking_visualization.py +++ b/examples/python/visualization/non_blocking_visualization.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/non_english.py b/examples/python/visualization/non_english.py index 0b926b70f70..8b0d007c84f 100644 --- a/examples/python/visualization/non_english.py +++ b/examples/python/visualization/non_english.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/online_processing.py b/examples/python/visualization/online_processing.py index 4edd0e70762..79bf57c4ce6 100644 --- a/examples/python/visualization/online_processing.py +++ b/examples/python/visualization/online_processing.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Online 3D depth video processing pipeline. diff --git a/examples/python/visualization/remote_visualizer.py b/examples/python/visualization/remote_visualizer.py index e360e55272b..8ab64ffc978 100644 --- a/examples/python/visualization/remote_visualizer.py +++ b/examples/python/visualization/remote_visualizer.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """This example shows Open3D's remote visualization feature using RPC diff --git a/examples/python/visualization/remove_geometry.py b/examples/python/visualization/remove_geometry.py index 2353462174f..42b7af1fbe8 100644 --- a/examples/python/visualization/remove_geometry.py +++ b/examples/python/visualization/remove_geometry.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/render_to_image.py b/examples/python/visualization/render_to_image.py index 3e6d05b78d4..d07b97024bd 100644 --- a/examples/python/visualization/render_to_image.py +++ b/examples/python/visualization/render_to_image.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/tensorboard_pytorch.py b/examples/python/visualization/tensorboard_pytorch.py index 89a9fb7c17c..c16f645f3ea 100644 --- a/examples/python/visualization/tensorboard_pytorch.py +++ b/examples/python/visualization/tensorboard_pytorch.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- import copy diff --git a/examples/python/visualization/tensorboard_tensorflow.py b/examples/python/visualization/tensorboard_tensorflow.py index 4b90c8498c6..d7320b053e4 100644 --- a/examples/python/visualization/tensorboard_tensorflow.py +++ b/examples/python/visualization/tensorboard_tensorflow.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- import copy diff --git a/examples/python/visualization/text3d.py b/examples/python/visualization/text3d.py index e1d302b17e3..276a5da5cdc 100644 --- a/examples/python/visualization/text3d.py +++ b/examples/python/visualization/text3d.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/textured_mesh.py b/examples/python/visualization/textured_mesh.py index 2aa635ee83d..999816dd873 100644 --- a/examples/python/visualization/textured_mesh.py +++ b/examples/python/visualization/textured_mesh.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/textured_model.py b/examples/python/visualization/textured_model.py index fbd28784e2d..5872bafe983 100644 --- a/examples/python/visualization/textured_model.py +++ b/examples/python/visualization/textured_model.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/to_mitsuba.py b/examples/python/visualization/to_mitsuba.py index 1adf5e96851..c0f99034043 100644 --- a/examples/python/visualization/to_mitsuba.py +++ b/examples/python/visualization/to_mitsuba.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/video.py b/examples/python/visualization/video.py index c661152956a..ca422082c09 100644 --- a/examples/python/visualization/video.py +++ b/examples/python/visualization/video.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/examples/python/visualization/vis_gui.py b/examples/python/visualization/vis_gui.py index 3cf28e29684..915cd1d39e1 100644 --- a/examples/python/visualization/vis_gui.py +++ b/examples/python/visualization/vis_gui.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/MANIFEST.in b/python/MANIFEST.in index cfedbe226f8..779c3777edd 100644 --- a/python/MANIFEST.in +++ b/python/MANIFEST.in @@ -1,27 +1,8 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# The MIT License (MIT) -# -# Copyright (c) 2018-2023 www.open3d.org -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -# IN THE SOFTWARE. +# Copyright (c) 2018-2024 www.open3d.org +# SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- # Main library, including compiled binaries diff --git a/python/benchmarks/core/test_binary_ew.py b/python/benchmarks/core/test_binary_ew.py index 20054209cf5..479bb6ff905 100644 --- a/python/benchmarks/core/test_binary_ew.py +++ b/python/benchmarks/core/test_binary_ew.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/benchmarks/core/test_nns.py b/python/benchmarks/core/test_nns.py index 20f8ce8a5f5..1981793a5e7 100644 --- a/python/benchmarks/core/test_nns.py +++ b/python/benchmarks/core/test_nns.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/benchmarks/core/test_unary_ew.py b/python/benchmarks/core/test_unary_ew.py index 857bfa503ae..67f69cce67c 100644 --- a/python/benchmarks/core/test_unary_ew.py +++ b/python/benchmarks/core/test_unary_ew.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/benchmarks/open3d_benchmark.py b/python/benchmarks/open3d_benchmark.py index a8dedfe932d..8de28303208 100644 --- a/python/benchmarks/open3d_benchmark.py +++ b/python/benchmarks/open3d_benchmark.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/__init__.py b/python/open3d/__init__.py index f7354b2a90c..d4d5c613b0e 100644 --- a/python/open3d/__init__.py +++ b/python/open3d/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/__init__.py b/python/open3d/ml/__init__.py index 0f28a3e9512..cf7342e0a27 100644 --- a/python/open3d/ml/__init__.py +++ b/python/open3d/ml/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/configs.py b/python/open3d/ml/configs.py index c178bf52a2b..1149be8a9c3 100644 --- a/python/open3d/ml/configs.py +++ b/python/open3d/ml/configs.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/contrib/__init__.py b/python/open3d/ml/contrib/__init__.py index 1d870d5e72c..b883e8024fd 100644 --- a/python/open3d/ml/contrib/__init__.py +++ b/python/open3d/ml/contrib/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/datasets.py b/python/open3d/ml/datasets.py index 3234aee7d3c..4c7397d6ddf 100644 --- a/python/open3d/ml/datasets.py +++ b/python/open3d/ml/datasets.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/tf/__init__.py b/python/open3d/ml/tf/__init__.py index b3178944067..86ce9dd38fa 100644 --- a/python/open3d/ml/tf/__init__.py +++ b/python/open3d/ml/tf/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """TensorFlow specific machine learning functions.""" diff --git a/python/open3d/ml/tf/configs.py b/python/open3d/ml/tf/configs.py index f87c9dcb6d4..6926bc45942 100644 --- a/python/open3d/ml/tf/configs.py +++ b/python/open3d/ml/tf/configs.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Config files for ml3d.""" diff --git a/python/open3d/ml/tf/dataloaders.py b/python/open3d/ml/tf/dataloaders.py index f1d6ff02e91..42e9c2585ad 100644 --- a/python/open3d/ml/tf/dataloaders.py +++ b/python/open3d/ml/tf/dataloaders.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Dataloader for TensorFlow.""" diff --git a/python/open3d/ml/tf/datasets.py b/python/open3d/ml/tf/datasets.py index bdcc65a16fb..023f8d0dd93 100644 --- a/python/open3d/ml/tf/datasets.py +++ b/python/open3d/ml/tf/datasets.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """I/O, attributes, and processing for different datasets.""" diff --git a/python/open3d/ml/tf/layers/__init__.py b/python/open3d/ml/tf/layers/__init__.py index 33d1089474f..599726b5c09 100644 --- a/python/open3d/ml/tf/layers/__init__.py +++ b/python/open3d/ml/tf/layers/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """High level layer API for building networks. diff --git a/python/open3d/ml/tf/models.py b/python/open3d/ml/tf/models.py index 4a358e8c513..e04d251e9c3 100644 --- a/python/open3d/ml/tf/models.py +++ b/python/open3d/ml/tf/models.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """TensorFlow network models.""" diff --git a/python/open3d/ml/tf/modules.py b/python/open3d/ml/tf/modules.py index 40da95cb41a..bc8e70f5e22 100644 --- a/python/open3d/ml/tf/modules.py +++ b/python/open3d/ml/tf/modules.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Loss and Metric modules for TensorFlow.""" diff --git a/python/open3d/ml/tf/ops/__init__.py b/python/open3d/ml/tf/ops/__init__.py index e771da8a3ff..fdb8c107f41 100644 --- a/python/open3d/ml/tf/ops/__init__.py +++ b/python/open3d/ml/tf/ops/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Functional API with operators. diff --git a/python/open3d/ml/tf/pipelines.py b/python/open3d/ml/tf/pipelines.py index d0fa0467bbc..d168634445f 100644 --- a/python/open3d/ml/tf/pipelines.py +++ b/python/open3d/ml/tf/pipelines.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """3D ML pipelines for TensorFlow.""" diff --git a/python/open3d/ml/tf/python/layers/convolutions.py b/python/open3d/ml/tf/python/layers/convolutions.py index fc0eba6d61d..fc1c3a111e2 100644 --- a/python/open3d/ml/tf/python/layers/convolutions.py +++ b/python/open3d/ml/tf/python/layers/convolutions.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/tf/python/layers/neighbor_search.py b/python/open3d/ml/tf/python/layers/neighbor_search.py index d13dd799d11..212dc3b9005 100644 --- a/python/open3d/ml/tf/python/layers/neighbor_search.py +++ b/python/open3d/ml/tf/python/layers/neighbor_search.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/tf/python/layers/voxel_pooling.py b/python/open3d/ml/tf/python/layers/voxel_pooling.py index 4217e63195c..1b5e1370d24 100644 --- a/python/open3d/ml/tf/python/layers/voxel_pooling.py +++ b/python/open3d/ml/tf/python/layers/voxel_pooling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/tf/python/ops/gradients.py b/python/open3d/ml/tf/python/ops/gradients.py index 7ccb3b1108d..1cd75291fad 100644 --- a/python/open3d/ml/tf/python/ops/gradients.py +++ b/python/open3d/ml/tf/python/ops/gradients.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/tf/python/ops/lib.py b/python/open3d/ml/tf/python/ops/lib.py index 271d3aade16..4e55e26382d 100644 --- a/python/open3d/ml/tf/python/ops/lib.py +++ b/python/open3d/ml/tf/python/ops/lib.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """This module loads the op library.""" diff --git a/python/open3d/ml/tf/python/ops/ops.py.in b/python/open3d/ml/tf/python/ops/ops.py.in index 228fc8cb894..b44713940c3 100644 --- a/python/open3d/ml/tf/python/ops/ops.py.in +++ b/python/open3d/ml/tf/python/ops/ops.py.in @@ -3,7 +3,7 @@ # ---------------------------------------------------------------------------- # The MIT License (MIT) # -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/python/open3d/ml/tf/vis.py b/python/open3d/ml/tf/vis.py index a2173cc3dd2..1d4d44f1a27 100644 --- a/python/open3d/ml/tf/vis.py +++ b/python/open3d/ml/tf/vis.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Visualizer for 3D ML.""" diff --git a/python/open3d/ml/torch/__init__.py b/python/open3d/ml/torch/__init__.py index 5867abfdfb3..09a48b131aa 100644 --- a/python/open3d/ml/torch/__init__.py +++ b/python/open3d/ml/torch/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Torch specific machine learning functions.""" diff --git a/python/open3d/ml/torch/classes/__init__.py b/python/open3d/ml/torch/classes/__init__.py index 0188ba1bc49..d162913dd15 100644 --- a/python/open3d/ml/torch/classes/__init__.py +++ b/python/open3d/ml/torch/classes/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Torch specific machine learning classes.""" diff --git a/python/open3d/ml/torch/classes/ragged_tensor.py b/python/open3d/ml/torch/classes/ragged_tensor.py index 02a11568a8d..e3cc3fd6916 100644 --- a/python/open3d/ml/torch/classes/ragged_tensor.py +++ b/python/open3d/ml/torch/classes/ragged_tensor.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/torch/configs.py b/python/open3d/ml/torch/configs.py index f87c9dcb6d4..6926bc45942 100644 --- a/python/open3d/ml/torch/configs.py +++ b/python/open3d/ml/torch/configs.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Config files for ml3d.""" diff --git a/python/open3d/ml/torch/dataloaders.py b/python/open3d/ml/torch/dataloaders.py index fb5370cac59..70464b2ebb8 100644 --- a/python/open3d/ml/torch/dataloaders.py +++ b/python/open3d/ml/torch/dataloaders.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Dataloader for PyTorch.""" diff --git a/python/open3d/ml/torch/datasets.py b/python/open3d/ml/torch/datasets.py index bdcc65a16fb..023f8d0dd93 100644 --- a/python/open3d/ml/torch/datasets.py +++ b/python/open3d/ml/torch/datasets.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """I/O, attributes, and processing for different datasets.""" diff --git a/python/open3d/ml/torch/layers/__init__.py b/python/open3d/ml/torch/layers/__init__.py index a0ba32db9c4..ae8c471b178 100644 --- a/python/open3d/ml/torch/layers/__init__.py +++ b/python/open3d/ml/torch/layers/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """High level layer API for building networks. diff --git a/python/open3d/ml/torch/models.py b/python/open3d/ml/torch/models.py index 328050bbbe1..8e99aba0f5b 100644 --- a/python/open3d/ml/torch/models.py +++ b/python/open3d/ml/torch/models.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """PyTorch network models.""" diff --git a/python/open3d/ml/torch/modules.py b/python/open3d/ml/torch/modules.py index 816a1df3537..a5b3994a6c1 100644 --- a/python/open3d/ml/torch/modules.py +++ b/python/open3d/ml/torch/modules.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Loss and Metric modules for PyTorch.""" diff --git a/python/open3d/ml/torch/ops/__init__.py b/python/open3d/ml/torch/ops/__init__.py index c89f2bd54d5..bf547ce815e 100644 --- a/python/open3d/ml/torch/ops/__init__.py +++ b/python/open3d/ml/torch/ops/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Functional API with operators. diff --git a/python/open3d/ml/torch/pipelines.py b/python/open3d/ml/torch/pipelines.py index cf418488825..9f2dac3a0c4 100644 --- a/python/open3d/ml/torch/pipelines.py +++ b/python/open3d/ml/torch/pipelines.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """3D ML pipelines for PyTorch.""" diff --git a/python/open3d/ml/torch/python/layers/convolutions.py b/python/open3d/ml/torch/python/layers/convolutions.py index ec22d845f4f..5e9fe3b1c7f 100644 --- a/python/open3d/ml/torch/python/layers/convolutions.py +++ b/python/open3d/ml/torch/python/layers/convolutions.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/torch/python/layers/neighbor_search.py b/python/open3d/ml/torch/python/layers/neighbor_search.py index 3d25b426991..bb1eac55165 100644 --- a/python/open3d/ml/torch/python/layers/neighbor_search.py +++ b/python/open3d/ml/torch/python/layers/neighbor_search.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/torch/python/layers/voxel_pooling.py b/python/open3d/ml/torch/python/layers/voxel_pooling.py index cc0cfc7377b..d95112f433f 100644 --- a/python/open3d/ml/torch/python/layers/voxel_pooling.py +++ b/python/open3d/ml/torch/python/layers/voxel_pooling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/torch/python/ops.py.in b/python/open3d/ml/torch/python/ops.py.in index 4ecd5b59105..14fa5fea1a6 100644 --- a/python/open3d/ml/torch/python/ops.py.in +++ b/python/open3d/ml/torch/python/ops.py.in @@ -3,7 +3,7 @@ # ---------------------------------------------------------------------------- # The MIT License (MIT) # -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/python/open3d/ml/torch/python/return_types.py.in b/python/open3d/ml/torch/python/return_types.py.in index 9af42040ab2..a73a0765ed9 100644 --- a/python/open3d/ml/torch/python/return_types.py.in +++ b/python/open3d/ml/torch/python/return_types.py.in @@ -3,7 +3,7 @@ # ---------------------------------------------------------------------------- # The MIT License (MIT) # -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/python/open3d/ml/torch/vis.py b/python/open3d/ml/torch/vis.py index a2173cc3dd2..1d4d44f1a27 100644 --- a/python/open3d/ml/torch/vis.py +++ b/python/open3d/ml/torch/vis.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Visualizer for 3D ML.""" diff --git a/python/open3d/ml/utils.py b/python/open3d/ml/utils.py index 8d3ceeb99d1..5dfd3dc70d1 100644 --- a/python/open3d/ml/utils.py +++ b/python/open3d/ml/utils.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/ml/vis.py b/python/open3d/ml/vis.py index afc08de5dab..c6b2f3bf5d5 100644 --- a/python/open3d/ml/vis.py +++ b/python/open3d/ml/vis.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/visualization/__init__.py b/python/open3d/visualization/__init__.py index 5360a69b270..ba464d7d54a 100644 --- a/python/open3d/visualization/__init__.py +++ b/python/open3d/visualization/__init__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/visualization/__main__.py b/python/open3d/visualization/__main__.py index 2416fa4dbd3..31cdc7d082e 100644 --- a/python/open3d/visualization/__main__.py +++ b/python/open3d/visualization/__main__.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/visualization/_external_visualizer.py b/python/open3d/visualization/_external_visualizer.py index 774ddbaebe1..b3de5b812d1 100644 --- a/python/open3d/visualization/_external_visualizer.py +++ b/python/open3d/visualization/_external_visualizer.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/visualization/async_event_loop.py b/python/open3d/visualization/async_event_loop.py index 1126638b152..3b89da8a02d 100644 --- a/python/open3d/visualization/async_event_loop.py +++ b/python/open3d/visualization/async_event_loop.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Run the GUI event loop in a non-main thread. This allows using the diff --git a/python/open3d/visualization/draw.py b/python/open3d/visualization/draw.py index aa6e29e2b2c..57b1a7cbdb2 100644 --- a/python/open3d/visualization/draw.py +++ b/python/open3d/visualization/draw.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/visualization/draw_plotly.py b/python/open3d/visualization/draw_plotly.py index 366299a130b..6b04df3b2a5 100644 --- a/python/open3d/visualization/draw_plotly.py +++ b/python/open3d/visualization/draw_plotly.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/visualization/tensorboard_plugin/colormap.py b/python/open3d/visualization/tensorboard_plugin/colormap.py index 15c04c60d2a..a5dbfdbbcf4 100644 --- a/python/open3d/visualization/tensorboard_plugin/colormap.py +++ b/python/open3d/visualization/tensorboard_plugin/colormap.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- class Colormap: diff --git a/python/open3d/visualization/tensorboard_plugin/frontend/index.js b/python/open3d/visualization/tensorboard_plugin/frontend/index.js index adc1fd0f92d..74dfc069fc9 100644 --- a/python/open3d/visualization/tensorboard_plugin/frontend/index.js +++ b/python/open3d/visualization/tensorboard_plugin/frontend/index.js @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- import './adapter.min.js'; diff --git a/python/open3d/visualization/tensorboard_plugin/frontend/style.css b/python/open3d/visualization/tensorboard_plugin/frontend/style.css index 244a5e47d4b..40fc00601b4 100644 --- a/python/open3d/visualization/tensorboard_plugin/frontend/style.css +++ b/python/open3d/visualization/tensorboard_plugin/frontend/style.css @@ -1,27 +1,8 @@ /* ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- */ diff --git a/python/open3d/visualization/tensorboard_plugin/labellut.py b/python/open3d/visualization/tensorboard_plugin/labellut.py index ef209588f82..a73e3831712 100644 --- a/python/open3d/visualization/tensorboard_plugin/labellut.py +++ b/python/open3d/visualization/tensorboard_plugin/labellut.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- from colorsys import rgb_to_yiq diff --git a/python/open3d/visualization/tensorboard_plugin/metadata.py b/python/open3d/visualization/tensorboard_plugin/metadata.py index e19e71b362c..9e247677177 100644 --- a/python/open3d/visualization/tensorboard_plugin/metadata.py +++ b/python/open3d/visualization/tensorboard_plugin/metadata.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Internal information about the Open3D plugin.""" diff --git a/python/open3d/visualization/tensorboard_plugin/plugin.py b/python/open3d/visualization/tensorboard_plugin/plugin.py index 69da28c35eb..d6da0aba8af 100644 --- a/python/open3d/visualization/tensorboard_plugin/plugin.py +++ b/python/open3d/visualization/tensorboard_plugin/plugin.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Open3D visualization plugin for TensorBoard.""" diff --git a/python/open3d/visualization/tensorboard_plugin/plugin_data.proto b/python/open3d/visualization/tensorboard_plugin/plugin_data.proto index 466ca8cdbf1..e40ed41a7a2 100644 --- a/python/open3d/visualization/tensorboard_plugin/plugin_data.proto +++ b/python/open3d/visualization/tensorboard_plugin/plugin_data.proto @@ -1,27 +1,8 @@ // ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// The MIT License (MIT) -// -// Copyright (c) 2018-2023 www.open3d.org -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -// IN THE SOFTWARE. +// Copyright (c) 2018-2024 www.open3d.org +// SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- // To generate plugin_data_pb2.py, use this command: diff --git a/python/open3d/visualization/tensorboard_plugin/plugin_data_pb2.py b/python/open3d/visualization/tensorboard_plugin/plugin_data_pb2.py index 33d3b9c9641..30bd56e72cf 100644 --- a/python/open3d/visualization/tensorboard_plugin/plugin_data_pb2.py +++ b/python/open3d/visualization/tensorboard_plugin/plugin_data_pb2.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- # -*- coding: utf-8 -*- diff --git a/python/open3d/visualization/tensorboard_plugin/summary.py b/python/open3d/visualization/tensorboard_plugin/summary.py index 4bb35fa5da7..4a02e8e4cdc 100644 --- a/python/open3d/visualization/tensorboard_plugin/summary.py +++ b/python/open3d/visualization/tensorboard_plugin/summary.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Summary writer for the TensorBoard Open3D plugin""" diff --git a/python/open3d/visualization/tensorboard_plugin/util.py b/python/open3d/visualization/tensorboard_plugin/util.py index 8c8a5beda34..6980c6f0c76 100644 --- a/python/open3d/visualization/tensorboard_plugin/util.py +++ b/python/open3d/visualization/tensorboard_plugin/util.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Utility functions for the Open3D TensorBoard plugin.""" diff --git a/python/open3d/visualization/to_mitsuba.py b/python/open3d/visualization/to_mitsuba.py index 2af657757ec..4b4ce4e3a42 100644 --- a/python/open3d/visualization/to_mitsuba.py +++ b/python/open3d/visualization/to_mitsuba.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/open3d/web_visualizer.py b/python/open3d/web_visualizer.py index 9101f610926..c65c8c08f4a 100644 --- a/python/open3d/web_visualizer.py +++ b/python/open3d/web_visualizer.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/setup.cfg b/python/setup.cfg index 93a8586735a..b9b1509477a 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,27 +1,8 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# The MIT License (MIT) -# -# Copyright (c) 2018-2023 www.open3d.org -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -# IN THE SOFTWARE. +# Copyright (c) 2018-2024 www.open3d.org +# SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- [metadata] diff --git a/python/setup.py b/python/setup.py index 70b840cb801..341d91f361c 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/conftest.py b/python/test/conftest.py index e05fa3f44a3..882c23164a0 100644 --- a/python/test/conftest.py +++ b/python/test/conftest.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_core.py b/python/test/core/test_core.py index 47200dfe338..c94a961e1fe 100644 --- a/python/test/core/test_core.py +++ b/python/test/core/test_core.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_hashmap.py b/python/test/core/test_hashmap.py index d1b0bee07cd..a0604cdea4d 100644 --- a/python/test/core/test_hashmap.py +++ b/python/test/core/test_hashmap.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_linalg.py b/python/test/core/test_linalg.py index ca6edb1818d..7d1580570f8 100644 --- a/python/test/core/test_linalg.py +++ b/python/test/core/test_linalg.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_nn.py b/python/test/core/test_nn.py index efa01a528a9..374ebea11ec 100644 --- a/python/test/core/test_nn.py +++ b/python/test/core/test_nn.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_size_vector.py b/python/test/core/test_size_vector.py index 03942dc10a8..57ab9f8ab88 100644 --- a/python/test/core/test_size_vector.py +++ b/python/test/core/test_size_vector.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_sycl_utils.py b/python/test/core/test_sycl_utils.py index cc06b80a1f9..97546abf92b 100644 --- a/python/test/core/test_sycl_utils.py +++ b/python/test/core/test_sycl_utils.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_tensor_function.py b/python/test/core/test_tensor_function.py index 9b36c83cf34..4a45b06f599 100644 --- a/python/test/core/test_tensor_function.py +++ b/python/test/core/test_tensor_function.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/core/test_torch_integration.py b/python/test/core/test_torch_integration.py index 4b974fc4ff5..c30e32fa499 100644 --- a/python/test/core/test_torch_integration.py +++ b/python/test/core/test_torch_integration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/data/test_data.py b/python/test/data/test_data.py index 7faa634c93e..657530c1a81 100644 --- a/python/test/data/test_data.py +++ b/python/test/data/test_data.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/io/rpc/test_remote_functions.py b/python/test/io/rpc/test_remote_functions.py index 328c1143b39..532668c146b 100644 --- a/python/test/io/rpc/test_remote_functions.py +++ b/python/test/io/rpc/test_remote_functions.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/io/rpc/test_serialization.py b/python/test/io/rpc/test_serialization.py index 8c8ae60f114..d44d65fd31c 100644 --- a/python/test/io/rpc/test_serialization.py +++ b/python/test/io/rpc/test_serialization.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/io/test_io.py b/python/test/io/test_io.py index 0678bb4ae9c..f8a316474e5 100644 --- a/python/test/io/test_io.py +++ b/python/test/io/test_io.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/io/test_pathlib.py b/python/test/io/test_pathlib.py index ad3313a6067..09b94cdc731 100644 --- a/python/test/io/test_pathlib.py +++ b/python/test/io/test_pathlib.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml/test_contrib_iou.py b/python/test/ml/test_contrib_iou.py index 2862e619477..31d06ad6801 100644 --- a/python/test/ml/test_contrib_iou.py +++ b/python/test/ml/test_contrib_iou.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml/test_contrib_subsample.py b/python/test/ml/test_contrib_subsample.py index 6d91b188d60..dc8a625a736 100644 --- a/python/test/ml/test_contrib_subsample.py +++ b/python/test/ml/test_contrib_subsample.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/cconv_python.py b/python/test/ml_ops/cconv_python.py index e4fe8118e54..7770a1ae461 100644 --- a/python/test/ml_ops/cconv_python.py +++ b/python/test/ml_ops/cconv_python.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """This is a python implementation for the continuous convolutions meant for diff --git a/python/test/ml_ops/check_gradients.py b/python/test/ml_ops/check_gradients.py index d1fac6ff06f..143278ff64f 100644 --- a/python/test/ml_ops/check_gradients.py +++ b/python/test/ml_ops/check_gradients.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/mltest.py b/python/test/ml_ops/mltest.py index c4761466e1e..0f25f5d46f6 100644 --- a/python/test/ml_ops/mltest.py +++ b/python/test/ml_ops/mltest.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/particle_network_tf.py b/python/test/ml_ops/particle_network_tf.py index 892c97d53ae..1775bb78425 100644 --- a/python/test/ml_ops/particle_network_tf.py +++ b/python/test/ml_ops/particle_network_tf.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_cconv.py b/python/test/ml_ops/test_cconv.py index 891498b69d0..8f07d7f9b5e 100644 --- a/python/test/ml_ops/test_cconv.py +++ b/python/test/ml_ops/test_cconv.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Tests the implementation of the continuous convolution ops""" diff --git a/python/test/ml_ops/test_cconv_python.py b/python/test/ml_ops/test_cconv_python.py index 2461d84b114..0adb7657481 100644 --- a/python/test/ml_ops/test_cconv_python.py +++ b/python/test/ml_ops/test_cconv_python.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Tests the reference python implementation of the continuous conv""" diff --git a/python/test/ml_ops/test_cublas.py b/python/test/ml_ops/test_cublas.py index 5aa6c671b90..64299bb3df8 100644 --- a/python/test/ml_ops/test_cublas.py +++ b/python/test/ml_ops/test_cublas.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_fixed_radius_search.py b/python/test/ml_ops/test_fixed_radius_search.py index f0ccf87eada..b0a8f720129 100644 --- a/python/test/ml_ops/test_fixed_radius_search.py +++ b/python/test/ml_ops/test_fixed_radius_search.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_general_sparseconv.py b/python/test/ml_ops/test_general_sparseconv.py index 923b6da9bca..deae230826d 100644 --- a/python/test/ml_ops/test_general_sparseconv.py +++ b/python/test/ml_ops/test_general_sparseconv.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Tests the implementation of the general sparse convolution ops""" diff --git a/python/test/ml_ops/test_invert_neighbors_list.py b/python/test/ml_ops/test_invert_neighbors_list.py index acc3b9ffdc9..eb7d51427a9 100644 --- a/python/test/ml_ops/test_invert_neighbors_list.py +++ b/python/test/ml_ops/test_invert_neighbors_list.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_knn_search.py b/python/test/ml_ops/test_knn_search.py index 175835f6593..38d0e11d644 100644 --- a/python/test/ml_ops/test_knn_search.py +++ b/python/test/ml_ops/test_knn_search.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_nms.py b/python/test/ml_ops/test_nms.py index b0f1c1da772..81340717bbc 100644 --- a/python/test/ml_ops/test_nms.py +++ b/python/test/ml_ops/test_nms.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_query_pts.py b/python/test/ml_ops/test_query_pts.py index 5791282cc3e..e3d7d902acb 100644 --- a/python/test/ml_ops/test_query_pts.py +++ b/python/test/ml_ops/test_query_pts.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_radius_search.py b/python/test/ml_ops/test_radius_search.py index b799b2c7602..c23590c5596 100644 --- a/python/test/ml_ops/test_radius_search.py +++ b/python/test/ml_ops/test_radius_search.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_ragged_tensor.py b/python/test/ml_ops/test_ragged_tensor.py index 6f018debf67..a61a668a587 100644 --- a/python/test/ml_ops/test_ragged_tensor.py +++ b/python/test/ml_ops/test_ragged_tensor.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_ragged_to_dense.py b/python/test/ml_ops/test_ragged_to_dense.py index cae16e98f1b..9121faa1b46 100644 --- a/python/test/ml_ops/test_ragged_to_dense.py +++ b/python/test/ml_ops/test_ragged_to_dense.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_reduce_subarrays_sum.py b/python/test/ml_ops/test_reduce_subarrays_sum.py index 30b8569c43f..ef04afe1426 100644 --- a/python/test/ml_ops/test_reduce_subarrays_sum.py +++ b/python/test/ml_ops/test_reduce_subarrays_sum.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_roi_pool.py b/python/test/ml_ops/test_roi_pool.py index ee39d653553..60d17c52d17 100644 --- a/python/test/ml_ops/test_roi_pool.py +++ b/python/test/ml_ops/test_roi_pool.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_sampling.py b/python/test/ml_ops/test_sampling.py index 6438f1e1c0f..4590c7afed4 100644 --- a/python/test/ml_ops/test_sampling.py +++ b/python/test/ml_ops/test_sampling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_sparseconv.py b/python/test/ml_ops/test_sparseconv.py index 71a019ccc50..5ed8881e9cb 100644 --- a/python/test/ml_ops/test_sparseconv.py +++ b/python/test/ml_ops/test_sparseconv.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """Tests the reference python implementation of the sparse conv""" diff --git a/python/test/ml_ops/test_subsampling.py b/python/test/ml_ops/test_subsampling.py index 21812d45792..f4eec270b5b 100644 --- a/python/test/ml_ops/test_subsampling.py +++ b/python/test/ml_ops/test_subsampling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_tf_training_graph_mode.py b/python/test/ml_ops/test_tf_training_graph_mode.py index d9e3c178234..d00beca6484 100644 --- a/python/test/ml_ops/test_tf_training_graph_mode.py +++ b/python/test/ml_ops/test_tf_training_graph_mode.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """This test simulates a network training by running some ops in graph mode for diff --git a/python/test/ml_ops/test_three_interp.py b/python/test/ml_ops/test_three_interp.py index d4383567587..097bafc9dee 100644 --- a/python/test/ml_ops/test_three_interp.py +++ b/python/test/ml_ops/test_three_interp.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_three_nn.py b/python/test/ml_ops/test_three_nn.py index 57e96b58b23..a005dc94335 100644 --- a/python/test/ml_ops/test_three_nn.py +++ b/python/test/ml_ops/test_three_nn.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_voxel_pooling.py b/python/test/ml_ops/test_voxel_pooling.py index 90426acef93..a5198cdfc42 100644 --- a/python/test/ml_ops/test_voxel_pooling.py +++ b/python/test/ml_ops/test_voxel_pooling.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/ml_ops/test_voxelize.py b/python/test/ml_ops/test_voxelize.py index bf98a406262..e4b1a760078 100644 --- a/python/test/ml_ops/test_voxelize.py +++ b/python/test/ml_ops/test_voxelize.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/open3d_test.py b/python/test/open3d_test.py index 46a768746d0..b1071e555fb 100644 --- a/python/test/open3d_test.py +++ b/python/test/open3d_test.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/geometry/test_image.py b/python/test/t/geometry/test_image.py index 863fb1acb83..54d75e90d5d 100644 --- a/python/test/t/geometry/test_image.py +++ b/python/test/t/geometry/test_image.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/geometry/test_lineset.py b/python/test/t/geometry/test_lineset.py index eaa38767fe8..2d3daceccaa 100644 --- a/python/test/t/geometry/test_lineset.py +++ b/python/test/t/geometry/test_lineset.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/geometry/test_pointcloud.py b/python/test/t/geometry/test_pointcloud.py index e6c194477ca..f277bcabfb2 100644 --- a/python/test/t/geometry/test_pointcloud.py +++ b/python/test/t/geometry/test_pointcloud.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/geometry/test_raycasting_scene.py b/python/test/t/geometry/test_raycasting_scene.py index 3ce024a2b29..9f3e3dac380 100644 --- a/python/test/t/geometry/test_raycasting_scene.py +++ b/python/test/t/geometry/test_raycasting_scene.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/geometry/test_tensormap.py b/python/test/t/geometry/test_tensormap.py index fc1b6232aae..255c1ef55b2 100644 --- a/python/test/t/geometry/test_tensormap.py +++ b/python/test/t/geometry/test_tensormap.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/geometry/test_trianglemesh.py b/python/test/t/geometry/test_trianglemesh.py index 44915d709cd..282a8b466b6 100644 --- a/python/test/t/geometry/test_trianglemesh.py +++ b/python/test/t/geometry/test_trianglemesh.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/io/test_noise.py b/python/test/t/io/test_noise.py index 00316bd1c9d..52a807762ce 100644 --- a/python/test/t/io/test_noise.py +++ b/python/test/t/io/test_noise.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/io/test_realsense.py b/python/test/t/io/test_realsense.py index c6df67ae181..ae325249c5d 100755 --- a/python/test/t/io/test_realsense.py +++ b/python/test/t/io/test_realsense.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/registration/test_registration.py b/python/test/t/registration/test_registration.py index c9bed8f5c84..4cbea101c7f 100644 --- a/python/test/t/registration/test_registration.py +++ b/python/test/t/registration/test_registration.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/t/registration/test_transformation_estimation.py b/python/test/t/registration/test_transformation_estimation.py index f95b63c874e..f59408b84a5 100644 --- a/python/test/t/registration/test_transformation_estimation.py +++ b/python/test/t/registration/test_transformation_estimation.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/test_color_map_optimization.py b/python/test/test_color_map_optimization.py index 593088b2349..cc7e276315d 100644 --- a/python/test/test_color_map_optimization.py +++ b/python/test/test_color_map_optimization.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/test_flags.py b/python/test/test_flags.py index 0077d41604f..b614183f648 100644 --- a/python/test/test_flags.py +++ b/python/test/test_flags.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/test_octree.py b/python/test/test_octree.py index 2cc9754b827..27dc6f28a03 100644 --- a/python/test/test_octree.py +++ b/python/test/test_octree.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/test_open3d_eigen.py b/python/test/test_open3d_eigen.py index 24535fff95c..d3b3ad1d13f 100644 --- a/python/test/test_open3d_eigen.py +++ b/python/test/test_open3d_eigen.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/visualization/test_cpu_rendering.py b/python/test/visualization/test_cpu_rendering.py index 53c92edd0f5..ffaf9021c32 100644 --- a/python/test/visualization/test_cpu_rendering.py +++ b/python/test/visualization/test_cpu_rendering.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/test/visualization/test_tensorboard_plugin.py b/python/test/visualization/test_tensorboard_plugin.py index c1913a3ec29..db728647e0b 100644 --- a/python/test/visualization/test_tensorboard_plugin.py +++ b/python/test/visualization/test_tensorboard_plugin.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- import os diff --git a/python/tools/app.py b/python/tools/app.py index 02c8cc65e79..73434e6440d 100644 --- a/python/tools/app.py +++ b/python/tools/app.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/python/tools/cli.py b/python/tools/cli.py index 7f8aefa3aca..1b8dcb2d406 100644 --- a/python/tools/cli.py +++ b/python/tools/cli.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- diff --git a/util/check_style.py b/util/check_style.py index 8a5b3ca7983..4b54e02a916 100644 --- a/util/check_style.py +++ b/util/check_style.py @@ -1,7 +1,7 @@ # ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- @@ -64,7 +64,7 @@ class CppFormatter: standard_header = """// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- -// Copyright (c) 2018-2023 www.open3d.org +// Copyright (c) 2018-2024 www.open3d.org // SPDX-License-Identifier: MIT // ---------------------------------------------------------------------------- """ @@ -146,7 +146,7 @@ class PythonFormatter: standard_header = """# ---------------------------------------------------------------------------- # - Open3D: www.open3d.org - # ---------------------------------------------------------------------------- -# Copyright (c) 2018-2023 www.open3d.org +# Copyright (c) 2018-2024 www.open3d.org # SPDX-License-Identifier: MIT # ---------------------------------------------------------------------------- """