논문
설치 및 사용방법 (Mac 기준)
1) neural-style
- neural-style 다운로드: github.com/jcjohnson/neural-style
$ git clone https://github.com/jcjohnson/neural-style
2) torch7 & loadcaffe
- torch7 설치: torch.ch/docs/getting-started.html
$ git clone https://github.com/torch/distro.git ~/torch --recursive
$ cd ~/torch; bash install-deps;
$ ./install.sh
- cmake: command not found 에러 뜰 때: cmake 설치
$ brew install cmake
- python 환경변수에 torch7 추가: stackoverflow.com/questions/30143308/torch-lua-after-installation-is-not-working
$ cd
$ vim .bash_profile (vim 말고 다른 텍스트 에디터 사용해도 됨)
-> 맨 아래에 다음 코드 추가 (<you> 자리에는 사용자 이름 넣음)
PATH=$PATH\:/Users/<you>/torch/install/bin ; export PATH
$ source .bash_profile
$ echo $PATH (저장되었는지 확인)
- loadcaffe 설치: github.com/szagoruyko/loadcaffe
$ brew install protobuf
$ luarocks install loadcaffe
- libjpeg, image 설치
$ brew install
$ luarocks install image
3) VGG 모델
$ sh models/download_models.sh
4) 사용방법
- 기본 사용방법
$ th neural_style.lua -style_image <스타일이미지.jpg> -content_image <변환할이미지.jpg>
- 옵션
- -output_image: 저장할 이미지 이름
- -gpu: 사용할 GPU 아이디 지정, CPU 사용하려면 -1로 설정
- 기타 옵션: github.com/jcjohnson/neural-style 참고