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 / 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
@minhoolee
minhoolee / Makefile.config
Last active January 11, 2017 08:07
Caffe Makefile
## Refer to http://caffe.berkeleyvision.org/installation.html
# Contributions simplifying and improving our build system are welcome!
# cuDNN acceleration switch (uncomment to build with cuDNN).
USE_CUDNN := 1
# CPU-only switch (uncomment to build without GPU support).
# CPU_ONLY := 1
# uncomment to disable IO dependencies and corresponding data layers
@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.
@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.
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.
@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.
[ 0%] Built target opencv_hal_pch_dephelp
[ 0%] [ 0%] Built target opencv_ts_pch_dephelp
Built target opencv_core_pch_dephelp
[ 1%] [ 1%] Built target opencv_imgproc_pch_dephelp
[ 1%] Built target opencv_imgcodecs_pch_dephelp
Built target opencv_highgui_pch_dephelp
[ 5%] Built target libwebp
[ 5%] [ 5%] Built target opencv_videoio_pch_dephelp
[ 5%] Built target opencv_perf_core_pch_dephelp
Built target opencv_test_core_pch_dephelp
@minhoolee
minhoolee / .cvimrc
Last active September 12, 2018 10:50
" Settings
"set nohud
set smoothscroll
set typelinkhints
set cncpcompletion
set autoupdategist
set nochangelog
let searchlimit = 45
let scrollstep = 150
// 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
}