| for camera_model in CAMERA_MODELS]) | |
| def qvec2rotmat(qvec): | |
| return np.array([ | |
| [1 - 2 * qvec[2]**2 - 2 * qvec[3]**2, | |
| 2 * qvec[1] * qvec[2] - 2 * qvec[0] * qvec[3], | |
| 2 * qvec[3] * qvec[1] + 2 * qvec[0] * qvec[2]], | |
| [2 * qvec[1] * qvec[2] + 2 * qvec[0] * qvec[3], | |
| 1 - 2 * qvec[1]**2 - 2 * qvec[3]**2, | |
| 2 * qvec[2] * qvec[3] - 2 * qvec[0] * qvec[1]], | |
| [2 * qvec[3] * qvec[1] - 2 * qvec[0] * qvec[2], | |
| 2 * qvec[2] * qvec[3] + 2 * qvec[0] * qvec[1], | |
| 1 - 2 * qvec[1]**2 - 2 * qvec[2]**2]]) | |
| 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 | |
| class Image(BaseImage): | |
| def qvec2rotmat(self): | |
| return qvec2rotmat(self.qvec) | |
| def read_next_bytes(fid, num_bytes, format_char_sequence, endian_character="<"): | |
| """Read and unpack the next bytes from a binary file. | |
| :param fid: | |
| :param num_bytes: Sum of combination of {2, 4, 8}, e.g. 2, 6, 16, 30, etc. | |
| :param format_char_sequence: List of {c, e, f, d, h, H, i, I, l, L, q, Q}. | |
| :param endian_character: Any of {@, =, <, >, !} | |
| :return: Tuple of read and unpacked values. | |
| """ | |
| data = fid.read(num_bytes) | |
| return struct.unpack(endian_character + format_char_sequence, data) | |
| def read_points3D_text(path): | |
| """ | |
| see: src/base/reconstruction.cc | |
| void Reconstruction::ReadPoints3DText(const std::string& path) | |
| void Reconstruction::WritePoints3DText(const std::string& path) | |
| """ | |
| xyzs = None | |
| rgbs = None | |
| errors = None | |
| num_points = 0 | |
| with open(path, "r") as fid: | |
| while True: | |
| line = fid.readline() | |
| if not line: | |
| break | |
| line = line.strip() | |
| if len(line) > 0 and line[0] != "#": | |
| num_points += 1 | |
| xyzs = np.empty((num_points, 3)) | |
| rgbs = np.empty((num_points, 3)) | |
| errors = np.empty((num_points, 1)) | |
| count = 0 | |
| with open(path, "r") as fid: | |
| while True: | |
| line = fid.readline() | |
| if not line: | |
| break | |
| line = line.strip() | |
| if len(line) > 0 and line[0] != "#": | |
| elems = line.split() | |
| xyz = np.array(tuple(map(float, elems[1:4]))) | |