dberga / nerfstudio

A collaboration friendly studio for NeRFs

Home Page:https://docs.nerf.studio

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Export images during eval

dberga opened this issue · comments

commented

When calculating metrics for evaluation (nerf-rendered images vs real ground truth ones), we should be able to export the images

This is done in every model's function "get_image_metrics_and_images"

commented

For all models (common eval)
https://github.com/dberga/nerfstudio/blob/main/nerfstudio/pipelines/base_pipeline.py#L351

in self.datamanager.eval_dataset we get the dataset, so that we can use image_filenames to get all filenames, or get_data and get_metadata to get data from the dataset index.

https://github.com/dberga/nerfstudio/blob/main/nerfstudio/data/datamanagers/base_datamanager.py
https://github.com/dberga/nerfstudio/blob/main/nerfstudio/data/datasets/base_dataset.py

commented

solved in be8c4d2