Skip to content

Commit

Permalink
add encoding options
Browse files Browse the repository at this point in the history
  • Loading branch information
stnamjef committed Nov 10, 2022
1 parent a8b74ae commit dfc0099
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions TensoRF/opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,12 @@ def config_parser(cmd=None):
parser.add_argument("--use_dwt", action='store_true')
parser.add_argument("--dwt_level", type=int, default=2)

# Alpha mask
parser.add_argument("--alpha_offset", type=float, default=0.0,
help='add to alphamask threshold')

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

# network decoder
Expand Down

0 comments on commit dfc0099

Please sign in to comment.