MaGNet icon indicating copy to clipboard operation
MaGNet copied to clipboard

[CVPR 2022 Oral] Multi-View Depth Estimation by Fusing Single-View Depth Probability with Multi-View Geometry

Results 11 MaGNet issues
Sort by recently updated
recently updated
newest added

I'm pretty new to this. I've installed the requirements file. How do I run an image that I have to get an output from the model? Please help me with...

When I try to run `python train_FNet.py train_scripts/fnet/scannet.txt` I get the following error: Traceback (most recent call last): File "MaGNet/venv/lib/python3.8/site-packages/torch/multiprocessing/spawn.py", line 69, in _wrap fn(i, *args) File "MaGNet/train_FNet.py", line 238,...

Hi, Trying to test the multi-view model via ``` python test_MaGNet.py ./test_scripts/magnet/scannet.txt ``` but, got FileNotFoundError due to negative image index/name (-15.jpg). Anyone got the same error? Btw, monocular model...

thanks for your nice work! I trained the D_net on DTU dataset, the training loss declined normally(avg depth_error 5mm), but on the validation datase, the loss is high(avg depth_error 50mm)....

I have a question. `mu + k*sigma` might be negative. The depth volume constructed by negative depth might bring some errors to the training results. How do the depth volume...

I have downloaded the scannet dataset ,and it is organized as ![image](https://github.com/baegwangbin/MaGNet/assets/124326883/8ee470e8-07c8-4ca0-85fb-30ed03d2bd24) i am wondering how to organized it as ![image](https://github.com/baegwangbin/MaGNet/assets/124326883/a5ff44a5-5068-49c2-9827-fcf0a851dc66)

In my case, after running ckpts/download.py, the test command makes an error. ~~~ ... File "/home/chung/anaconda3/envs/magnet/lib/python3.6/site-packages/torch/serialization.py", line 585, in load return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args) File "/home/chung/anaconda3/envs/magnet/lib/python3.6/site-packages/torch/serialization.py", line 755, in...

I'm confused why the normalized pixel coordinates need do the following operation: `src_coords[src_coords > 10.0] = 10.0 src_coords[src_coords < -10.0] = -10.0` The "F.grid_sample" function requires the coordinates in the...

How many GPUs are needed to reproduce the results?

Hi, thanks your gread job! But I have some question: When loading the camera's intrinsic parameters, the "pixel to ray array" is computed at the same time. Wonder why do...