Skip to content

Instantly share code, notes, and snippets.

@nassarofficial
nassarofficial / Assignment 3
Created March 30, 2016 21:32
Assignment 3
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Papoulis-Gerchberg algorithm"
]
},
{
{
"cells": [
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Horn-Shunk"
]
},
{
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Lucas Kanade"
]
},
{
@nassarofficial
nassarofficial / Active Contour Model Greedy Implementation
Created May 1, 2016 16:06
Active Contour Model Greedy Implementation
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Active Contour Model Greedy Algorithm By William and Shah"
]
},
{
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Active Contour Model Greedy Algorithm By William and Shah"
]
},
{
@nassarofficial
nassarofficial / Linear Programming | Image Denoising
Created May 21, 2016 18:20
Linear Programming | Image Denoising
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Linear Programming | Image Denoising"
]
},
{
@nassarofficial
nassarofficial / gpu_setup.sh
Last active July 27, 2017 11:59
gcloud bash script GPU CUDNN KERAS
cd ~/
### CUDA
echo "\n\nChecking for CUDA and installing."
if ! dpkg-query -W cuda; then
curl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
sudo dpkg -i ./cuda-repo-ubuntu1604_8.0.61-1_amd64.deb
sudo apt-get update
sudo apt-get install cuda -y
fi