-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
backwardProp函数 #6
Comments
backwardProp()是用在另一个项目里的,用于可微渲染和三位重建,这个项目用不到。需要在pytorch里把上游梯度算出来传入这个函数,代码示例如下。个人建议有相关需求可以参考NeRF系列
|
我想用在三维重建上,这个函数是可以直接从DRR及对应的位姿参数重建CT?传入的梯度这个参数代表什么? |
这个函数是可微渲染的梯度反传部分,不是直接用于三维重建的函数,传入的梯度是上游传进来的梯度,不需要自己给,执行loss.backward()会自动计算。关于X光到CT的三维重建我建议看这篇文章:https://openaccess.thecvf.com/content_CVPR_2019/papers/Ying_X2CT-GAN_Reconstructing_CT_From_Biplanar_X-Rays_With_Generative_Adversarial_Networks_CVPR_2019_paper.pdf 你也可以看看我们的一个小工作,基于重建的配准,我们加了可微渲染loss,但实际上对重建质量的提升不算大 https://www.mdpi.com/2072-666X/12/7/844 |
好的谢谢作者,但是我想做的是直接简单基于传统的方式反投影到三维(较粗糙的也行),而不需要基于深度学习 |
XraySyn: Realistic View Synthesis From a Single Radiograph Through CT Priors类似这篇文章的前向投影和反向投影,不知道作者编译的这个.so的backwardProp可否直接反投影,我试了一下好像可以直接从一张DRR反投影到3D:
projector.delete() # Destruct object, free GPU memory |
不一样,你得去看看CBCT的反投影原理 |
好的,谢谢! |
您好!作者,我想问一下,为什么我重新编译后,发现不能调用backwardProp()函数
The text was updated successfully, but these errors were encountered: