Skip to content

Commit

Permalink
description and license added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Taishi-Ono committed Jun 13, 2024
1 parent 0388f17 commit 54ae926
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions generate_relighting_image.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# generate_relighting_image.py
""" This script renders the scene with an arbitrary environmen map.
USAGE:
$ python generate_relighting_image.py {RESULT FOLDER NAME} {IMAGE FOLDER NAME} {EPOCH NUM} {ENV MAP NAME} \
-b {BATCH SIZE} -l {ILLUMINATION SAMPLE NUM}
NOTE:
to get high-quality images, it is recommended to use `--light_num` larger than 10000.
if you encounter GPU memory issue, please use smaller `--batch_size` instead of reducing `--light_num`.
Copyright (c) 2024 Sony Semiconductor Solutions Corporation
This software is released under the MIT License.
http://opensource.org/licenses/mit-license.php
"""

import argparse

from mymodules.trainers import trainer_provider
Expand Down

0 comments on commit 54ae926

Please sign in to comment.