├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── doc ├── CATEC.png └── FADA.png ├── include └── ouster_ros │ ├── client │ ├── client.h │ ├── compat.h │ ├── impl │ │ ├── client_impl.h │ │ └── packet_impl.h │ ├── lidar_scan.h │ ├── packet.h │ ├── types.h │ └── version.h │ ├── packets_queue.h │ ├── parameters.h │ ├── point.h │ ├── ros.h │ └── viz │ ├── autoexposure.h │ └── beam_uniformity.h ├── launch └── ouster.launch ├── msg └── PacketMsg.msg ├── package.xml ├── scripts └── lidar_ptp.sh └── src ├── client ├── client.cpp ├── compat.cpp ├── lidar_scan.cpp └── types.cpp ├── os_img_node.cpp ├── os_node.cpp ├── packets_queue.cpp ├── parameters.cpp └── ros.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/README.md -------------------------------------------------------------------------------- /doc/CATEC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/doc/CATEC.png -------------------------------------------------------------------------------- /doc/FADA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/doc/FADA.png -------------------------------------------------------------------------------- /include/ouster_ros/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/client.h -------------------------------------------------------------------------------- /include/ouster_ros/client/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/compat.h -------------------------------------------------------------------------------- /include/ouster_ros/client/impl/client_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/impl/client_impl.h -------------------------------------------------------------------------------- /include/ouster_ros/client/impl/packet_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/impl/packet_impl.h -------------------------------------------------------------------------------- /include/ouster_ros/client/lidar_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/lidar_scan.h -------------------------------------------------------------------------------- /include/ouster_ros/client/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/packet.h -------------------------------------------------------------------------------- /include/ouster_ros/client/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/types.h -------------------------------------------------------------------------------- /include/ouster_ros/client/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/client/version.h -------------------------------------------------------------------------------- /include/ouster_ros/packets_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/packets_queue.h -------------------------------------------------------------------------------- /include/ouster_ros/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/parameters.h -------------------------------------------------------------------------------- /include/ouster_ros/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/point.h -------------------------------------------------------------------------------- /include/ouster_ros/ros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/ros.h -------------------------------------------------------------------------------- /include/ouster_ros/viz/autoexposure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/viz/autoexposure.h -------------------------------------------------------------------------------- /include/ouster_ros/viz/beam_uniformity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/include/ouster_ros/viz/beam_uniformity.h -------------------------------------------------------------------------------- /launch/ouster.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/launch/ouster.launch -------------------------------------------------------------------------------- /msg/PacketMsg.msg: -------------------------------------------------------------------------------- 1 | uint8[] buf 2 | -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/package.xml -------------------------------------------------------------------------------- /scripts/lidar_ptp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/scripts/lidar_ptp.sh -------------------------------------------------------------------------------- /src/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/client/client.cpp -------------------------------------------------------------------------------- /src/client/compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/client/compat.cpp -------------------------------------------------------------------------------- /src/client/lidar_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/client/lidar_scan.cpp -------------------------------------------------------------------------------- /src/client/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/client/types.cpp -------------------------------------------------------------------------------- /src/os_img_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/os_img_node.cpp -------------------------------------------------------------------------------- /src/os_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/os_node.cpp -------------------------------------------------------------------------------- /src/packets_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/packets_queue.cpp -------------------------------------------------------------------------------- /src/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/parameters.cpp -------------------------------------------------------------------------------- /src/ros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catec/ouster_ros/HEAD/src/ros.cpp --------------------------------------------------------------------------------