Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Difftaichi | 2,261 | 19 days ago | 16 | |||||||
10 differentiable physical simulators built with Taichi differentiable programming (DiffTaichi, ICLR 2020) | ||||||||||
Cupoch | 665 | 1 | a month ago | 30 | June 02, 2022 | 20 | mit | C++ | ||
Robotics with GPU computing | ||||||||||
Isaac_ros_visual_slam | 435 | 2 days ago | 14 | apache-2.0 | C++ | |||||
Visual odometry package based on hardware-accelerated NVIDIA Elbrus library with world class quality and performance. | ||||||||||
Visual Pushing Grasping | 383 | 3 years ago | 38 | bsd-2-clause | Python | |||||
Train robotic agents to learn to plan pushing and grasping actions for manipulation with deep reinforcement learning. | ||||||||||
Bonnet | 250 | 3 years ago | 12 | gpl-3.0 | Python | |||||
Bonnet: An Open-Source Training and Deployment Framework for Semantic Segmentation in Robotics. | ||||||||||
Isaac_ros_nvblox | 202 | 2 days ago | 10 | apache-2.0 | C++ | |||||
Hardware-accelerated 3D scene reconstruction and Nav2 local costmap provider using nvblox | ||||||||||
Optical Flow Filter | 133 | 3 years ago | 2 | bsd-3-clause | Jupyter Notebook | |||||
A real time optical flow algorithm implemented on GPU | ||||||||||
Robotic_processing_unit | 95 | 2 months ago | ||||||||
A robot-specific processing unit. Contains CPUs, FPGAs and GPUs and maps ROS efficiently to them for best performance. | ||||||||||
Titan | 72 | 3 years ago | 5 | other | Cuda | |||||
A high-performance CUDA-based physics simulation sandbox for soft robotics and reinforcement learning. | ||||||||||
Benchmarks | 48 | 2 days ago | 6 | apache-2.0 | Python | |||||
Benchmarking suite to evaluate 🤖 robotics computing performance. Vendor-neutral. |
Cupoch is a library that implements rapid 3D data processing for robotics using CUDA.
The goal of this library is to implement fast 3D data computation in robot systems. For example, it has applications in SLAM, collision avoidance, path planning and tracking. This repository is based on Open3D.
This library is packaged under 64 Bit Ubuntu Linux 20.04 and CUDA 11.7. You can install cupoch using pip.
pip install cupoch
Or install cupoch from source.
git clone https://github.com/neka-nat/cupoch.git --recurse
cd cupoch
mkdir build
cd build
cmake ..; make install-pip-package -j
You can also install cupoch using pip on Jetson Nano. Please set up Jetson using jetpack and install some packages with apt.
sudo apt-get install libxinerama-dev libxcursor-dev libglu1-mesa-dev
pip3 install cupoch
Or you can compile it from source. Update your version of cmake if necessary.
wget https://github.com/Kitware/CMake/releases/download/v3.18.4/cmake-3.18.4.tar.gz
tar zxvf cmake-3.18.4.tar.gz
cd cmake-3.18.4
./bootstrap -- -DCMAKE_USE_OPENSSL=OFF
make && sudo make install
cd ..
git clone -b jetson_nano https://github.com/neka-nat/cupoch.git --recurse
cd cupoch/
mkdir build
cd build/
export PATH=/usr/local/cuda/bin:$PATH
cmake -DBUILD_GLEW=ON -DBUILD_GLFW=ON -DBUILD_PNG=ON -DBUILD_JSONCPP=ON ..
sudo make install-pip-package
Setting default container runtime to nvidia-container-runtime.
Edit or create the /etc/docker/daemon.json
.
{
"runtimes": {
"nvidia": {
"path": "/usr/bin/nvidia-container-runtime",
"runtimeArgs": []
}
},
"default-runtime": "nvidia"
}
Restart docker daemon.
sudo systemctl restart docker
docker-compose up -d
# xhost +
docker exec -it cupoch bash
Please see how to use cupoch in Getting Started first.
The figure shows Cupoch's point cloud algorithms speedup over Open3D. The environment tested on has the following specs:
You can get the result by running the example script in your environment.
cd examples/python/basic
python benchmarks.py
This demo works in the following environment.
# Launch roscore and rviz in the other terminals.
cd examples/python/ros
python realsense_rgbd_odometry_node.py
Point Cloud | Triangle Mesh | Kinematics |
---|---|---|
![]() |
![]() |
![]() |
Voxel Grid | Occupancy Grid | Distance Transform |
---|---|---|
![]() |
![]() |
![]() |
Graph | Image |
---|---|
![]() |
![]() |
@misc{cupoch,
author = {Kenta Tanaka},
year = {2020},
note = {https://github.com/neka-nat/cupoch},
title = {cupoch -- Robotics with GPU computing}
}