Skip to content

Instantly share code, notes, and snippets.

View minhoolee's full-sized avatar
🐢
Working on myself slowly but surely

Mark Lee minhoolee

🐢
Working on myself slowly but surely
View GitHub Profile
@minhoolee
minhoolee / ColorShooter.java
Created May 19, 2015 08:24
Code for the game "Arcus Coelestis"
/**
* Author: Min Hoo Lee
* Date: March 20, 2015 - May 19, 2015 (start to end)
*
* Description:
* ColorShooter.java is the program containing the game "Arcus Coelestis".
* This game was created and designed for the Game-In-5-Weeks Project.
* It involves the user controlling a cannon to shoot colored balls
* (specified by HSV sliders) at randomly colored balls
* located in the top of the screen. If the ball hits a ball of the same color,
// Interesting dilemma in which Egyptian style is worse in performance
// than Allman style (brackets on seperate lines)
// Egyptian Style
void MyFunction(
int parameterOne,
int parameterTwo) {
int localOne,
int localTwo
}
@minhoolee
minhoolee / MVRT Vision Trainings Examples Week 4
Last active October 20, 2015 03:05
MVRT Vision Trainings Examples
We couldn’t find that file to show.
@minhoolee
minhoolee / MVRT Vision Trainings Examples Week 5
Last active October 26, 2015 21:53
MVRT Vision Trainings Examples
We couldn’t find that file to show.
We couldn’t find that file to show.
@minhoolee
minhoolee / MVRT Vision Trainings Examples Week 7
Created November 8, 2015 02:13
MVRT Vision Trainings Examples
We couldn’t find that file to show.
@minhoolee
minhoolee / MVRT Vision Trainings Examples Week 8
Last active November 16, 2015 08:33
MVRT Vision Trainings Week 8
We couldn’t find that file to show.
#! /bin/sh
# Install script for OpenCV on the Jetson TK1
# Written by Min Hoo Lee
# December 19, 2015 (12/19/15)
echo "\nOpenCV Install Script for Ubuntu\n"
# Activate all the apt-get repositories
echo "\nAdding all apt-get repositories\n"
sudo add-apt-repository main
@minhoolee
minhoolee / install-opencv.sh
Last active January 13, 2016 04:44
Ubuntu OpenCV Installation Scripts
#! /bin/sh
# Install script for OpenCV on Ubuntu 14.04
# Written by Min Hoo Lee
# November 28, 2015 (11/28/15)
echo "\nOpenCV Install Script for Ubuntu\n"
# Activate all the apt-get repositories
echo "\nAdding all apt-get repositories\n"
sudo add-apt-repository main
#! /bin/sh
# Install script for Grinch Kernel 21.3, CUDA 6.5, OpenCV4Tegra 21.2 for the NVIDIA Jetson TK1
# Warning: This script is specific for L4T 21.4 (https://developer.nvidia.com/linux-tegra-r214)
# Please substitute the correct versions of the deb files and Grinch kernel for the latest version
# Written by Min Hoo Lee
# March 14, 2016 (3/14/16)
read -p "Have you installed the latest Grinch Kernel [y/n] " -n 1 -r
echo # move to a new line
if [[ ! $REPLY =~ ^[Yy]$ ]]