Skip to content

Instantly share code, notes, and snippets.

View eungbean's full-sized avatar
🥰
Motivated

Eungbean Lee eungbean

🥰
Motivated
View GitHub Profile
@eungbean
eungbean / ELSA.sh
Last active December 13, 2018 02:32
ELSA shell script
#!/usr/bin/env bash
#http://github.com/gyukebox/ELSA-server
#http://github.com/gyukebox/ELSA-client
#http://github.com/gyukebox/ELSA-situation-recognition
#ELSA-server
echo "ELSA-SERVER:"
source ELSA-environment/bin/activate
python ELSA-server/manage.py runserver
@eungbean
eungbean / opencv-3.4.0-install-script.sh
Last active June 22, 2023 05:51
Opencv 3.4.0 One-click Install Script
sudo apt-get purge libopencv* python-opencv
sudo apt-get autoremove
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y -y build-essential cmake
sudo apt-get install -y pkg-config
sudo apt-get install -y libjpeg-dev libtiff5-dev libjasper-dev libpng12-dev
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev libxvidcore-dev libx264-dev libxine2-dev
@eungbean
eungbean / opencv-cudasupport-install.sh
Created November 13, 2018 08:30
OpenCV One-Click Install Script (with CUDA Support)
######################################
# INSTALL OPENCV ON UBUNTU OR DEBIAN #
######################################
# To complete this step, please visit ''.
# Please Modify Desired OPENCV_VERSION Below
# | THIS SCRIPT IS TESTED CORRECTLY ON |
# |------------------------------------------------------|
# | OS | OpenCV | Test | Last test |
# |------------------|--------------|------|-------------|
@eungbean
eungbean / opencv-install.sh
Last active January 9, 2022 20:05
OpenCV One-Click Install Script
# To complete this step, please visit ''.
# Please Modify Desired OPENCV_VERSION Below
# VERSION TO BE INSTALLED
OPENCV_VERSION='3.4.0'
######################################
# INSTALL OPENCV ON UBUNTU OR DEBIAN #
######################################