-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
interpolation visualization on my own datasets #11
Comments
demo_interpolate:
model_state:
enable_sh: True
log_query: False
dataset:
module: LoG.dataset.demo.InterpolatePath
args:
cameras: $PLYNAME
scale: 4
steps: 600
subs:
- 0001
- 0040
- 0080
- 0180 The |
Thank you for your reply. I wrote four cameras in the configuration file
but when I output the content of subs in the code, I get the following result
|
Hello, in the grammar of yaml, you should use demo_interpolate:
model_state:
enable_sh: True
log_query: False
dataset:
module: LoG.dataset.demo.InterpolatePath
args:
cameras: $PLYNAME
scale: 4
steps: 600
subs:
- "0001"
- "0040"
- "0080"
- "0180" |
Thank you for the update. The render result does look unusual. Typically, our method should achieve a better fit at least in the training view. Please make sure that your camera calibration is accurate, as it significantly impacts the results. |
Thank you for your reply. I think the intri.yml obtained by colmap calibration are OK. Is it possible that the number of points in the sparse point cloud obtained by colmap is too small, resulting in poor rendering results? I used 180 images with 1920*1080 resolution for colmap, and obtained 60,000 sparse point cloud points. Or is it possible that the
|
Hello, you must set
The proper way is to re-install cd submodules
# clone the modified gs
git clone https://github.com/chingswy/diff-gaussian-rasterization.git mydiffgaussian --recursive
cd mydiffgaussian
git checkout antialias
# or just pull it from github
git pull origin antialias
pip install . -v
cd .. |
Hello, the default configuration uses a training resolution that is downsampled by a scale of 8 or 4 because the input images we provide from drone captures are high resolution. If your original image resolution is not high, you should modify the scale in the corresponding |
Thank you for your reply. The result looks much better after modifying the scale! |
Hello,
I've got the training results of my own data, and when I do the interpolation visualization, I run into the following problem
The corresponding configuration file of interpolation visualization should be this part of the dataset.yml
I don't understand sub, subs what do these nodes mean. Your advice would be appreciated. Thanks!
The text was updated successfully, but these errors were encountered: