AI葵
AI葵
Please give more details, what pretrained model do you use and what eval command do you use? I just reran `python eval.py --dataset_name dtu --scan scan1` with this model https://github.com/kwea123/CasMVSNet_pl/releases/tag/v1.0...
It is strange, do you use the latest master code? Also please make sure python=3.7, and all the package version is the same as in `requirements.txt`. Other than that, I...
I think GPU is not a problem. In the `requirements.txt` pytorch==1.4.0, can you try using this version?
Didn't you change some default parameters by chance? Can you post your `eval.py`?
Hmm, your `eval.py` looks good, and I used it and got the correct result (29.44M points). I had another thought. How about setting `torch.backends.cudnn.benchmark = False` at line 19? This...
Can you add `--save_visual` argument? It will save the visual depth. I want to make sure it looks the same. This is my `depth_visual_0000.jpg`.  And `proba_visual_0000` 
OK, so If the code part is the same, then the problem can only come from the data. Do you use the preprocessed data https://github.com/kwea123/CasMVSNet_pl#data-download? Or do you use the...
I think almost everyone in this field uses MVSNet's preprocessed files, including me. So in `Depths` and `Rectified`, there are folders named `scanXX_train`, these contain images of size 640x512, and...
@YuhsiHu When testing, I read the images and parameters from full size images, you can see the code. @stillwang96 I don't understand your second question, what do you want to...
that's just screenshots. When you train, the program will generate .event files under `logs`. Then in another terminal, run `tensorboard --logdir logs` to visualize it. This kind of question is...