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
require 'torch' | |
require 'nn' | |
require 'image' | |
require 'optim' | |
require 'loadcaffe' | |
local cmd = torch.CmdLine() |
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
#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 |
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
require 'torch' | |
require 'nn' | |
require 'image' | |
require 'optim' | |
require 'loadcaffe' | |
local cmd = torch.CmdLine() |
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
-- 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' |
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
extern "C" { | |
#include "lua.h" | |
#include "lualib.h" | |
#include "lauxlib.h" | |
} | |
#include "luaT.h" | |
#include "THC.h" | |
#include <stdio.h> |
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
# 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 |
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
-- 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/ |
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
require 'torch' | |
require 'nn' | |
require 'image' | |
require 'optim' | |
require 'loadcaffe' | |
local cmd = torch.CmdLine() |
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
-- 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 |
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
-- Original mask related code from: https://github.com/martinbenson/deep-photo-styletransfer | |
-- Modified mask code by github.com/ProGamerGov | |
require 'torch' | |
require 'nn' | |
require 'image' | |
require 'optim' | |
require 'loadcaffe' |