ros2_bag_exporter

(★ 107)

ROS2 Bag Exporter is a versatile ROS 2 c++ package designed to export ROS 2 bag files (rosbag2) into various formats, including images, point cloud data (PCD) files, IMU data, and GPS data. This tool facilitates the extraction and conversion of data from bag files for analysis, visualization, and processing outside the ROS ecosystem.

오너의 다른 레포

YOLOs-CPP ★ 1,071

Cross-Platform Production-ready C++ inference engine for YOLO models (v5-v12, YOLO26). Unified API for detection, segmentation, pose estimation, OBB, and classification. Built on ONNX Runtime and OpenCV. Optimized for CPU/GPU with quantization support.

C++
ros2_yolos_cpp ★ 152

ROS2 adapters for the Cross-Platform Production-ready C++ inference engine for YOLO models (v5-v12, YOLO26). Unified API for detection, segmentation, pose estimation, OBB, and classification. Built on ONNX Runtime and OpenCV. Optimized for CPU/GPU with quantization support.

C++
CloudPeek ★ 124

CloudPeek is a lightweight, cross-platform, single-header C++ point cloud viewer. It’s designed for simplicity and efficiency, requiring no heavy libraries like PCL or Open3D. Ideal for visualizing and interacting with 3D data from LiDAR, photogrammetry, or other datasets, CloudPeek delivers powerful, real-time exploration in a minimalistic package

C++
Depths-CPP ★ 120

A high-performance C++ header and application for real-time metric depth estimation, using models from Depth-Anything-V3. Powered by ONNX Runtime and OpenCV, it supports seamless inference for images, videos, and live camera feeds. Designed for flexibility and efficiency with execution options for TensorRT, CUDA, or CPU to suit various performance

C++
YOLOs-CPP-TensorRT ★ 82

YOLOs-TRT is a header-only C++ library for running all YOLO models with all tasks with NVIDIA TensorRT on CUDA GPUs and Jetson. It features GPU preprocessing (letterbox/normalize/HWC→NCHW), CUDA Graph replay, FP16/INT8 support, and sub-2ms end-to-end latency with 530+fps.

C++
dynamic_lidar_interpolation ★ 48

A high-performance ROS2 package for real-time interpolation of 3D LiDAR point clouds. Developed in C++, it supports dynamic configurations, multiple interpolation methods (Bilinear, Bilateral, Spline, etc.), noise reduction, and seamless integration into robotics pipelines. Ideal for SLAM, sensor fusion, and autonomous systems.

C++

파일 탐색기

  • CMakeLists.txt
  • package.xml
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

sqlite3

설명 보기 ▼

SQLite 3의 명령줄 인터페이스로, 자체 포함 파일 기반 임베디드 SQL 엔진입니다.
더 많은 정보: <https://sqlite.org/cli.html>.

sqlite3

새 데이터베이스로 대화형 셸 시작:

sqlite3 {{path/to/database.sqlite3}}

기존 데이터베이스로 대화형 셸 열기:

sqlite3 {{path/to/database.sqlite3}} '{{SELECT * FROM some_table;}}'

데이터베이스에 SQL 문 실행 후 종료:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

apt

설명 보기 ▼

Debian 기반 배포판을 위한 패키지 관리 도구.
Ubuntu 16.04 이후 버전에서 대화형 사용 시 `apt-get`의 권장 대체 도구.
다른 패키지 관리자의 동등한 명령을 보려면 <https://wiki.archlinux.org/title/Pacman/Rosetta>.
더 많은 정보: <https://manned.org/apt.8>.

sudo apt update

사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt` 명령어 실행 전 권장):

apt search {{package}}

주어진 패키지 검색:

apt list {{package}}

패키지 정보 표시:

# 프로젝트 배지

  • ROS2 Bag Exporter ROS2 Bag Exporter
  • License License
  • ROS2 Version ROS2 Version
  • Issues Issues
// repository documentation