Skip to content

Instantly share code, notes, and snippets.

View mitsudome-r's full-sized avatar

Ryohsuke Mitsudome mitsudome-r

View GitHub Profile
@mitsudome-r
mitsudome-r / AutomatedScriptInstruction.md
Created December 6, 2024 15:35
Automated Script for CES DEMO 2025

Preparation

Please follow the CES Planning Demo Instruction to setup the environment and confirm that the containers work manually.

If you haven't updated the workspace please update it by the following commands

cd openadkit_demo.autoware
git checkout ces2025
git pull
@mitsudome-r
mitsudome-r / ces2025_planning_demo_new.md
Last active December 19, 2024 04:07
CES Planning Demo (New)

Open AD Kit CES 2025 Demo Instructions (NEW)

Preparation

Git Install

sudo apt update
sudo apt install git
@mitsudome-r
mitsudome-r / ces2025_trt_lightnet_demo.md
Last active November 21, 2024 23:44
Demo instructions for trt-lightnet

CES 2025 Perception Demo Instructions

Preparation

Git Install

sudo apt update
sudo apt install git
@mitsudome-r
mitsudome-r / ces2025_demo_old.md
Last active December 5, 2024 18:27
Instructions for TIER IV CES2025 Demo on Anvil

NEW VERSION IS AVIALABLE HERE

Open AD Kit CES 2025 Demo Instructions (OLD)

Preparation

Git Install

sudo apt update
@mitsudome-r
mitsudome-r / convert_pointcloud_types.py
Created August 14, 2024 10:17
This converts rosbags with old pointcloud type to new pointcloud type
import os
from pathlib import Path
import sys
import argparse
from rclpy.serialization import deserialize_message, serialize_message
from rosidl_runtime_py.utilities import get_message
from sensor_msgs.msg import PointCloud2, PointField
import rosbag2_py # noqa
import numpy as np