|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| from tqdm import tqdm
|
| from scene.cameras import Camera
|
| import numpy as np
|
| from utils.general_utils import PILtoTorch
|
| from utils.graphics_utils import fov2focal
|
|
|
| WARNED = False
|
|
|
| def loadCam(args, id, cam_info, resolution_scale):
|
| orig_w, orig_h = cam_info.width, cam_info.height
|
|
|
| if args.resolution in [1, 2, 4, 8]:
|
| image_width, image_height = round(orig_w/(resolution_scale * args.resolution)), round(orig_h/(resolution_scale * args.resolution))
|
| else:
|
| if args.resolution == -1:
|
| if orig_w > 1600:
|
| global WARNED
|
| if not WARNED:
|
| print("[ INFO ] Encountered quite large input images (>1.6K pixels width), rescaling to 1.6K.\n "
|
| "If this is not desired, please explicitly specify '--resolution/-r' as 1")
|
| WARNED = True
|
| global_down = orig_w / 1600
|
| else:
|
| global_down = 1
|
| else:
|
| global_down = orig_w / args.resolution
|
|
|
| scale = float(global_down) * float(resolution_scale)
|
| image_width, image_height = (int(orig_w / scale), int(orig_h / scale))
|
|
|
| return Camera(colmap_id=cam_info.uid, R=cam_info.R, T=cam_info.T,
|
| FoVx=cam_info.FovX, FoVy=cam_info.FovY,
|
| image_width=image_width, image_height=image_height,
|
| bg=cam_info.bg,
|
| image=cam_info.image,
|
| image_path=cam_info.image_path,
|
| image_name=cam_info.image_name, uid=id,
|
| timestep=cam_info.timestep, data_device=args.data_device)
|
|
|
| def cameraList_from_camInfos(cam_infos, resolution_scale, args):
|
| camera_list = []
|
|
|
| for id, c in tqdm(enumerate(cam_infos), total=len(cam_infos)):
|
| if args.select_camera_id != -1 and c.camera_id is not None:
|
| if c.camera_id != args.select_camera_id:
|
| continue
|
| camera_list.append(loadCam(args, id, c, resolution_scale))
|
|
|
| return camera_list
|
|
|
| def camera_to_JSON(id, camera : Camera):
|
| Rt = np.zeros((4, 4))
|
| Rt[:3, :3] = camera.R.transpose()
|
| Rt[:3, 3] = camera.T
|
| Rt[3, 3] = 1.0
|
|
|
| W2C = np.linalg.inv(Rt)
|
| pos = W2C[:3, 3]
|
| rot = W2C[:3, :3]
|
| serializable_array_2d = [x.tolist() for x in rot]
|
| camera_entry = {
|
| 'id' : id,
|
| 'img_name' : camera.image_name,
|
| 'width' : camera.width,
|
| 'height' : camera.height,
|
| 'position': pos.tolist(),
|
| 'rotation': serializable_array_2d,
|
| 'fy' : fov2focal(camera.FovY, camera.height),
|
| 'fx' : fov2focal(camera.FovX, camera.width)
|
| }
|
| return camera_entry
|
|
|