├── .gitignore ├── .vscode ├── c_cpp_properties.json └── settings.json ├── 05548059.pdf ├── CMakeLists.txt ├── LICENSE ├── README.md ├── catkin_simple ├── .gitignore ├── CMakeLists.txt ├── README.md ├── cmake │ └── catkin_simple-extras.cmake.em ├── package.xml └── test │ └── scenarios │ └── hello_world │ ├── .gitignore │ ├── bar │ ├── include │ │ └── bar │ │ │ └── hello.h │ ├── msg │ │ └── HeaderString.msg │ ├── package.xml │ └── src │ │ └── hello.cpp │ ├── baz │ ├── include │ │ └── baz │ │ │ └── world.h │ └── package.xml │ ├── catkin_simple │ └── foo │ ├── package.xml │ └── src │ └── main.cpp ├── config.rviz ├── glog ├── .bazelci │ └── presubmit.yml ├── .gitignore ├── .travis.ubuntu.sh ├── .travis.yml ├── AUTHORS ├── BUILD ├── CMakeLists.txt ├── CONTRIBUTORS ├── COPYING ├── ChangeLog ├── Dockerfile.ubuntu.template ├── README.rst ├── README.windows ├── WORKSPACE ├── appveyor.yml ├── bazel │ ├── example │ │ ├── BUILD │ │ └── main.cc │ └── glog.bzl ├── cmake │ ├── DetermineGflagsNamespace.cmake │ ├── FindUnwind.cmake │ ├── GetCacheVariables.cmake │ ├── TestInitPackageConfig.cmake │ └── TestPackageConfig.cmake ├── glog-config.cmake.in ├── glog-modules.cmake.in ├── libglog.pc.in ├── src │ ├── base │ │ ├── commandlineflags.h │ │ ├── googleinit.h │ │ └── mutex.h │ ├── config.h.cmake.in │ ├── config_for_unittests.h │ ├── demangle.cc │ ├── demangle.h │ ├── demangle_unittest.cc │ ├── demangle_unittest.sh │ ├── demangle_unittest.txt │ ├── glog │ │ ├── log_severity.h │ │ ├── logging.h.in │ │ ├── raw_logging.h.in │ │ ├── stl_logging.h.in │ │ └── vlog_is_on.h.in │ ├── googletest.h │ ├── logging.cc │ ├── logging_striplog_test.sh │ ├── logging_striptest10.cc │ ├── logging_striptest2.cc │ ├── logging_striptest_main.cc │ ├── logging_unittest.cc │ ├── logging_unittest.err │ ├── mock-log.h │ ├── mock-log_test.cc │ ├── package_config_unittest │ │ └── working_config │ │ │ ├── CMakeLists.txt │ │ │ └── glog_package_config.cc │ ├── raw_logging.cc │ ├── signalhandler.cc │ ├── signalhandler_unittest.cc │ ├── signalhandler_unittest.sh │ ├── stacktrace.h │ ├── stacktrace_generic-inl.h │ ├── stacktrace_libunwind-inl.h │ ├── stacktrace_powerpc-inl.h │ ├── stacktrace_unittest.cc │ ├── stacktrace_windows-inl.h │ ├── stacktrace_x86-inl.h │ ├── stacktrace_x86_64-inl.h │ ├── stl_logging_unittest.cc │ ├── symbolize.cc │ ├── symbolize.h │ ├── symbolize_unittest.cc │ ├── utilities.cc │ ├── utilities.h │ ├── utilities_unittest.cc │ ├── vlog_is_on.cc │ └── windows │ │ ├── dirent.h │ │ ├── glog │ │ ├── log_severity.h │ │ ├── logging.h │ │ ├── raw_logging.h │ │ ├── stl_logging.h │ │ └── vlog_is_on.h │ │ ├── port.cc │ │ ├── port.h │ │ └── preprocess.sh └── toolchains │ ├── .gitignore │ ├── clang-cxx17.cmake │ ├── gcc-cxx11.cmake │ ├── gcc-cxx17.cmake │ ├── gcc-cxx98.cmake │ ├── gcc-gnuxx11.cmake │ ├── linux-mingw-w64-cxx11.cmake │ ├── linux-mingw-w64-cxx17.cmake │ ├── linux-mingw-w64-gnuxx11.cmake │ ├── mingw-cxx11.cmake │ ├── mingw-cxx17.cmake │ ├── mingw-gnuxx11.cmake │ ├── vs-14-2015-sdk-8-1.cmake │ ├── vs-14-2015-win64.cmake │ ├── vs-15-2017-win64-cxx17.cmake │ └── vs-15-2017-win64.cmake └── linefit_ground_segmentation ├── LICENSE ├── README.md ├── doc └── kitti.ply ├── linefit_ground_segmentation ├── CMakeLists.txt ├── include │ └── ground_segmentation │ │ ├── bin.h │ │ ├── ground_segmentation.h │ │ └── segment.h ├── package.xml └── src │ ├── bin.cc │ ├── ground_segmentation.cc │ └── segment.cc └── linefit_ground_segmentation_ros ├── CMakeLists.txt ├── launch ├── segmentation.launch ├── segmentation_params.yaml └── test.launch ├── package.xml └── src ├── ground_segmentation_node.cc └── ground_segmentation_test_node.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /05548059.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/05548059.pdf -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | /opt/ros/melodic/share/catkin/cmake/toplevel.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/README.md -------------------------------------------------------------------------------- /catkin_simple/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /catkin_simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/CMakeLists.txt -------------------------------------------------------------------------------- /catkin_simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/README.md -------------------------------------------------------------------------------- /catkin_simple/cmake/catkin_simple-extras.cmake.em: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/cmake/catkin_simple-extras.cmake.em -------------------------------------------------------------------------------- /catkin_simple/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/package.xml -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt 2 | -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/bar/include/bar/hello.h: -------------------------------------------------------------------------------- 1 | void hello(); 2 | -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/bar/msg/HeaderString.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/bar/msg/HeaderString.msg -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/bar/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/bar/package.xml -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/bar/src/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/bar/src/hello.cpp -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/baz/include/baz/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/baz/include/baz/world.h -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/baz/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/baz/package.xml -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/catkin_simple: -------------------------------------------------------------------------------- 1 | ../../.. -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/foo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/foo/package.xml -------------------------------------------------------------------------------- /catkin_simple/test/scenarios/hello_world/foo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/catkin_simple/test/scenarios/hello_world/foo/src/main.cpp -------------------------------------------------------------------------------- /config.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/config.rviz -------------------------------------------------------------------------------- /glog/.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /glog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/.gitignore -------------------------------------------------------------------------------- /glog/.travis.ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/.travis.ubuntu.sh -------------------------------------------------------------------------------- /glog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/.travis.yml -------------------------------------------------------------------------------- /glog/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/AUTHORS -------------------------------------------------------------------------------- /glog/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/BUILD -------------------------------------------------------------------------------- /glog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/CMakeLists.txt -------------------------------------------------------------------------------- /glog/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/CONTRIBUTORS -------------------------------------------------------------------------------- /glog/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/COPYING -------------------------------------------------------------------------------- /glog/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/ChangeLog -------------------------------------------------------------------------------- /glog/Dockerfile.ubuntu.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/Dockerfile.ubuntu.template -------------------------------------------------------------------------------- /glog/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/README.rst -------------------------------------------------------------------------------- /glog/README.windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/README.windows -------------------------------------------------------------------------------- /glog/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/WORKSPACE -------------------------------------------------------------------------------- /glog/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/appveyor.yml -------------------------------------------------------------------------------- /glog/bazel/example/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/bazel/example/BUILD -------------------------------------------------------------------------------- /glog/bazel/example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/bazel/example/main.cc -------------------------------------------------------------------------------- /glog/bazel/glog.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/bazel/glog.bzl -------------------------------------------------------------------------------- /glog/cmake/DetermineGflagsNamespace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/cmake/DetermineGflagsNamespace.cmake -------------------------------------------------------------------------------- /glog/cmake/FindUnwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/cmake/FindUnwind.cmake -------------------------------------------------------------------------------- /glog/cmake/GetCacheVariables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/cmake/GetCacheVariables.cmake -------------------------------------------------------------------------------- /glog/cmake/TestInitPackageConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/cmake/TestInitPackageConfig.cmake -------------------------------------------------------------------------------- /glog/cmake/TestPackageConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/cmake/TestPackageConfig.cmake -------------------------------------------------------------------------------- /glog/glog-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/glog-config.cmake.in -------------------------------------------------------------------------------- /glog/glog-modules.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/glog-modules.cmake.in -------------------------------------------------------------------------------- /glog/libglog.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/libglog.pc.in -------------------------------------------------------------------------------- /glog/src/base/commandlineflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/base/commandlineflags.h -------------------------------------------------------------------------------- /glog/src/base/googleinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/base/googleinit.h -------------------------------------------------------------------------------- /glog/src/base/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/base/mutex.h -------------------------------------------------------------------------------- /glog/src/config.h.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/config.h.cmake.in -------------------------------------------------------------------------------- /glog/src/config_for_unittests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/config_for_unittests.h -------------------------------------------------------------------------------- /glog/src/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/demangle.cc -------------------------------------------------------------------------------- /glog/src/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/demangle.h -------------------------------------------------------------------------------- /glog/src/demangle_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/demangle_unittest.cc -------------------------------------------------------------------------------- /glog/src/demangle_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/demangle_unittest.sh -------------------------------------------------------------------------------- /glog/src/demangle_unittest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/demangle_unittest.txt -------------------------------------------------------------------------------- /glog/src/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/glog/log_severity.h -------------------------------------------------------------------------------- /glog/src/glog/logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/glog/logging.h.in -------------------------------------------------------------------------------- /glog/src/glog/raw_logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/glog/raw_logging.h.in -------------------------------------------------------------------------------- /glog/src/glog/stl_logging.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/glog/stl_logging.h.in -------------------------------------------------------------------------------- /glog/src/glog/vlog_is_on.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/glog/vlog_is_on.h.in -------------------------------------------------------------------------------- /glog/src/googletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/googletest.h -------------------------------------------------------------------------------- /glog/src/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging.cc -------------------------------------------------------------------------------- /glog/src/logging_striplog_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging_striplog_test.sh -------------------------------------------------------------------------------- /glog/src/logging_striptest10.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging_striptest10.cc -------------------------------------------------------------------------------- /glog/src/logging_striptest2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging_striptest2.cc -------------------------------------------------------------------------------- /glog/src/logging_striptest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging_striptest_main.cc -------------------------------------------------------------------------------- /glog/src/logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging_unittest.cc -------------------------------------------------------------------------------- /glog/src/logging_unittest.err: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/logging_unittest.err -------------------------------------------------------------------------------- /glog/src/mock-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/mock-log.h -------------------------------------------------------------------------------- /glog/src/mock-log_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/mock-log_test.cc -------------------------------------------------------------------------------- /glog/src/package_config_unittest/working_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/package_config_unittest/working_config/CMakeLists.txt -------------------------------------------------------------------------------- /glog/src/package_config_unittest/working_config/glog_package_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/package_config_unittest/working_config/glog_package_config.cc -------------------------------------------------------------------------------- /glog/src/raw_logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/raw_logging.cc -------------------------------------------------------------------------------- /glog/src/signalhandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/signalhandler.cc -------------------------------------------------------------------------------- /glog/src/signalhandler_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/signalhandler_unittest.cc -------------------------------------------------------------------------------- /glog/src/signalhandler_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/signalhandler_unittest.sh -------------------------------------------------------------------------------- /glog/src/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace.h -------------------------------------------------------------------------------- /glog/src/stacktrace_generic-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_generic-inl.h -------------------------------------------------------------------------------- /glog/src/stacktrace_libunwind-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_libunwind-inl.h -------------------------------------------------------------------------------- /glog/src/stacktrace_powerpc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_powerpc-inl.h -------------------------------------------------------------------------------- /glog/src/stacktrace_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_unittest.cc -------------------------------------------------------------------------------- /glog/src/stacktrace_windows-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_windows-inl.h -------------------------------------------------------------------------------- /glog/src/stacktrace_x86-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_x86-inl.h -------------------------------------------------------------------------------- /glog/src/stacktrace_x86_64-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stacktrace_x86_64-inl.h -------------------------------------------------------------------------------- /glog/src/stl_logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/stl_logging_unittest.cc -------------------------------------------------------------------------------- /glog/src/symbolize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/symbolize.cc -------------------------------------------------------------------------------- /glog/src/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/symbolize.h -------------------------------------------------------------------------------- /glog/src/symbolize_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/symbolize_unittest.cc -------------------------------------------------------------------------------- /glog/src/utilities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/utilities.cc -------------------------------------------------------------------------------- /glog/src/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/utilities.h -------------------------------------------------------------------------------- /glog/src/utilities_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/utilities_unittest.cc -------------------------------------------------------------------------------- /glog/src/vlog_is_on.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/vlog_is_on.cc -------------------------------------------------------------------------------- /glog/src/windows/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/dirent.h -------------------------------------------------------------------------------- /glog/src/windows/glog/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/glog/log_severity.h -------------------------------------------------------------------------------- /glog/src/windows/glog/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/glog/logging.h -------------------------------------------------------------------------------- /glog/src/windows/glog/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/glog/raw_logging.h -------------------------------------------------------------------------------- /glog/src/windows/glog/stl_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/glog/stl_logging.h -------------------------------------------------------------------------------- /glog/src/windows/glog/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/glog/vlog_is_on.h -------------------------------------------------------------------------------- /glog/src/windows/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/port.cc -------------------------------------------------------------------------------- /glog/src/windows/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/port.h -------------------------------------------------------------------------------- /glog/src/windows/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/src/windows/preprocess.sh -------------------------------------------------------------------------------- /glog/toolchains/.gitignore: -------------------------------------------------------------------------------- 1 | # allow toolchain files to be tracked by git 2 | !*.cmake 3 | -------------------------------------------------------------------------------- /glog/toolchains/clang-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/clang-cxx17.cmake -------------------------------------------------------------------------------- /glog/toolchains/gcc-cxx11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/gcc-cxx11.cmake -------------------------------------------------------------------------------- /glog/toolchains/gcc-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/gcc-cxx17.cmake -------------------------------------------------------------------------------- /glog/toolchains/gcc-cxx98.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/gcc-cxx98.cmake -------------------------------------------------------------------------------- /glog/toolchains/gcc-gnuxx11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/gcc-gnuxx11.cmake -------------------------------------------------------------------------------- /glog/toolchains/linux-mingw-w64-cxx11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/linux-mingw-w64-cxx11.cmake -------------------------------------------------------------------------------- /glog/toolchains/linux-mingw-w64-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/linux-mingw-w64-cxx17.cmake -------------------------------------------------------------------------------- /glog/toolchains/linux-mingw-w64-gnuxx11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/linux-mingw-w64-gnuxx11.cmake -------------------------------------------------------------------------------- /glog/toolchains/mingw-cxx11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/mingw-cxx11.cmake -------------------------------------------------------------------------------- /glog/toolchains/mingw-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/mingw-cxx17.cmake -------------------------------------------------------------------------------- /glog/toolchains/mingw-gnuxx11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/mingw-gnuxx11.cmake -------------------------------------------------------------------------------- /glog/toolchains/vs-14-2015-sdk-8-1.cmake: -------------------------------------------------------------------------------- 1 | # set c++ standard 2 | set(CMAKE_SYSTEM_VERSION 8.1) 3 | -------------------------------------------------------------------------------- /glog/toolchains/vs-14-2015-win64.cmake: -------------------------------------------------------------------------------- 1 | # dummy, nothing extra to set 2 | -------------------------------------------------------------------------------- /glog/toolchains/vs-15-2017-win64-cxx17.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/glog/toolchains/vs-15-2017-win64-cxx17.cmake -------------------------------------------------------------------------------- /glog/toolchains/vs-15-2017-win64.cmake: -------------------------------------------------------------------------------- 1 | # dummy, nothing extra to set 2 | -------------------------------------------------------------------------------- /linefit_ground_segmentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/LICENSE -------------------------------------------------------------------------------- /linefit_ground_segmentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/README.md -------------------------------------------------------------------------------- /linefit_ground_segmentation/doc/kitti.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/doc/kitti.ply -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/CMakeLists.txt -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/include/ground_segmentation/bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/include/ground_segmentation/bin.h -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/include/ground_segmentation/ground_segmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/include/ground_segmentation/ground_segmentation.h -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/include/ground_segmentation/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/include/ground_segmentation/segment.h -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/package.xml -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/src/bin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/src/bin.cc -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/src/ground_segmentation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/src/ground_segmentation.cc -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation/src/segment.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation/src/segment.cc -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/CMakeLists.txt -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/launch/segmentation.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/launch/segmentation.launch -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/launch/segmentation_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/launch/segmentation_params.yaml -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/launch/test.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/launch/test.launch -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/package.xml -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/src/ground_segmentation_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/src/ground_segmentation_node.cc -------------------------------------------------------------------------------- /linefit_ground_segmentation/linefit_ground_segmentation_ros/src/ground_segmentation_test_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangCongQing/linefit_ground_segmentation_details/HEAD/linefit_ground_segmentation/linefit_ground_segmentation_ros/src/ground_segmentation_test_node.cc --------------------------------------------------------------------------------