Skip to content

Instantly share code, notes, and snippets.

View StepTurtle's full-sized avatar

Barış Zeren StepTurtle

  • Yıldız Technical University
  • Istanbul
  • 03:57 (UTC +03:00)
View GitHub Profile
@StepTurtle
StepTurtle / CMakeLists.txt
Last active June 11, 2024 15:41
RTMDet TensorRT Python Deploy
cmake_minimum_required(VERSION 3.10)
project(RTMDet)
set_property(TARGET ${PROJECT_NAME} PROPERTY CXX_STANDARD 11)
# Find OpenCV
find_package(OpenCV REQUIRED)
# Set the CUDA paths. Update this path to your CUDA installation.
set(CUDA_TOOLKIT_ROOT_DIR /usr/local/cuda-11.8)
@StepTurtle
StepTurtle / RTMDet_Python.md
Last active June 11, 2024 12:02
RTMDet TensorRT Python Deploy

With this Python scripts, you can infer your images with RTMDet TensorRT models.

From this link you can get Python models and convert them to ONNX and TensorRT models

You need following files to run this script:

  1. TensorRT Model: You can create from the link
  2. mmdetection tensorrt plugin: it created with mmdeploy and you should load this plugin in script (line 61) (it locates under mmdeploy/mmdeploy/lib after you compile mmdeploy).
  3. image: any image
@StepTurtle
StepTurtle / lio_sam_color_map.md
Last active December 5, 2023 12:22
Create colorful maps with LIO-SAM

Introduction

This documentation shows you how can you create color maps with LIO-SAM. LIO-SAM is a real-time lidar-inertial odometry package. With our modifications you can create color maps using your multiple number of cameras. You can reach our fork with this link

system

Required Data

@StepTurtle
StepTurtle / lio_sam_with_object_removal.md
Last active August 14, 2024 09:04
Create LIO-SAM map with object removal
@StepTurtle
StepTurtle / install-open3d.sh
Last active May 30, 2022 10:06 — forked from mebasoglu/install-open3d.sh
Open3D installer script
#! /usr/bin/env bash
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
BLUE='\033[0;34m'
PURPLE='\033[0;35m'
NC='\033[0m' # No Color
# Emojis