Skip to content

Instantly share code, notes, and snippets.

View AlePuglisi's full-sized avatar
🪸
Let's protect the ocean with Robots !

Alessandro Puglisi AlePuglisi

🪸
Let's protect the ocean with Robots !
View GitHub Profile
@greenbrettmichael
greenbrettmichael / Notes.md
Last active November 29, 2025 20:23
Building Colmap and Glomap with CUDA support

This is a bit fragile and hacky to setup at the moment. Two things should happen to improve this configuration process

  1. CMAKE improvements to finding CuDSS. Alternatively, it would be easy enough to write a FindCuDSS.cmake for ceres that looks in standard install locations.
  2. Release of Ceres 2.3. Glomap is dependent on Ceres 2.3 for GPU support, however this version does not have an official release. It would be straightforward to update the official vcpkg port once the version is released.
@SaeedDev94
SaeedDev94 / nvidia-driver.sh
Last active October 21, 2025 10:27
Manual nvidia driver installation on Ubuntu desktop 24.04 LTS
# Guide ref
# https://www.if-not-true-then-false.com/2021/debian-ubuntu-linux-mint-nvidia-guide
# This is not a real script !!
# Do not run it !!
# Check if secure boot disabled
mokutil --sb-state
# Get GPU model
lspci | grep "VGA"
@SebastianGrans
SebastianGrans / pcd_subscriber_node.py
Created July 27, 2020 16:29
ROS2 Node that subscribes to PointCloud2 messages and visualizes them using Open3D.
import sys
import os
import rclpy
from rclpy.node import Node
import sensor_msgs.msg as sensor_msgs
import numpy as np
import open3d as o3d