diff options
| author | yum <yum.food.vr@gmail.com> | 2026-02-23 17:23:07 -0800 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2026-02-23 17:28:17 -0800 |
| commit | ca92a8c6affe7184b9cd6b253e53a8542429accb (patch) | |
| tree | 0dd7466bfdd5bdc83cd2c2df44bf82c48240126d /Scripts/make_dfg_lut.py | |
| parent | a4d1ade709ee0f16383698809004763bdc798002 (diff) | |
Fix DFG LUT; needed more samples by default
Diffstat (limited to 'Scripts/make_dfg_lut.py')
| -rwxr-xr-x | Scripts/make_dfg_lut.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Scripts/make_dfg_lut.py b/Scripts/make_dfg_lut.py index 298452f..05794ff 100755 --- a/Scripts/make_dfg_lut.py +++ b/Scripts/make_dfg_lut.py @@ -244,10 +244,10 @@ def main(): parser = argparse.ArgumentParser(description='Generate DFG LUT EXR images for PBR.') parser.add_argument('-t', '--type', choices=['standard', 'cloth'], default='standard', help='Type of DFG texture to generate (default: standard)') - parser.add_argument('-r', '--resolution', type=int, default=128, - help='Resolution of the square EXR image (default: 128)') - parser.add_argument('-s', '--samples', type=int, default=1024, - help='Number of samples per pixel for integration (default: 1024)') + parser.add_argument('-r', '--resolution', type=int, default=512, + help='Resolution of the square EXR image (default: 512)') + parser.add_argument('-s', '--samples', type=int, default=8192, + help='Number of samples per pixel for integration (default: 8192)') parser.add_argument('-o', '--output', help='Output filename (default: dfg_standard.exr or dfg_cloth.exr)') parser.add_argument('-j', '--workers', type=int, default=os.cpu_count(), |
