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
#! /bin/bash
# Written by Mark Lee (github.com/minhoolee), August 9, 2018
set -e
# Define the directory that contains specific file structure
# Must be DEFECTS > SAMPLES > MODEL_IMAGES
test_dir=./data
# Define the model names
@minhoolee
minhoolee / install-opencv-with-python.sh
Created January 11, 2017 07:06
Install the latest version of OpenCV (by building from source) with the extra opencv_contrib modules added. Python support is optional.
#! /bin/sh
# Install script for the latest version of OpenCV with python support and the extra modules added
# If installing with python, make sure to start the virtualenv before running the script
# Tested on Ubuntu 16.04 LTS, x64
# Written by Min Hoo Lee
# December 28, 2016 (12/28/2016)
# Exit script on failure
set -e
@arunmallya
arunmallya / rf.ipynb
Last active March 30, 2023 09:29
A Jupyter notebook to get the receptive field and effective stride of layers in a CNN. Supports dilated convolutions as well.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@joelouismarino
joelouismarino / googlenet.py
Last active October 9, 2023 07:09
GoogLeNet in Keras
from __future__ import print_function
import imageio
from PIL import Image
import numpy as np
import keras
from keras.layers import Input, Dense, Conv2D, MaxPooling2D, AveragePooling2D, ZeroPadding2D, Dropout, Flatten, Concatenate, Reshape, Activation
from keras.models import Model
from keras.regularizers import l2
from keras.optimizers import SGD
@minhoolee
minhoolee / install-mjpg-streamer.sh
Last active January 11, 2017 08:06
install-mjpg-streamer.sh
#! /bin/sh
# Install script for mjpg-streamer
# Written by Min Hoo Lee
# March 27, 2016 (3/27/16)
# Install dependencies
sudo apt-get install imagemagick libv4l-dev libjpeg-dev
git clone https://github.com/codewithpassion/mjpg-streamer.git
cd mjpg-streamer/mjpg-streamer
@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 / .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