about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/neural-style/neural-style.sh
blob: 07a4d6dedc04a847827d9ce93575ba8301924cf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! @bash@/bin/bash

declare -a args
c=1
flag=

for arg in "$@"; do
        if test "$arg" = "${arg#-}" && test "$arg" = "${arg#/}" && test -n "$flag"; then
                arg="$PWD/$arg"
                flag=
        elif test "$arg" != "${arg%_image}" && test "$arg" != "${arg#-}"; then
                flag=1
        else
                flag=
        fi
        args[c]="$arg";
        c=$((c+1));
done

cd "@out@/lib/lua/neural-style"

export LUA_PATH="$LUA_PATH${LUA_PATH:+;}@loadcaffe@/lua/?/init.lua;@loadcaffe@/lua/?.lua"
export LUA_CPATH="$LUA_CPATH${LUA_CPATH:+;}@loadcaffe@/lib/?.so"

@torch@/bin/th neural_style.lua "${args[@]}"