-
Notifications
You must be signed in to change notification settings - Fork 52
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
How to fit on a ScanNet scene? #2
Comments
Most likely, you will only need to modify the datasets:
"your_scene_name":
scene_path: your_scene/your_scene_config.yaml # path to your scene config -- needs to be filled in separately
target_path: your_scene/images_undistorted # path to undistorted images of your scene
target_name_func: "lambda i: f'{i}.png'" # lambda which defines the file name format for ground truth picture #i in target_path You'll also need to create viewport_size: [2160, 3840] # width, height of your target images
intrinsic_matrix: path/to/scene/intrinsic.txt
view_matrix: path/to/scene/view_matrices.txt
pointcloud: path/to/scene/point_cloud.ply You can look at some examples by downloading the sample data provided with the repository. |
@seva100 Thanks for your reply! |
Each ScanNet scene contains RGB-D images, so I can project 2D pixels to 3D point cloud and save them to a
.ply
file.But how to modify
path_example.yaml
andtrain_example.yaml
to fit the descriptors on thisply
file?Any guidelines or suggestions?
The text was updated successfully, but these errors were encountered: