You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for open-sourcing your excellent work! I have a question concerning line 165 in cuda_rasterizer/stopthepop/stopthepop_common.cuh: The computation of tx as described in the supplementary materials of the paper is:
where $\mathbf{dx}=[dx,0],(\mu_2-\hat{\mathbf{p}})=[diffx,diffy]$ in my understanding.
So $\Sigma^{-1}=\frac{1}{ac-b^2}matrix([c,-b;-b,a])$.
so the numerator should be $c\cdot dx\cdot diffx-b\cdot dx\cdot diffy$
However, this seems inconsistent with what is on line 165. Could you please explain why this is the case? const float tx = not_in_y_range * __saturatef((dx * co.x * diffx + dx * co.y * diffy) * rcp_dxdxcox);
Thanks for a lot!
The text was updated successfully, but these errors were encountered:
Thank you for open-sourcing your excellent work! I have a question concerning line 165 in cuda_rasterizer/stopthepop/stopthepop_common.cuh: The computation of tx as described in the supplementary materials of the paper is:
$\mathbf{dx}=[dx,0],(\mu_2-\hat{\mathbf{p}})=[diffx,diffy]$ in my understanding.$\Sigma^{-1}=\frac{1}{ac-b^2}matrix([c,-b;-b,a])$ .$c\cdot dx\cdot diffx-b\cdot dx\cdot diffy$
where
So
so the numerator should be
However, this seems inconsistent with what is on line 165. Could you please explain why this is the case?
const float tx = not_in_y_range * __saturatef((dx * co.x * diffx + dx * co.y * diffy) * rcp_dxdxcox);
Thanks for a lot!
The text was updated successfully, but these errors were encountered: