Skip to content

Commit

Permalink
add compression option
Browse files Browse the repository at this point in the history
  • Loading branch information
stnamjef committed Nov 7, 2022
1 parent 433ac2e commit a5eccd4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions TensoRF/opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ def config_parser(cmd=None):
parser.add_argument("--use_dwt", action='store_true')
parser.add_argument("--dwt_level", type=int, default=2)

# encoding option
parser.add_argument("--compress", type=int, default=0)
parser.add_argument("--decompress", type=int, default=0)
parser.add_argument("--decompress_and_validate", type=int, default=1)

# network decoder
parser.add_argument("--shadingMode", type=str, default="MLP_PE",
help='which shading mode to use')
Expand Down

0 comments on commit a5eccd4

Please sign in to comment.