摘要:
COLMAP实现不同复杂度的不同相机模型。如果没有先验已知的内参,通常最好使用最简单的相机模型,它足够复杂来建模畸变效应: 相机模型 SIMPLE_PINHOLE和PINHOLE: Use these camera models, if your images are undistorted a p 阅读全文
摘要:
一、Python读写txt文件 1.1 python读取txt文件 in_text_file = "xxx.txt" with open(in_text_file) as f: lines = f.readlines() lines = [line.strip() for line in lines 阅读全文