Skip to content

Instantly share code, notes, and snippets.

View kenichimiki's full-sized avatar

MIKI-IE kenichimiki

View GitHub Profile
@kenichimiki
kenichimiki / Build_OpenCV.sh
Last active June 11, 2020 04:06
Build OpenCV with NVIDIA CuDNN on Nvidia Jetson Nano
#!/usr/bin/env bash
# 2020 miki-ie.com
set -e
# change default constants here:
readonly PREFIX=/usr/local # install prefix, (can be ~/.local for a user install)
readonly DEFAULT_VERSION=4.3.0 # controls the default version (gets reset by the first argument)
readonly CPUS=$(nproc) # controls the number of jobs
@kenichimiki
kenichimiki / Build_OpenCV_with_cuDNN_for_Jetson_Nano
Created May 30, 2020 20:50
Build OpenCV with NVIDIA CuDNN on Nvidia Jetson Nano
#!/usr/bin/env bash
# 2020 miki-ie.com
set -e
# change default constants here:
readonly PREFIX=/usr/local # install prefix, (can be ~/.local for a user install)
readonly DEFAULT_VERSION=4.3.0 # controls the default version (gets reset by the first argument)
readonly CPUS=$(nproc) # controls the number of jobs