Jiawei-Yang / FreeNeRF

[CVPR23] FreeNeRF: Improving Few-shot Neural Rendering with Free Frequency Regularization

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

question about freq mask code

iszihan opened this issue · comments

commented

Looking at the frequency mask computation function, I'm a bit confused on this line. Wouldn't this always constraint ptr to be <2 ? How would we be able to mask more frequencies this way?

ptr = pos_enc_length / 3 * current_iter / total_reg_iter + 1

commented

Pos_enc_length = (L*2+1)*3. So ptr would not always be less than 2.
Maybe you can print the length of the position encoding feature.:)