Skip to content

Commit

Permalink
Handle missing metashape data (#1015)
Browse files Browse the repository at this point in the history
* Handle missing metashape data

* lint
  • Loading branch information
tancik authored Nov 24, 2022
1 parent 27ec772 commit 2c64ba5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
24 changes: 20 additions & 4 deletions nerfstudio/process_data/metashape_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import json
import xml.etree.ElementTree as ET
from pathlib import Path
from typing import Dict
from typing import Dict, List

import numpy as np
from rich.console import Console
Expand All @@ -34,17 +34,19 @@ def _find_distortion_param(calib_xml: ET.Element, param_name: str):
return 0.0


def metashape_to_json(
def metashape_to_json( # pylint: disable=too-many-statements
image_filename_map: Dict[str, Path],
xml_filename: Path,
output_dir: Path,
) -> str:
verbose: bool = False,
) -> List[str]:
"""Convert Metashape data into a nerfstudio dataset.
Args:
image_filename_map: Mapping of original image filenames to their saved locations.
xml_filename: Path to the metashap cameras xml file.
output_dir: Path to the output directory.
verbose: Whether to print verbose output.
Returns:
Summary of the conversion.
Expand Down Expand Up @@ -88,9 +90,17 @@ def metashape_to_json(
frames = []
cameras = chunk.find("cameras")
assert cameras is not None, "Cameras not found in Metashape xml"
num_skipped = 0
for camera in cameras:
frame = {}
if camera.get("label") not in image_filename_map:
continue
frame["file_path"] = image_filename_map[camera.get("label")].as_posix() # type: ignore
if camera.find("transform") is None:
if verbose:
CONSOLE.print(f"Missing transforms data for {camera.get('label')}, Skipping")
num_skipped += 1
continue
t = [float(x) for x in camera.find("transform").text.split()] # type: ignore
transform = np.array(
[
Expand All @@ -108,6 +118,12 @@ def metashape_to_json(
with open(output_dir / "transforms.json", "w", encoding="utf-8") as f:
json.dump(data, f, indent=4)

summary = f"Final dataset is {len(data['frames'])} frames."
summary = []
if num_skipped == 1:
summary.append(f"{num_skipped} image skipped because it was missing its camera pose.")
if num_skipped > 1:
summary.append(f"{num_skipped} images were skipped because they were missing camera poses.")

summary.append(f"Final dataset is {len(data['frames'])} frames.")

return summary
3 changes: 2 additions & 1 deletion scripts/process_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,11 +564,12 @@ def main(self) -> None:
if num_frames == 0:
CONSOLE.print("[bold red]No images found, exiting")
sys.exit(1)
summary_log.append(
summary_log.extend(
metashape_utils.metashape_to_json(
image_filename_map=image_filename_map,
xml_filename=self.xml,
output_dir=self.output_dir,
verbose=self.verbose,
)
)

Expand Down

0 comments on commit 2c64ba5

Please sign in to comment.