Skip to content

Instantly share code, notes, and snippets.

View ArghyaChatterjee's full-sized avatar
🏠
Computer Vision, AI, Robotics & Systems, Data Science & Astronomy Researcher

Arghya Chatterjee ArghyaChatterjee

🏠
Computer Vision, AI, Robotics & Systems, Data Science & Astronomy Researcher
View GitHub Profile
@ArghyaChatterjee
ArghyaChatterjee / install_pcl_vtk.sh
Created May 15, 2022 08:08 — forked from planetceres/install_pcl_vtk.sh
Install PCL and VTK Ubunt 18.04
#!/usr/bin/env bash
# PCL
sudo apt install libpcl-dev
# VTK
# Ref: https://discourse.vtk.org/t/installing-vtk-in-ubuntu-18-04/2147/4
sudo apt install cmake \
@ArghyaChatterjee
ArghyaChatterjee / camera_tf.launch
Created March 12, 2022 21:37 — forked from bsubei/camera_tf.launch
static tf publisher launch file for camera
<launch>
<node pkg="tf" type="static_transform_publisher" name="camera_to_optical_tf" args="0 0 0 -1.570796 0 -1.570796 camera camera_optical 10" />
<!-- TODO set these actual transform values based on real robot!!! -->
<node pkg="tf" type="static_transform_publisher" name="base_footprint_to_base_link" args="0 0 0 0 0 0 base_footprint base_link 10" />
<node pkg="tf" type="static_transform_publisher" name="base_link_to_camera_tf" args="0 0 1.0 0 0.78539816339 0 base_link camera 10" />
</launch>
@ArghyaChatterjee
ArghyaChatterjee / install virtualenv ubuntu 16.04.md
Created March 14, 2021 13:41 — forked from Geoyi/install virtualenv ubuntu 16.04.md
How to install virtual environment on ubuntu 16.04

How to install virtualenv:

Install pip first

sudo apt-get install python3-pip

Then install virtualenv using pip3

sudo pip3 install virtualenv 
@ArghyaChatterjee
ArghyaChatterjee / tmux.conf
Created September 25, 2020 16:31 — forked from marioaquino/tmux.conf
This tmux config includes mouse click for window selection, wheel scrolling, custom leader key, and OS-level copy/paste support
# Make Ctrl+\ the tmux leader combination
unbind C-b
set -g prefix "C-\\"
bind "C-\\" send-prefix
setw -g xterm-keys on
set -g default-terminal "screen-256color"
set -sg escape-time 0
set -g base-index 1
Around 80 applicants, this playlist found 54 Conceptual Design Review videos (one is hosted on vimeo but there is a video link to it):
https://www.youtube.com/playlist?list=PLfRlBDdqxV8II-dl_kMsYeMaW4dhA2Amo
[![uWaterloo](https://img.youtube.com/vi/xi5wFZ1SiKU/0.jpg)](https://www.youtube.com/watch?v=xi5wFZ1SiKU)
#ROSpiration
@ArghyaChatterjee
ArghyaChatterjee / Install_OpenCV4_CUDA10.md
Created April 4, 2020 17:15 — forked from raulqf/Install_OpenCV4_CUDA12.6_CUDNN8.9.md
How to install OpenCV 4.2 with CUDA 10.0 in Ubuntu 18.04

How to install OpenCV 4.2.0 with CUDA 10.0 in Ubuntu distro 18.04

First of all install update and upgrade your system:

    $ sudo apt update
    $ sudo apt upgrade

Then, install required libraries:

Aruco marker-based OpenCV distance measurement