Last active
June 5, 2024 08:16
-
-
Save chunibyo-wly/ede139ccf39d44627c94d265e568bea1 to your computer and use it in GitHub Desktop.
convert meshroom structure from motion results to colmap format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json, os, shutil | |
from os.path import join, basename | |
from tqdm import tqdm | |
import numpy as np | |
MESHROOM = r"E:\workspace\dataset\01_DTU\cache\20\meshroom\MeshroomCache\ConvertSfMFormat\4b9ced4a64f3f996f7650f3d5ed9e27c4774a7c9\sfm.json" | |
COLMAP = r"E:\workspace\dataset\01_DTU\cache\20\colmap" | |
def make_dir(folder): | |
if os.path.exists(folder): | |
shutil.rmtree(folder) | |
os.makedirs(folder) | |
def write_points3D(sfm_data): | |
# POINT3D_ID, X, Y, Z, R, G, B, ERROR, TRACK[] as (IMAGE_ID, POINT2D_IDX) | |
points3D = sfm_data["structure"] | |
with open(join(COLMAP, "points3D.txt"), "w") as f: | |
for p in tqdm(points3D): | |
f.write( | |
f"{p['landmarkId']} {p['X'][0]} {p['X'][1]} {p['X'][2]} {p['color'][0]} {p['color'][1]} {p['color'][2]} 0.0 " | |
) | |
for v in p["observations"]: | |
f.write(f"{v['observationId']} {v['featureId']} ") | |
f.write("\n") | |
with open(join(COLMAP, "pointcloud.obj"), "w") as f: | |
for p in tqdm(points3D): | |
f.write(f"v {p['X'][0]} {p['X'][1]} {p['X'][2]}\n") | |
def write_cameras(sfm_data): | |
# CAMERA_ID, MODEL, WIDTH, HEIGHT, PARAMS[] | |
intrinsics = dict() | |
for intrinsic in sfm_data["intrinsics"]: | |
intrinsics[intrinsic["intrinsicId"]] = intrinsic | |
cameras = sfm_data["views"] | |
with open(join(COLMAP, "cameras.txt"), "w") as f: | |
for c in tqdm(cameras): | |
ins = intrinsics[c["intrinsicId"]] | |
f.write( | |
f"{c['viewId']} RADIAL {ins['width']} {ins['height']} {ins['pxFocalLength']} " | |
+ f"{ins['principalPoint'][0]} {ins['principalPoint'][1]} {ins['distortionParams'][0]} {ins['distortionParams'][1]}\n" | |
) | |
def rotmat2qvec(R): | |
Rxx, Ryx, Rzx, Rxy, Ryy, Rzy, Rxz, Ryz, Rzz = R.flat | |
K = ( | |
np.array( | |
[ | |
[Rxx - Ryy - Rzz, 0, 0, 0], | |
[Ryx + Rxy, Ryy - Rxx - Rzz, 0, 0], | |
[Rzx + Rxz, Rzy + Ryz, Rzz - Rxx - Ryy, 0], | |
[Ryz - Rzy, Rzx - Rxz, Rxy - Ryx, Rxx + Ryy + Rzz], | |
] | |
) | |
/ 3.0 | |
) | |
eigvals, eigvecs = np.linalg.eigh(K) | |
qvec = eigvecs[[3, 0, 1, 2], np.argmax(eigvals)] | |
if qvec[0] < 0: | |
qvec *= -1 | |
return qvec | |
def write_images(sfm_data): | |
# IMAGE_ID, QW, QX, QY, QZ, TX, TY, TZ, CAMERA_ID, NAME | |
# POINTS2D[] as (X, Y, POINT3D_ID) | |
cameras = sfm_data["views"] | |
poses = {pose["poseId"]: pose["pose"]["transform"] for pose in sfm_data["poses"]} | |
features = dict() | |
for p in sfm_data["structure"]: | |
for v in p["observations"]: | |
vid = v["observationId"] | |
if vid not in features: | |
features[vid] = dict() | |
features[vid][v["featureId"]] = (v["x"][0], v["x"][1], p["landmarkId"]) | |
with open(join(COLMAP, "images.txt"), "w") as f: | |
for c in tqdm(cameras): | |
poseId = c["poseId"] | |
if poseId not in poses: | |
continue | |
r = np.asarray(poses[poseId]["rotation"], dtype=float).reshape(3, 3) | |
t = np.asarray(poses[poseId]["center"], dtype=float) | |
r = r.T | |
t = -r @ t | |
qvec = rotmat2qvec(r) | |
f.write( | |
f"{c['viewId']} {qvec[0]} {qvec[1]} {qvec[2]} {qvec[3]} {t[0]} {t[1]} {t[2]} {c['viewId']} {basename(c['path'])}\n" | |
) | |
sub_features = features[c["viewId"]] | |
for feature in sub_features.values(): | |
f.write(f"{feature[0]} {feature[1]} {feature[2]} ") | |
f.write("\n") | |
def main(): | |
with open(MESHROOM, "r") as f: | |
sfm_data = json.load(f) | |
print( | |
f"# of images: {len(sfm_data['poses'])}\n# of 3D points: {len(sfm_data['structure'])}" | |
) | |
make_dir(COLMAP) | |
write_points3D(sfm_data) | |
write_cameras(sfm_data) | |
write_images(sfm_data) | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment