Closed Gaaaavin closed 2 months ago
It turns out the problem was introduced by using the pose before reorientation (i.e. from the rectified folder, instead of the aligned folder).
To successfully run the hierarchical rendering for the whole scene, you need to have images
and sparse
folder under DATASET_DIR, which doesn't exist if you follow the data preparation procedure.
My solution is to create symbolic links to the folder. Go to your DATASET_DIR and run
ln -s camera_calibration/aligned/sparse/ sparse
ln -s camera_calibration/rectified/images/ images
This should solve the problem.
I was able to train the model smoothly with my own data. But I have a problem when I tried to render the images from the trained model. I tried to run the following code:
The is the same as that from the bottom of the readme, except that without the
--eval
flag. I changed this because I didn't use the--eval
flag when training and I don't have thetest.txt
file.However, I find that the rendered images and the gt images have a different pose. For example, the following two images are the first image in my data.
Please let me know what is the code that I should modify.