import json import os from typing import Any, Dict, List, Optional, OrderedDict import cv2 import imageio.v2 as imageio import numpy as np import torch from PIL import Image from pycolmap import Image as ColmapImage from pycolmap import SceneManager, Quaternion from tqdm import tqdm from typing_extensions import assert_never from .normalize import ( align_principal_axes, similarity_from_cameras, transform_cameras, transform_points, ) def new_load_images_txt(self, input_file): self.images = OrderedDict() with open(input_file, "r") as f: lines = [line.rstrip("\n") for line in f] idx = 0 num_lines = len(lines) while idx < num_lines: line = lines[idx].strip() # Skip comments if not line or line.startswith("#"): idx += 1 continue # ------------------------- # Line 1: image metadata # ------------------------- data = line.split() image_id = int(data[0]) qvec = np.array(data[1:5], dtype=float) tvec = np.array(data[5:8], dtype=float) camera_id = int(data[8]) image_name = data[9] image = ColmapImage( image_name, camera_id, Quaternion(qvec), tvec ) # ------------------------- # Line 2: POINTS2D (may be empty) # ------------------------- idx += 1 if idx >= num_lines: raise ValueError("Unexpected EOF while reading POINTS2D") line = lines[idx].strip() if not line: image.points2D = np.empty((0, 2), dtype=float) image.point3D_ids = np.empty((0,), dtype=np.uint64) else: data = line.split() x = np.array(data[0::3], dtype=float) y = np.array(data[1::3], dtype=float) image.points2D = np.stack([x, y], axis=1) image.point3D_ids = np.array(data[2::3], dtype=np.uint64) # ------------------------- # Store image # ------------------------- self.images[image_id] = image self.name_to_image_id[image.name] = image_id self.last_image_id = max(self.last_image_id, image_id) idx += 1 SceneManager._load_images_txt = new_load_images_txt def _get_rel_paths(path_dir: str) -> List[str]: """Recursively get relative paths of files in a directory.""" paths = [] for dp, dn, fn in os.walk(path_dir): for f in fn: paths.append(os.path.relpath(os.path.join(dp, f), path_dir)) return paths def _resize_image_folder(image_dir: str, resized_dir: str, factor: int) -> str: """Resize image folder.""" 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) for image_file in tqdm(image_files): image_path = os.path.join(image_dir, image_file) resized_path = os.path.join( resized_dir, os.path.splitext(image_file)[0] + ".png" ) if os.path.isfile(resized_path): continue image = imageio.imread(image_path)[..., :3] resized_size = ( int(round(image.shape[1] / factor)), int(round(image.shape[0] / factor)), ) resized_image = np.array( Image.fromarray(image).resize(resized_size, Image.BICUBIC) ) imageio.imwrite(resized_path, resized_image) return resized_dir class SilentSceneManager(SceneManager): """A silent version of SceneManager that suppresses print statements.""" def load_colmap_project_file(self, project_file=None, image_path=None): if project_file is None: project_file = self.folder + 'project.ini' self.image_path = image_path if self.image_path is None: try: with open(project_file, 'r') as f: for line in iter(f.readline, ''): if line.startswith('image_path'): self.image_path = line[11:].strip() break except: pass if self.image_path is None: # Difference from parent class: no print statement pass elif not self.image_path.endswith('/'): self.image_path += '/' class Parser: """COLMAP parser.""" def __init__( self, data_dir: str, factor: int = 1, normalize: bool = False, load_images: bool = True, dl3dv_settings: bool = False, points3d_subdir: Optional[str] = None, verbose: bool = True, ): self.data_dir = data_dir self.factor = factor self.normalize = normalize if dl3dv_settings: colmap_dir = os.path.join(data_dir, "sparse_train_points/0/") else: colmap_dir = os.path.join(data_dir, "sparse/0/") if not os.path.exists(colmap_dir): colmap_dir = os.path.join(data_dir, "sparse") assert os.path.exists(colmap_dir), f"COLMAP directory {colmap_dir} does not exist." if verbose: manager = SceneManager(colmap_dir) else: manager = SilentSceneManager(colmap_dir) manager.load_cameras() manager.load_images() # Load points3D — optionally from a different subfolder if points3d_subdir is not None: points3d_dir = os.path.join(data_dir, points3d_subdir) points3d_bin = os.path.join(points3d_dir, "points3D.bin") points3d_txt = os.path.join(points3d_dir, "points3D.txt") if os.path.exists(points3d_bin): manager.load_points3D(points3d_bin) elif os.path.exists(points3d_txt): manager.load_points3D(points3d_txt) else: raise IOError(f"No points3D file found in {points3d_dir}") else: manager.load_points3D() # Extract extrinsic matrices in world-to-camera format. imdata = manager.images w2c_mats = [] camera_ids = [] Ks_dict = dict() params_dict = dict() imsize_dict = dict() # width, height mask_dict = dict() bottom = np.array([0, 0, 0, 1]).reshape(1, 4) for k in tqdm(imdata, disable=not verbose): im = imdata[k] rot = im.R() trans = im.tvec.reshape(3, 1) w2c = np.concatenate([np.concatenate([rot, trans], 1), bottom], axis=0) w2c_mats.append(w2c) # support different camera intrinsics camera_id = im.camera_id camera_ids.append(camera_id) # camera intrinsics cam = manager.cameras[camera_id] fx, fy, cx, cy = cam.fx, cam.fy, cam.cx, cam.cy K = np.array([[fx, 0, cx], [0, fy, cy], [0, 0, 1]]) K[:2, :] /= factor Ks_dict[camera_id] = K # Get distortion parameters. type_ = cam.camera_type if type_ == 0 or type_ == "SIMPLE_PINHOLE": params = np.empty(0, dtype=np.float32) camtype = "perspective" elif type_ == 1 or type_ == "PINHOLE": params = np.empty(0, dtype=np.float32) camtype = "perspective" if type_ == 2 or type_ == "SIMPLE_RADIAL": params = np.array([cam.k1, 0.0, 0.0, 0.0], dtype=np.float32) camtype = "perspective" elif type_ == 3 or type_ == "RADIAL": params = np.array([cam.k1, cam.k2, 0.0, 0.0], dtype=np.float32) camtype = "perspective" elif type_ == 4 or type_ == "OPENCV": params = np.array([cam.k1, cam.k2, cam.p1, cam.p2], dtype=np.float32) camtype = "perspective" elif type_ == 5 or type_ == "OPENCV_FISHEYE": params = np.array([cam.k1, cam.k2, cam.k3, cam.k4], dtype=np.float32) camtype = "fisheye" assert ( camtype == "perspective" or camtype == "fisheye" ), f"Only perspective and fisheye cameras are supported, got {type_}" params_dict[camera_id] = params imsize_dict[camera_id] = (cam.width // factor, cam.height // factor) mask_dict[camera_id] = None if verbose: print( f"[Parser] {len(imdata)} images, taken by {len(set(camera_ids))} cameras." ) if len(imdata) == 0: raise ValueError("No images found in COLMAP.") if not (type_ == 0 or type_ == 1): if verbose: print("Warning: COLMAP Camera is not PINHOLE. Images have distortion.") w2c_mats = np.stack(w2c_mats, axis=0) # Convert extrinsics to camera-to-world. camtoworlds = np.linalg.inv(w2c_mats) # Image names from COLMAP. No need for permuting the poses according to # image names anymore. image_names = [imdata[k].name for k in imdata] # Previous Nerf results were generated with images sorted by filename, # ensure metrics are reported on the same test set. inds = np.argsort(image_names) image_names = [image_names[i] for i in inds] camtoworlds = camtoworlds[inds] camera_ids = [camera_ids[i] for i in inds] # Load extended metadata. Used by Bilarf dataset. self.extconf = { "spiral_radius_scale": 1.0, "no_factor_suffix": False, } extconf_file = os.path.join(data_dir, "ext_metadata.json") if os.path.exists(extconf_file): with open(extconf_file) as f: self.extconf.update(json.load(f)) # Load bounds if possible (only used in forward facing scenes). self.bounds = np.array([0.01, 1.0]) posefile = os.path.join(data_dir, "poses_bounds.npy") if os.path.exists(posefile): self.bounds = np.load(posefile)[:, -2:] # Load images. if dl3dv_settings: # DL3DV settings image_dir_suffix = "_train" colmap_image_suffix = "_train" else: colmap_image_suffix = "" if factor > 1 and not self.extconf["no_factor_suffix"]: image_dir_suffix = f"_{factor}" else: image_dir_suffix = "" if load_images: colmap_image_dir = os.path.join(data_dir, "images" + colmap_image_suffix) print("COLMAP image dir:", colmap_image_dir) image_dir = os.path.join(data_dir, "images" + image_dir_suffix) # Prefer an existing (non-empty) images_{factor}/ directory. Only # fall back to images_{factor}_png/ — resizing from the full-res # colmap image dir when even that is missing — if it is absent. if factor > 1 and not (os.path.isdir(image_dir) and os.listdir(image_dir)): image_dir = image_dir + "_png" if not (os.path.isdir(image_dir) and os.listdir(image_dir)): image_dir = _resize_image_folder( colmap_image_dir, image_dir, factor=factor ) print("Image dir:", image_dir) if not os.path.exists(image_dir): raise ValueError(f"Image folder {image_dir} does not exist.") # Build stem -> relative path mapping for files in image_dir image_files_by_stem = {} for f in _get_rel_paths(image_dir): stem = os.path.splitext(f)[0] image_files_by_stem[stem] = f # Match colmap image entries to image_dir files by filename stem, so # images load regardless of their on-disk extension (.JPG/.jpg/.png/…) # and whether or not the original colmap image dir is present. colmap_to_image = { cf: image_files_by_stem[os.path.splitext(cf)[0]] for cf in image_names if os.path.splitext(cf)[0] in image_files_by_stem } image_files = sorted(_get_rel_paths(image_dir)) image_paths = [ os.path.join(image_dir, colmap_to_image[f]) if f in colmap_to_image else os.path.join(image_dir, image_files_by_stem.get(os.path.splitext(f)[0], f)) for f in image_names ] # Filter out views that don't have corresponding images in the image folder existing_mask = [os.path.exists(p) for p in image_paths] if not all(existing_mask): num_missing = sum(1 for m in existing_mask if not m) if verbose: print(f"[Parser] Filtering out {num_missing} views without corresponding images.") existing_indices = [i for i, m in enumerate(existing_mask) if m] image_names = [image_names[i] for i in existing_indices] image_paths = [image_paths[i] for i in existing_indices] camtoworlds = camtoworlds[existing_indices] camera_ids = [camera_ids[i] for i in existing_indices] if verbose: print(f"[Parser] Remaining {len(image_names)} images after filtering.") if len(image_names) == 0: raise ValueError( f"[Parser] Remaining 0 images after filtering: all {num_missing} " f"views were dropped because their images are missing from {image_dir}." ) else: image_paths = None # 3D points and {image_name -> [point_idx]} points = manager.points3D.astype(np.float32) points_err = manager.point3D_errors.astype(np.float32) points_rgb = manager.point3D_colors.astype(np.uint8) point_indices = dict() image_id_to_name = {v: k for k, v in manager.name_to_image_id.items()} for point_id, data in manager.point3D_id_to_images.items(): for image_id, _ in data: image_name = image_id_to_name[image_id] point_idx = manager.point3D_id_to_point3D_idx[point_id] point_indices.setdefault(image_name, []).append(point_idx) point_indices = { k: np.array(v).astype(np.int32) for k, v in point_indices.items() } # Normalize the world space. if normalize: T1 = similarity_from_cameras(camtoworlds) camtoworlds = transform_cameras(T1, camtoworlds) points = transform_points(T1, points) T2 = align_principal_axes(points) camtoworlds = transform_cameras(T2, camtoworlds) points = transform_points(T2, points) transform = T2 @ T1 # Fix for up side down. We assume more points towards # the bottom of the scene which is true when ground floor is # present in the images. if np.median(points[:, 2]) > np.mean(points[:, 2]): # rotate 180 degrees around x axis such that z is flipped T3 = np.array( [ [1.0, 0.0, 0.0, 0.0], [0.0, -1.0, 0.0, 0.0], [0.0, 0.0, -1.0, 0.0], [0.0, 0.0, 0.0, 1.0], ] ) camtoworlds = transform_cameras(T3, camtoworlds) points = transform_points(T3, points) transform = T3 @ transform else: transform = np.eye(4) self.image_names = image_names # List[str], (num_images,) self.image_paths = image_paths # List[str], (num_images,) self.camtoworlds = camtoworlds # np.ndarray, (num_images, 4, 4) self.camera_ids = camera_ids # List[int], (num_images,) self.Ks_dict = Ks_dict # Dict of camera_id -> K self.params_dict = params_dict # Dict of camera_id -> params self.imsize_dict = imsize_dict # Dict of camera_id -> (width, height) self.mask_dict = mask_dict # Dict of camera_id -> mask self.points = points # np.ndarray, (num_points, 3) self.points_err = points_err # np.ndarray, (num_points,) self.points_rgb = points_rgb # np.ndarray, (num_points, 3) self.point_indices = point_indices # Dict[str, np.ndarray], image_name -> [M,] self.transform = transform # np.ndarray, (4, 4) # load one image to check the size. In the case of tanksandtemples dataset, the # intrinsics stored in COLMAP corresponds to 2x upsampled images. if load_images: actual_image = imageio.imread(self.image_paths[0])[..., :3] actual_height, actual_width = actual_image.shape[:2] else: actual_width, actual_height = self.imsize_dict[self.camera_ids[0]] colmap_width, colmap_height = self.imsize_dict[self.camera_ids[0]] s_height, s_width = actual_height / colmap_height, actual_width / colmap_width for camera_id, K in self.Ks_dict.items(): K[0, :] *= s_width K[1, :] *= s_height self.Ks_dict[camera_id] = K width, height = self.imsize_dict[camera_id] self.imsize_dict[camera_id] = (int(width * s_width), int(height * s_height)) # undistortion self.mapx_dict = dict() self.mapy_dict = dict() self.roi_undist_dict = dict() for camera_id in self.params_dict.keys(): params = self.params_dict[camera_id] if len(params) == 0: continue # no distortion assert camera_id in self.Ks_dict, f"Missing K for camera {camera_id}" assert ( camera_id in self.params_dict ), f"Missing params for camera {camera_id}" K = self.Ks_dict[camera_id] width, height = self.imsize_dict[camera_id] if camtype == "perspective": K_undist, roi_undist = cv2.getOptimalNewCameraMatrix( K, params, (width, height), 0 ) mapx, mapy = cv2.initUndistortRectifyMap( K, params, None, K_undist, (width, height), cv2.CV_32FC1 ) mask = None elif camtype == "fisheye": fx = K[0, 0] fy = K[1, 1] cx = K[0, 2] cy = K[1, 2] grid_x, grid_y = np.meshgrid( np.arange(width, dtype=np.float32), np.arange(height, dtype=np.float32), indexing="xy", ) x1 = (grid_x - cx) / fx y1 = (grid_y - cy) / fy theta = np.sqrt(x1 ** 2 + y1 ** 2) r = ( 1.0 + params[0] * theta ** 2 + params[1] * theta ** 4 + params[2] * theta ** 6 + params[3] * theta ** 8 ) mapx = (fx * x1 * r + width // 2).astype(np.float32) mapy = (fy * y1 * r + height // 2).astype(np.float32) # Use mask to define ROI mask = np.logical_and( np.logical_and(mapx > 0, mapy > 0), np.logical_and(mapx < width - 1, mapy < height - 1), ) y_indices, x_indices = np.nonzero(mask) y_min, y_max = y_indices.min(), y_indices.max() + 1 x_min, x_max = x_indices.min(), x_indices.max() + 1 mask = mask[y_min:y_max, x_min:x_max] K_undist = K.copy() K_undist[0, 2] -= x_min K_undist[1, 2] -= y_min roi_undist = [x_min, y_min, x_max - x_min, y_max - y_min] else: assert_never(camtype) self.mapx_dict[camera_id] = mapx self.mapy_dict[camera_id] = mapy self.Ks_dict[camera_id] = K_undist self.roi_undist_dict[camera_id] = roi_undist self.imsize_dict[camera_id] = (roi_undist[2], roi_undist[3]) self.mask_dict[camera_id] = mask # size of the scene measured by cameras camera_locations = camtoworlds[:, :3, 3] scene_center = np.mean(camera_locations, axis=0) dists = np.linalg.norm(camera_locations - scene_center, axis=1) self.scene_scale = np.max(dists) # set height and width from the first image first_camera_id = self.camera_ids[0] self.height, self.width = self.imsize_dict[first_camera_id] class Dataset: """A simple dataset class.""" def __init__( self, parser: Parser, split: str = "train", patch_size: Optional[int] = None, load_depths: bool = False, ): self.parser = parser self.split = split self.patch_size = patch_size self.load_depths = load_depths self.indices = np.arange(len(self.parser.image_names)) def __len__(self): return len(self.indices) def __getitem__(self, item: int) -> Dict[str, Any]: index = self.indices[item] image = imageio.imread(self.parser.image_paths[index])[..., :3] camera_id = self.parser.camera_ids[index] K = self.parser.Ks_dict[camera_id].copy() # undistorted K params = self.parser.params_dict[camera_id] camtoworlds = self.parser.camtoworlds[index] mask = self.parser.mask_dict[camera_id] if len(params) > 0: # Images are distorted. Undistort them. mapx, mapy = ( self.parser.mapx_dict[camera_id], self.parser.mapy_dict[camera_id], ) image = cv2.remap(image, mapx, mapy, cv2.INTER_LINEAR) x, y, w, h = self.parser.roi_undist_dict[camera_id] image = image[y: y + h, x: x + w] if self.patch_size is not None: # Random crop. h, w = image.shape[:2] x = np.random.randint(0, max(w - self.patch_size, 1)) y = np.random.randint(0, max(h - self.patch_size, 1)) image = image[y: y + self.patch_size, x: x + self.patch_size] K[0, 2] -= x K[1, 2] -= y data = { "K": torch.from_numpy(K).float(), "camtoworld": torch.from_numpy(camtoworlds).float(), "image": torch.from_numpy(image).float(), "image_id": item, # the index of the image in the dataset } if mask is not None: data["mask"] = torch.from_numpy(mask).bool() if self.load_depths: # projected points to image plane to get depths worldtocams = np.linalg.inv(camtoworlds) image_name = self.parser.image_names[index] point_indices = self.parser.point_indices[image_name] points_world = self.parser.points[point_indices] points_cam = (worldtocams[:3, :3] @ points_world.T + worldtocams[:3, 3:4]).T points_proj = (K @ points_cam.T).T points = points_proj[:, :2] / points_proj[:, 2:3] # (M, 2) depths = points_cam[:, 2] # (M,) # filter out points outside the image selector = ( (points[:, 0] >= 0) & (points[:, 0] < image.shape[1]) & (points[:, 1] >= 0) & (points[:, 1] < image.shape[0]) & (depths > 0) ) points = points[selector] depths = depths[selector] data["points"] = torch.from_numpy(points).float() data["depths"] = torch.from_numpy(depths).float() return data if __name__ == "__main__": import argparse parser = argparse.ArgumentParser() parser.add_argument("--data_dir", type=str, default="data/360_v2/garden") parser.add_argument("--factor", type=int, default=4) args = parser.parse_args() # Parse COLMAP data. parser = Parser(data_dir=args.data_dir, factor=args.factor, normalize=True) dataset = Dataset(parser, split="train", load_depths=True) print(f"Dataset: {len(dataset)} images.") writer = imageio.get_writer("results/points.mp4", fps=30) for data in tqdm(dataset, desc="Plotting points"): image = data["image"].numpy().astype(np.uint8) points = data["points"].numpy() depths = data["depths"].numpy() for x, y in points: cv2.circle(image, (int(x), int(y)), 2, (255, 0, 0), -1) writer.append_data(image) writer.close()