Skip to content

Instantly share code, notes, and snippets.

@ProGamerGov
ProGamerGov / linear-color-transfer.py
Created February 16, 2017 17:41
This script performs the linear color transfer step that the Scale Control feature in leongatys/NeuralImageSynthesis performs.
#This script performs the linear color transfer step that
#leongatys/NeuralImageSynthesis' Scale Control code performs.
#https://github.com/leongatys/NeuralImageSynthesis/blob/master/ExampleNotebooks/ScaleControl.ipynb
import scipy
import h5py
import skimage
import os
from skimage import io,transform,img_as_float
from skimage.io import imread,imsave
from collections import OrderedDict
@ProGamerGov
ProGamerGov / neural_style_criterion.lua
Created March 2, 2017 23:15
Testing a new "criterion" parameter
require 'torch'
require 'nn'
require 'image'
require 'optim'
require 'loadcaffe'
local cmd = torch.CmdLine()
@ProGamerGov
ProGamerGov / laplacian.py
Last active April 21, 2017 10:39
Working Laplacian Creator
# Standalone version of the Matting Laplacian code from here: https://github.com/martinbenson/deep-photo-styletransfer
# Usage: python3 laplacian.py -in_dir <directory> -lap_dir <directory> -width <value>
# Install the depdendencies with: pip3 install numpy scipy Pillow
# This script is intended for use with artistic style transfer neural networks, and Deep Photo Style Transfer.
import argparse
import glob
import os
import shutil
import multiprocessing
@ProGamerGov
ProGamerGov / neural-channels.lua
Last active May 18, 2017 22:16 — forked from htoyryla/neural-channels.lua
Neural-style with selected channels emphasis
-- modified version of @jcjohnson's neural-style
-- by @htoyryla 14 May 2017
-- allows exploring th effect of giving emphasis to specific channel(s) in a style layer
-- use -style_layers to select layer as usual, using a single layer is recommended
-- -style_channels to specify one or more channels to be given emphasis, other channels will be attenuated
-- if a channel does not exist in a layer, it is ignored and given a warning
-- note: if multiple style layers are used, style_channels setting affects both
require 'torch'
require 'nn'
require 'torch'
require 'nn'
require 'image'
require 'optim'
require 'loadcaffe'
local cmd = torch.CmdLine()
-- Original DeepDream code by github.com/jcjohnson
-- Simaltaneous DeepDream and style transfer modifications by github.com/ProGamerGov
-- The FC layers as content layers feature, and the label file features come from:
-- github.com/htoyryla's gist.github.com/htoyryla/806ca4d978f0528114282cd00022ad71
-- Indepdent layer weights from: https://github.com/htoyryla/neural-style/blob/master/neural_style.lua
-- Torch model and architecture support from https://github.com/szagoruyko/neural-style/tree/torch
-- Matting laplacian code from: github.com/martinbenson/deep-photo-styletransfer/
-- Original DeepDream code by github.com/jcjohnson
-- Simaltaneous DeepDream and style transfer modifications by github.com/ProGamerGov
-- The FC layers as content layers feature, and the label file features come from:
-- github.com/htoyryla's gist.github.com/htoyryla/806ca4d978f0528114282cd00022ad71
-- Indepdent layer weights from: https://github.com/htoyryla/neural-style/blob/master/neural_style.lua
-- Torch model and architecture support from https://github.com/szagoruyko/neural-style/tree/torch
-- A script like this one is requires for making Torch models compatible: https://gist.github.com/szagoruyko/8828e09cc4687afd324d
@ProGamerGov
ProGamerGov / neural_style_l2_dd_fc_labels_t7.lua
Last active June 11, 2017 22:33
New features include ".t7" Torch7 model support, Inception, ResNet, etc... architecture support, DeepDream, FC layers (caffemodels only) can be used as content layers and DeepDream layers, the ability to use label files, and an experimental pixel decay/L2 latent state regularizer.
-- Original DeepDream code by github.com/jcjohnson
-- Simaltaneous DeepDream and style transfer modifications by github.com/ProGamerGov
-- The FC layers as content layers feature, and the label file features come from:
-- github.com/htoyryla's gist.github.com/htoyryla/806ca4d978f0528114282cd00022ad71
-- Torch model and architecture support from https://github.com/szagoruyko/neural-style/tree/torch
require 'torch'
require 'nn'
@ProGamerGov
ProGamerGov / cuda_utils.cu
Last active June 11, 2017 23:22
Neural-Style with the laplacian feature from deep-photo-styletransfer. See the comments for setting up and using the new feature.
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
#include "luaT.h"
#include "THC.h"
#include <stdio.h>
@ProGamerGov
ProGamerGov / neural_style_laplacian.lua
Last active June 11, 2017 23:38
Neural-Style with the laplacian feature from deep-photo-styletransfer. See the comments for setting up and using the new feature.
-- Matting laplacian code from: github.com/martinbenson/deep-photo-styletransfer/
-- Generate the laplacian with: https://gist.github.com/ProGamerGov/290f26afccc5e013d1a8425ef6a594f2
-- More details can be found in this gist: https://gist.github.com/ProGamerGov/d3988b914c92220ae45aa5bb1e31d6a7
-- The original Neural Style code can be found here: https://github.com/jcjohnson/neural-style
require 'torch'
require 'nn'
require 'image'
require 'optim'