Skip to content

Commit

Permalink
print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jefequien committed Nov 28, 2024
1 parent 741d44b commit 92e9fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/datasets/colmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def _get_rel_paths(path_dir: str) -> List[str]:

def _resize_image_folder(image_dir: str, resized_dir: str, factor: int) -> str:
"""Resize image folder."""
print("Downscaling full resolution images instead of provided jpgs.")
print(f"Downscaling images by {factor}x from {image_dir} to {resized_dir}.")
os.makedirs(resized_dir, exist_ok=True)

image_files = _get_rel_paths(image_dir)
Expand Down

0 comments on commit 92e9fdf

Please sign in to comment.