PVAMVSNet
PVAMVSNet copied to clipboard
This official repository is established for Pyramid Multi-view Stereo Net with Self-adaptive View Aggregation (ECCV2020)
如题
结果可视化?
您好,请问您如何可视化最终的点云数据,我用meshlab 打开后无法显示?
你好,非常感谢您的优秀工作和优质代码。 当我尝试利用tf_model中3DCNN中训练好的模型进行测试时出现 ./eval_pyramid.sh: line 22: ckpt: command not found,以及 Traceback (most recent call last): File "eval.py", line 76, in model_name = str.split(args.loadckpt, '/')[-2] + '_' + str.split(args.loadckpt, '/')[-1] IndexError: list...
您好,非常感谢您做出的卓越贡献。我在阅读您论文后(ECCV2020),试着通过代码加深理解,然后发现在几个问题上有点疑惑,希望您可以帮忙解答。 1.您论文中提出了**Pixel-wise**以及**Voxel-wise**的视图选择模块,但是代码中只给出了[后者](https://github.com/yhw-yhw/PVAMVSNet/blob/master/models/submodule.py#L75),请问什么时候能将前者加入代码呢? 2.对于给出的Voxel-wise模块,对于第一个3D卷积,论文的Fig. 4中给的是`3D Resblock`,Table.1给出的是`Conv3DGR`,而在代码中,使用的是`Conv3D`。请问应该以哪个为准呢? 3.同样是Voxel-wise模块,论文里 Table.1给出的`Conv3DGR`中,使用的kernel size=3,而代码中都是使用kernel size=1,请问两者有什么区别或讲究嘛?这一块在论文中好像没有体现。或者哪个效果更好? ``` conv3d(in_channels, 1, kernel_size=1, stride=1, bias=bias), conv3d(1, 1, kernel_size=1, stride=1) ``` 4.想知道[Issue3](https://github.com/yhw-yhw/PVAMVSNet/issues/3)中提到的CTF是什么呢,论文里貌似没提到? 不好意思问题稍微有点多,希望您能抽出时间帮助我一下。谢谢您!
Hi, @yhw-yhw Thanks for your interesting work. The test result on Scan9 is incredible great. But I was stucked when trying to test on my own dataset. I tried to...
作者您好,我在测试的时候使用1080ti和titanxp均显示显存不足,不知道是什么原因?测试使用的图片和模型都是从您提供的网盘上下载的,盼解答,谢谢。
you use `volumegatelight` here https://github.com/yhw-yhw/PVAMVSNet/blob/05084abac2512a367a81558785fb8d7e83b4ed0f/models/vamvsnet.py#L455-L459 which is defined as https://github.com/yhw-yhw/PVAMVSNet/blob/05084abac2512a367a81558785fb8d7e83b4ed0f/models/submodule.py#L75-L80 but there is no `sigmoid`. Generally the attention is something between 0 and 1, and in your paper you also...