Closed WildEchoes closed 1 year ago
Right, I didn't write it explicitly in the readme. The best solution is most likely to duplicate a matching experiment eval script, e.g. experiments/eval_p2s_max.sh, and adapt it to your new dataset. I recommend picking the one for the max model.
In this file, you need to specify your testset.txt in the dataset parameter. In case you have strong noise, you may also need to increase the epsilon, certainty_threshold, and sigma parameters.
Right, I didn't write it explicitly in the readme. The best solution is most likely to duplicate a matching experiment eval script, e.g. experiments/eval_p2s_max.sh, and adapt it to your new dataset. I recommend picking the one for the max model.
In this file, you need to specify your testset.txt in the dataset parameter. In case you have strong noise, you may also need to increase the epsilon, certainty_threshold, and sigma parameters.
Thanks for your reply! I will try later.
Right, I didn't write it explicitly in the readme. The best solution is most likely to duplicate a matching experiment eval script, e.g. experiments/eval_p2s_max.sh, and adapt it to your new dataset. I recommend picking the one for the max model.
In this file, you need to specify your testset.txt in the dataset parameter. In case you have strong noise, you may also need to increase the epsilon, certainty_threshold, and sigma parameters.
After creating my own eval script, I meet a new problem.
Traceback (most recent call last):
File "/home/yy/reconstruction/points2surf/full_eval.py", line 81, in
are the files and paths really correct?
you should see several folders in datasets/our.
make sure to call the experiment scripts from the repo root like bash experiments/eval_p2s_max.sh
are the files and paths really correct? you should see several folders in datasets/our. make sure to call the experiment scripts from the repo root like
bash experiments/eval_p2s_max.sh
Thanks for your timely reply! After I create a "03_meshs" path it doesn't happen. But a new problem has appeared.
Traceback (most recent call last):
File "/home/yy/reconstruction/points2surf/full_eval.py", line 81, in
And my script likes that:
// name from filename NAME=$0 NAME=${NAME##/} NAME=${NAME%.} NAME=${NAME#eval_}
python full_eval.py \ --indir 'datasets' \ --outdir 'results' \ --modeldir 'models' \ --dataset 'test/testset.txt' \ --models ${NAME} \ --modelpostfix '_model_249.pth' \ --batchSize 501 \ --workers 7 \ --cache_capacity 5 \ --query_grid_resolution 256 \ --epsilon 3 \ --certainty_threshold 13 \ --sigma 5 \
your dataset contains only point clouds, right? so there are no ground-truth meshes? this means that parts of the evaluation don't make sense anyway. you can just ignore them as they will only try to produce tables for e.g. chamfer distance.
you should find the reconstructions in a folder like results/max_model/own.
your dataset contains only point clouds, right? so there are no ground-truth meshes? this means that parts of the evaluation don't make sense anyway. you can just ignore them as they will only try to produce tables for e.g. chamfer distance.
you should find the reconstructions in a folder like results/max_model/own.
I'm truly grateful for your help.
i'm happy if this is useful for you. if there are any other issues, feel free to re-open this issue or create a new one.
Thanks for your excellent work! I have a problem with your code. After using make_pc_dataset.py I don't know how to reconstruct the point cloud to a mesh. Looking forward to your reply.