This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Settings | |
"set nohud | |
set smoothscroll | |
set typelinkhints | |
set cncpcompletion | |
set autoupdategist | |
set nochangelog | |
let searchlimit = 45 | |
let scrollstep = 150 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 | |
} |