quality_comparison/extract_gibson_real.py [53:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    print(f"Number of panoramic images: {len(pano_paths)}")

    inputs = [
        (pano_path, os.path.join(args.save_dir, f"pano_{i:06d}"))
        for i, pano_path in enumerate(pano_paths)
    ]

    os.makedirs(args.save_dir, exist_ok=True)
    pool = mp.Pool(args.num_workers, maxtasksperchild=2)

    _ = list(tqdm.tqdm(pool.imap(_aux_fn, inputs), total=len(inputs)))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



quality_comparison/extract_mp3d_real.py [51:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    print(f"Number of panoramic images: {len(pano_paths)}")

    inputs = [
        (pano_path, os.path.join(args.save_dir, f"pano_{i:06d}"))
        for i, pano_path in enumerate(pano_paths)
    ]

    os.makedirs(args.save_dir, exist_ok=True)
    pool = mp.Pool(args.num_workers, maxtasksperchild=2)

    _ = list(tqdm.tqdm(pool.imap(_aux_fn, inputs), total=len(inputs)))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



