daniel03c1 / masked_wavelet_nerf

MIT License
79 stars 5 forks source link

TriPlane model #9

Closed xuyaojian123 closed 11 months ago

xuyaojian123 commented 11 months ago

Thank you great job! parser.add_argument('--model_name', type=str, default='TensorVMSplit', choices=['TensorVMSplit', 'TensorCP', 'TriPlane']) i can unsterstand ’TensorVMSplit’,‘TensorCP’ model. What's the difference between the 'TriPlane' model with them?

daniel03c1 commented 11 months ago

The main difference comes from the use of lines. TensoRF couples planes and vectors, while TriPlane only uses planes.

xuyaojian123 commented 11 months ago

The main difference comes from the use of lines. TensoRF couples planes and vectors, while TriPlane only uses planes.

ok,thank you!