{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 39,
   "metadata": {},
   "outputs": [],
   "source": [
    "import numpy as np\n",
    "import json"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Load Pix4D camera"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "metadata": {},
   "outputs": [],
   "source": [
    "def parse_camera_file(txt_path, applied_matrix):\n",
    "    with open(txt_path, 'r') as file:\n",
    "        lines = file.readlines()\n",
    "    \n",
    "    data = {}\n",
    "    idx = 0\n",
    "    while idx < len(lines):\n",
    "        if lines[idx].startswith('frame_'):\n",
    "            parts = lines[idx].split()\n",
    "            file_name = parts[0]\n",
    "            image_width = int(parts[1])\n",
    "            image_height = int(parts[2])\n",
    "            \n",
    "            # Skip intrinsic matrix (3 lines) and distortions (2 lines)\n",
    "            idx += 1  # Skip the frame line\n",
    "            K = [list(map(float, lines[idx].split())) for _ in range(3)]\n",
    "            idx += 3  # Skip the intrinsic matrix\n",
    "            radial_distortion = list(map(float, lines[idx].split()))\n",
    "            idx += 1\n",
    "            tangential_distortion = list(map(float, lines[idx].split()))\n",
    "            idx += 1\n",
    "            \n",
    "            # Read translation vector t\n",
    "            t = np.array(list(map(float, lines[idx].split())))\n",
    "            idx += 1\n",
    "\n",
    "            # Read rotation matrix R\n",
    "            R = []\n",
    "            for _ in range(3):\n",
    "                R.append(list(map(float, lines[idx].split())))\n",
    "                idx += 1\n",
    "            R = np.array(R)\n",
    "\n",
    "            # Construct the 4x4 transformation matrix\n",
    "            transform_matrix = np.eye(4)\n",
    "            transform_matrix[:3, :3] = R.T\n",
    "\n",
    "            transform_matrix[0, 0] *= -1\n",
    "            transform_matrix[1, 0] *= -1\n",
    "            transform_matrix[2, 1] *= -1\n",
    "            transform_matrix[2, 2] *= -1\n",
    "            # transform_matrix[:3, 3] = t\n",
    "\n",
    "            transform_matrix[0, 3] = float(-t[0])\n",
    "            transform_matrix[1, 3] = float(-t[1])\n",
    "            transform_matrix[2, 3] = float(t[2])\n",
    "\n",
    "            \n",
    "            applied_full_transform = applied_matrix @ transform_matrix\n",
    "            data[file_name] = applied_full_transform\n",
    "\n",
    "        else:\n",
    "            idx += 1\n",
    "\n",
    "    return data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "metadata": {},
   "outputs": [],
   "source": [
    "txt_path = './coord_sync_site1_short_drone/pix4d_transform.txt'\n",
    "\n",
    "# applied_matrix = np.array([[-0.96418796, -0.25371189,  0.07727781,  0.41912473],\n",
    "#                             [-0.09476959,  0.05744261, -0.99384057, -0.04494898],\n",
    "#                             [ 0.24771013, -0.96557269, -0.07942964,  0.39511684],\n",
    "#                             [ 0.        ,  0.       ,   0.      ,    1.        ]])\n",
    "\n",
    "\n",
    "applied_matrix = np.array([[1, 0,  0,  0],\n",
    "                            [0,  1, 0, 0],\n",
    "                            [ 0, 0, 1,  0],\n",
    "                            [ 0.        ,  0.       ,   0.      ,    1.        ]])\n",
    "\n",
    "# Parse the file\n",
    "camera_data = parse_camera_file(txt_path, applied_matrix)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 42,
   "metadata": {},
   "outputs": [],
   "source": [
    "\n",
    "\n",
    "frame_list = []\n",
    "count = 1\n",
    "\n",
    "for key, value in camera_data.items():\n",
    "    temp_dic={}\n",
    "    temp_dic[\"file_path\"] = './images/'+key\n",
    "\n",
    "    temp_dic[\"transform_matrix\"] = list(list(row) for row in value)\n",
    "    temp_dic[\"colmap_im_id\"] = count\n",
    "\n",
    "    count+=1\n",
    "    frame_list.append(temp_dic)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Write transform.json"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "metadata": {},
   "outputs": [],
   "source": [
    "intrinsic_param={\"fl_x\": 3610.96227107531967703835,\n",
    "                \"fl_y\": 3610.96227107531967703835,\n",
    "                \"k1\": 0.83573827671019018659,\n",
    "                \"k2\": -8.43164691306825275774,\n",
    "                \"p1\": 0.00088966837485448527,\n",
    "                \"p2\": -0.00415826706043668885,\n",
    "                \"cx\": 946.40291252075269312627,\n",
    "                \"cy\": 548.70902452014547634462,\n",
    "                \"w\": 1920,\n",
    "                \"h\": 1080}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Load the existing template.json\n",
    "with open('template.json', 'r') as file:\n",
    "    data = json.load(file)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "metadata": {},
   "outputs": [],
   "source": [
    "for key,value in intrinsic_param.items():\n",
    "    data[str(key)] = value\n",
    "\n",
    "data[\"frames\"] = frame_list\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{'fl_x': 1392.4742595658188,\n",
       " 'fl_y': 1392.4742595658188,\n",
       " 'k1': 0.08053151258751537,\n",
       " 'k2': -0.10925241102568467,\n",
       " 'p1': 0.0008896683748544853,\n",
       " 'p2': -0.004158267060436689,\n",
       " 'cx': 946.4029125207527,\n",
       " 'cy': 548.7090245201455,\n",
       " 'w': 1920,\n",
       " 'h': 1080,\n",
       " 'camera_model': 'OPENCV',\n",
       " 'frames': [{'file_path': './images/frame_0208.jpg',\n",
       "   'transform_matrix': [[0.6199227129392674,\n",
       "     -0.5703449101537481,\n",
       "     0.5388900754734044,\n",
       "     66.55946326487097],\n",
       "    [0.7846484037553407,\n",
       "     0.4547637940010013,\n",
       "     -0.4213273954420844,\n",
       "     -68.93854386245518],\n",
       "    [-0.004765759773042994,\n",
       "     0.6840296595378944,\n",
       "     0.7294386282657767,\n",
       "     -2.2523321968255225],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 1},\n",
       "  {'file_path': './images/frame_0209.jpg',\n",
       "   'transform_matrix': [[0.6167998930973843,\n",
       "     -0.5723231935481632,\n",
       "     0.540373994564771,\n",
       "     66.77846069007829],\n",
       "    [0.7871046064230497,\n",
       "     0.4527662092764397,\n",
       "     -0.41889031772656105,\n",
       "     -68.5915919092894],\n",
       "    [-0.00492244072298868,\n",
       "     0.6837023635064274,\n",
       "     0.7297443714843257,\n",
       "     -2.1905527861353082],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 2},\n",
       "  {'file_path': './images/frame_0211.jpg',\n",
       "   'transform_matrix': [[0.6106783196615445,\n",
       "     -0.57603267444592,\n",
       "     0.5433768010009566,\n",
       "     67.21156946024223],\n",
       "    [0.7918651018546989,\n",
       "     0.4482471677063542,\n",
       "     -0.41475792591327154,\n",
       "     -68.00104537649248],\n",
       "    [-0.004652994734553543,\n",
       "     0.6835647991331271,\n",
       "     0.729874999589716,\n",
       "     -2.1441724354462575],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 3},\n",
       "  {'file_path': './images/frame_0214.jpg',\n",
       "   'transform_matrix': [[0.601156821020786,\n",
       "     -0.5816237993431269,\n",
       "     0.5480184600703233,\n",
       "     67.89532986431264],\n",
       "    [0.7991178759890172,\n",
       "     0.4414684506172057,\n",
       "     -0.40806399912813374,\n",
       "     -67.06618929975473],\n",
       "    [-0.004593126928817102,\n",
       "     0.6832418043030665,\n",
       "     0.7301777455097531,\n",
       "     -2.1362251065281255],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 4},\n",
       "  {'file_path': './images/frame_0215.jpg',\n",
       "   'transform_matrix': [[0.5979055418382422,\n",
       "     -0.5836142814056375,\n",
       "     0.5494573082401393,\n",
       "     68.11614371440135],\n",
       "    [0.801554345637771,\n",
       "     0.43910910255321683,\n",
       "     -0.4058248723823043,\n",
       "     -66.75483226217648],\n",
       "    [-0.004426514240700669,\n",
       "     0.6830648333754928,\n",
       "     0.730344329325139,\n",
       "     -2.1154733876036675],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 5},\n",
       "  {'file_path': './images/frame_0216.jpg',\n",
       "   'transform_matrix': [[0.5945884948037718,\n",
       "     -0.585409275545025,\n",
       "     0.5511447196089553,\n",
       "     68.34536742506259],\n",
       "    [0.8040186786669051,\n",
       "     0.4365755233623573,\n",
       "     -0.40367781305839406,\n",
       "     -66.4482106326952],\n",
       "    [-0.004299558315564863,\n",
       "     0.6831528324663031,\n",
       "     0.730262775507254,\n",
       "     -2.1441123933136472],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 6},\n",
       "  {'file_path': './images/frame_0217.jpg',\n",
       "   'transform_matrix': [[0.591283492577498,\n",
       "     -0.5873975035573923,\n",
       "     0.5525830292543369,\n",
       "     68.55905506115],\n",
       "    [0.8064528879272028,\n",
       "     0.43422399795395716,\n",
       "     -0.4013517897739541,\n",
       "     -66.12940057822398],\n",
       "    [-0.004191772802814632,\n",
       "     0.6829448677714952,\n",
       "     0.7304578951762685,\n",
       "     -2.122581506025677],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 7},\n",
       "  {'file_path': './images/frame_0218.jpg',\n",
       "   'transform_matrix': [[0.5880596133153893,\n",
       "     -0.5892335930843117,\n",
       "     0.5540664797371402,\n",
       "     68.77241786528026],\n",
       "    [0.8088070494012378,\n",
       "     0.43190011927327415,\n",
       "     -0.3991158275621191,\n",
       "     -65.8131528480523],\n",
       "    [-0.0041289255525480215,\n",
       "     0.6828367738725584,\n",
       "     0.7305593009613237,\n",
       "     -2.1067977418577843],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 8},\n",
       "  {'file_path': './images/frame_0219.jpg',\n",
       "   'transform_matrix': [[0.5845737515707581,\n",
       "     -0.5911567903548862,\n",
       "     0.5557042182598568,\n",
       "     69.00996996519125],\n",
       "    [0.8113305647150054,\n",
       "     0.4293276610321962,\n",
       "     -0.3967624909588277,\n",
       "     -65.4969164074384],\n",
       "    [-0.004030351562799276,\n",
       "     0.6827967550376413,\n",
       "     0.7305972540164296,\n",
       "     -2.0818643142997226],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 9},\n",
       "  {'file_path': './images/frame_0220.jpg',\n",
       "   'transform_matrix': [[0.5811822625991292,\n",
       "     -0.5929974697016629,\n",
       "     0.5572981056558349,\n",
       "     69.2241629581749],\n",
       "    [0.8137636420372443,\n",
       "     0.42685997496445044,\n",
       "     -0.394435415082911,\n",
       "     -65.16443117283409],\n",
       "    [-0.003989052323093991,\n",
       "     0.6827478031460622,\n",
       "     0.7306432267261426,\n",
       "     -2.085338067865294],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 10},\n",
       "  {'file_path': './images/frame_0221.jpg',\n",
       "   'transform_matrix': [[0.5775684186469059,\n",
       "     -0.594934626115752,\n",
       "     0.558987935853917,\n",
       "     69.46249302740627],\n",
       "    [0.8163323033625438,\n",
       "     0.42430136168585153,\n",
       "     -0.39187998795337337,\n",
       "     -64.8071023873024],\n",
       "    [-0.0040363682334948765,\n",
       "     0.6826574141691003,\n",
       "     0.7307274201858317,\n",
       "     -2.0722300506226703],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 11},\n",
       "  {'file_path': './images/frame_0222.jpg',\n",
       "   'transform_matrix': [[0.5740736098680749,\n",
       "     -0.596759265828827,\n",
       "     0.5606405881672114,\n",
       "     69.69418575824179],\n",
       "    [0.8187938918695652,\n",
       "     0.4217409065261247,\n",
       "     -0.3895011815124741,\n",
       "     -64.4753998158947],\n",
       "    [-0.004006630770134807,\n",
       "     0.6826514384442194,\n",
       "     0.7307331664156964,\n",
       "     -2.0669381886305467],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 12},\n",
       "  {'file_path': './images/frame_0223.jpg',\n",
       "   'transform_matrix': [[0.5706329404214339,\n",
       "     -0.5986094662508543,\n",
       "     0.5621785785858936,\n",
       "     69.90499255907304],\n",
       "    [0.8211961262707289,\n",
       "     0.4191779741322233,\n",
       "     -0.38720375540579954,\n",
       "     -64.15366110382809],\n",
       "    [-0.0038690443183757453,\n",
       "     0.6826100884965534,\n",
       "     0.7307725347731605,\n",
       "     -2.0633656496233748],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 13},\n",
       "  {'file_path': './images/frame_0224.jpg',\n",
       "   'transform_matrix': [[0.567003291925323,\n",
       "     -0.6004597859717586,\n",
       "     0.5638752631359146,\n",
       "     70.15044747141395],\n",
       "    [0.8237061761158975,\n",
       "     0.4165823994265236,\n",
       "     -0.384665100985996,\n",
       "     -63.80106544715183],\n",
       "    [-0.003924585885565545,\n",
       "     0.6825739153518762,\n",
       "     0.7308060260471562,\n",
       "     -2.0565222232992477],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 14},\n",
       "  {'file_path': './images/frame_0225.jpg',\n",
       "   'transform_matrix': [[0.5634806884266662,\n",
       "     -0.6024146557777642,\n",
       "     0.565319463909008,\n",
       "     70.35387374315404],\n",
       "    [0.8261208605018251,\n",
       "     0.41396804429861705,\n",
       "     -0.38230195152954977,\n",
       "     -63.4798817103984],\n",
       "    [-0.0037198943445134673,\n",
       "     0.6824419688176688,\n",
       "     0.7309303123980627,\n",
       "     -2.028828462848762],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 15},\n",
       "  {'file_path': './images/frame_0226.jpg',\n",
       "   'transform_matrix': [[0.5597955197099962,\n",
       "     -0.6042836811621052,\n",
       "     0.5669834290292711,\n",
       "     70.59488309390125],\n",
       "    [0.828622500845447,\n",
       "     0.4112893863853997,\n",
       "     -0.3797707094278846,\n",
       "     -63.12751058361284],\n",
       "    [-0.0037050243255124823,\n",
       "     0.6824091685549782,\n",
       "     0.7309610109074565,\n",
       "     -2.0216374843361753],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 16},\n",
       "  {'file_path': './images/frame_0227.jpg',\n",
       "   'transform_matrix': [[0.5562449244639075,\n",
       "     -0.6060614590214436,\n",
       "     0.5685781317435106,\n",
       "     70.81719578403205],\n",
       "    [0.8310100445075561,\n",
       "     0.4087336183747721,\n",
       "     -0.37730509556301467,\n",
       "     -62.783001145104166],\n",
       "    [-0.0037269204031471427,\n",
       "     0.6823681829474944,\n",
       "     0.7309991607144589,\n",
       "     -2.0107675260210547],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 17},\n",
       "  {'file_path': './images/frame_0228.jpg',\n",
       "   'transform_matrix': [[0.5526647773586136,\n",
       "     -0.6080601831990773,\n",
       "     0.5699337307749547,\n",
       "     71.02122503580415],\n",
       "    [0.8333960258660206,\n",
       "     0.4061515914890412,\n",
       "     -0.3748225564205577,\n",
       "     -62.43603520134722],\n",
       "    [-0.003564819473303717,\n",
       "     0.6821317309279956,\n",
       "     0.731220619049613,\n",
       "     -1.9754005701217965],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 18},\n",
       "  {'file_path': './images/frame_0229.jpg',\n",
       "   'transform_matrix': [[0.5489676232991552,\n",
       "     -0.6098103971683768,\n",
       "     0.5716343482285012,\n",
       "     71.27218158318377],\n",
       "    [0.8358358944271336,\n",
       "     0.40344867196892154,\n",
       "     -0.3723003178533522,\n",
       "     -62.103456851413405],\n",
       "    [-0.00359251394854318,\n",
       "     0.6821733273823157,\n",
       "     0.7311816773221752,\n",
       "     -1.9704731712036607],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 19},\n",
       "  {'file_path': './images/frame_0230.jpg',\n",
       "   'transform_matrix': [[0.5452154178815988,\n",
       "     -0.6116679282039847,\n",
       "     0.5732386010300062,\n",
       "     71.5024957575543],\n",
       "    [0.8382884221633575,\n",
       "     0.40071974499524327,\n",
       "     -0.369724501808868,\n",
       "     -61.730522161201456],\n",
       "    [-0.0035594059984933738,\n",
       "     0.6821187811353622,\n",
       "     0.7312327256430374,\n",
       "     -1.9870344668548698],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 20},\n",
       "  {'file_path': './images/frame_0231.jpg',\n",
       "   'transform_matrix': [[0.5415915373333512,\n",
       "     -0.6134833333359812,\n",
       "     0.5747319430898815,\n",
       "     71.72769248107966],\n",
       "    [0.8406344534625956,\n",
       "     0.39809397411907343,\n",
       "     -0.3672259569008241,\n",
       "     -61.386125816885595],\n",
       "    [-0.003510319150815135,\n",
       "     0.6820259434134863,\n",
       "     0.7313195540735961,\n",
       "     -1.9725885432520058],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 21},\n",
       "  {'file_path': './images/frame_0232.jpg',\n",
       "   'transform_matrix': [[0.5377781586827843,\n",
       "     -0.6154836717045113,\n",
       "     0.5761722849190921,\n",
       "     71.94984210453111],\n",
       "    [0.8430793412272067,\n",
       "     0.39538781881990454,\n",
       "     -0.3645349052213485,\n",
       "     -61.010157724644564],\n",
       "    [-0.003446221068548756,\n",
       "     0.6817978605085027,\n",
       "     0.7315325016473123,\n",
       "     -1.9341950131622145],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 22},\n",
       "  {'file_path': './images/frame_0233.jpg',\n",
       "   'transform_matrix': [[0.5341220270452783,\n",
       "     -0.6172015441897339,\n",
       "     0.5777334282130911,\n",
       "     72.16545505394184],\n",
       "    [0.8454008257435501,\n",
       "     0.3926338799821506,\n",
       "     -0.36212716015549823,\n",
       "     -60.67275927837204],\n",
       "    [-0.0033322750736786938,\n",
       "     0.6818364101014042,\n",
       "     0.7314970989709141,\n",
       "     -1.9549721676820024],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 23},\n",
       "  {'file_path': './images/frame_0234.jpg',\n",
       "   'transform_matrix': [[0.5302461670685096,\n",
       "     -0.6190346290907517,\n",
       "     0.5793402543373193,\n",
       "     72.4102919767356],\n",
       "    [0.8478372267752381,\n",
       "     0.38982246711734314,\n",
       "     -0.35945859431180865,\n",
       "     -60.294879169987084],\n",
       "    [-0.0033225296428694277,\n",
       "     0.6817877764502848,\n",
       "     0.7315424722323023,\n",
       "     -1.9477478459936126],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 24},\n",
       "  {'file_path': './images/frame_0235.jpg',\n",
       "   'transform_matrix': [[0.5265123777901936,\n",
       "     -0.6208681902204777,\n",
       "     0.5807817201032289,\n",
       "     72.62840263069872],\n",
       "    [0.8501611953421121,\n",
       "     0.38712677281570523,\n",
       "     -0.3568736522969559,\n",
       "     -59.92489665788098],\n",
       "    [-0.003264654374934246,\n",
       "     0.6816564766373501,\n",
       "     0.731665080409176,\n",
       "     -1.9377427621337604],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 25},\n",
       "  {'file_path': './images/frame_0236.jpg',\n",
       "   'transform_matrix': [[0.5227530674415655,\n",
       "     -0.6227203596605687,\n",
       "     0.5821929097340898,\n",
       "     72.84344149453226],\n",
       "    [0.8524782177082947,\n",
       "     0.38440496383069533,\n",
       "     -0.3542791443413106,\n",
       "     -59.55911832544773],\n",
       "    [-0.003181008224360591,\n",
       "     0.6815072834875162,\n",
       "     0.7318044163163699,\n",
       "     -1.900076683475283],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 26},\n",
       "  {'file_path': './images/frame_0237.jpg',\n",
       "   'transform_matrix': [[0.5189345657280597,\n",
       "     -0.6244844406689738,\n",
       "     0.5837174829101738,\n",
       "     73.0796771797068],\n",
       "    [0.854808096915048,\n",
       "     0.38163553884507045,\n",
       "     -0.3516495882820092,\n",
       "     -59.1972641378289],\n",
       "    [-0.003167639673946916,\n",
       "     0.6814495570860633,\n",
       "     0.7318582288982645,\n",
       "     -1.876384168325552],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 27},\n",
       "  {'file_path': './images/frame_0238.jpg',\n",
       "   'transform_matrix': [[0.5149723132963026,\n",
       "     -0.6262078531371749,\n",
       "     0.585377861904245,\n",
       "     73.32968588753097],\n",
       "    [0.8572010004870769,\n",
       "     0.37871004033454203,\n",
       "     -0.34897729168781727,\n",
       "     -58.81032263919558],\n",
       "    [-0.00315615307125088,\n",
       "     0.6815001320756586,\n",
       "     0.731811183761666,\n",
       "     -1.8852219966661385],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 28},\n",
       "  {'file_path': './images/frame_0239.jpg',\n",
       "   'transform_matrix': [[0.5111422545076703,\n",
       "     -0.6280636934920786,\n",
       "     0.586744912695376,\n",
       "     73.53717407026056],\n",
       "    [0.8594907220759191,\n",
       "     0.37592848187010375,\n",
       "     -0.3463430022163785,\n",
       "     -58.448512501856214],\n",
       "    [-0.0030486590874254337,\n",
       "     0.6813323516727555,\n",
       "     0.7319678491859061,\n",
       "     -1.8612746101755933],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 29},\n",
       "  {'file_path': './images/frame_0240.jpg',\n",
       "   'transform_matrix': [[0.5070555103801871,\n",
       "     -0.6299392321996887,\n",
       "     0.5882782276514696,\n",
       "     73.76207124823192],\n",
       "    [0.8619083262447916,\n",
       "     0.3729270463789458,\n",
       "     -0.34356870525264277,\n",
       "     -58.06899121093885],\n",
       "    [-0.002957455492412726,\n",
       "     0.6812503077538696,\n",
       "     0.732044583097415,\n",
       "     -1.8520397145359366],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 30},\n",
       "  {'file_path': './images/frame_0241.jpg',\n",
       "   'transform_matrix': [[0.5030122135688117,\n",
       "     -0.6317558032611206,\n",
       "     0.5897993879672144,\n",
       "     73.98645750863781],\n",
       "    [0.8642746772871075,\n",
       "     0.36991372202778006,\n",
       "     -0.34087112000845776,\n",
       "     -57.69962145157502],\n",
       "    [-0.00282757862319788,\n",
       "     0.6812110123166321,\n",
       "     0.7320816631344341,\n",
       "     -1.8591022983793606],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 31},\n",
       "  {'file_path': './images/frame_0242.jpg',\n",
       "   'transform_matrix': [[0.4987842121691582,\n",
       "     -0.6335671545869184,\n",
       "     0.5914448159544793,\n",
       "     74.24156710550312],\n",
       "    [0.8667215271969686,\n",
       "     0.3668450090303795,\n",
       "     -0.3379623257744201,\n",
       "     -57.29691222125106],\n",
       "    [-0.002846749751315576,\n",
       "     0.6811882265410469,\n",
       "     0.7321027906228174,\n",
       "     -1.8766196123006325],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 32},\n",
       "  {'file_path': './images/frame_0243.jpg',\n",
       "   'transform_matrix': [[0.49464421172528095,\n",
       "     -0.6353893463676419,\n",
       "     0.5929649924988627,\n",
       "     74.47535255235667],\n",
       "    [0.8690910859204376,\n",
       "     0.363819710206671,\n",
       "     -0.33513564841533705,\n",
       "     -56.906697215419825],\n",
       "    [-0.0027907311425202272,\n",
       "     0.681113497875086,\n",
       "     0.7321725307822299,\n",
       "     -1.8735601275493738],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 33},\n",
       "  {'file_path': './images/frame_0244.jpg',\n",
       "   'transform_matrix': [[0.4904686877980584,\n",
       "     -0.6373388913139381,\n",
       "     0.5943396368309714,\n",
       "     74.69086040730072],\n",
       "    [0.8714545500743303,\n",
       "     0.3608348179599858,\n",
       "     -0.33221258450355323,\n",
       "     -56.51178604848791],\n",
       "    [-0.0027264343742750413,\n",
       "     0.6808798511973344,\n",
       "     0.7323900564515459,\n",
       "     -1.8302401205757866],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 34},\n",
       "  {'file_path': './images/frame_0245.jpg',\n",
       "   'transform_matrix': [[0.4860747174747103,\n",
       "     -0.6391364197941701,\n",
       "     0.5960167832574605,\n",
       "     74.9429371823407],\n",
       "    [0.8739132481092976,\n",
       "     0.35755277470536395,\n",
       "     -0.32928961125360834,\n",
       "     -56.09521209234989],\n",
       "    [-0.00264647141262519,\n",
       "     0.6809263177416375,\n",
       "     0.7323471485544794,\n",
       "     -1.8554355013457184],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 35},\n",
       "  {'file_path': './images/frame_0246.jpg',\n",
       "   'transform_matrix': [[0.48186058347139904,\n",
       "     -0.6410160014154038,\n",
       "     0.5974184999027147,\n",
       "     75.16656389572452],\n",
       "    [0.8762442358709922,\n",
       "     0.35447295475077206,\n",
       "     -0.3264122599614145,\n",
       "     -55.70755859974543],\n",
       "    [-0.0025332191898578592,\n",
       "     0.6807697189796739,\n",
       "     0.7324931211423573,\n",
       "     -1.7996725758848526],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 36},\n",
       "  {'file_path': './images/frame_0247.jpg',\n",
       "   'transform_matrix': [[0.47743959899935534,\n",
       "     -0.6427447751612277,\n",
       "     0.5991081566046964,\n",
       "     75.42015777132747],\n",
       "    [0.8786612015223308,\n",
       "     0.351135054764269,\n",
       "     -0.323509916780039,\n",
       "     -55.2944111799793],\n",
       "    [-0.002433566655896657,\n",
       "     0.6808695376638879,\n",
       "     0.7324006761566341,\n",
       "     -1.816745104763597],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 37},\n",
       "  {'file_path': './images/frame_0248.jpg',\n",
       "   'transform_matrix': [[0.4731333902477526,\n",
       "     -0.6447125007116954,\n",
       "     0.6004086828642137,\n",
       "     75.6274591498727],\n",
       "    [0.8809877631746784,\n",
       "     0.3480299857712516,\n",
       "     -0.32052408667764587,\n",
       "     -54.8946391610897],\n",
       "    [-0.002314339893890953,\n",
       "     0.6806033502930576,\n",
       "     0.7326484309685791,\n",
       "     -1.766109908214992],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 38},\n",
       "  {'file_path': './images/frame_0249.jpg',\n",
       "   'transform_matrix': [[0.4686348171414587,\n",
       "     -0.646459214648733,\n",
       "     0.6020563860291949,\n",
       "     75.87951322361441],\n",
       "    [0.8833891040986155,\n",
       "     0.3446841876533578,\n",
       "     -0.31751614374955844,\n",
       "     -54.48341958427061],\n",
       "    [-0.0022580794133556454,\n",
       "     0.6806491714367161,\n",
       "     0.7326060377173225,\n",
       "     -1.7674038354730692],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 39},\n",
       "  {'file_path': './images/frame_0250.jpg',\n",
       "   'transform_matrix': [[0.4639738461981585,\n",
       "     -0.6482236944303968,\n",
       "     0.6037667695584903,\n",
       "     76.13678905253335],\n",
       "    [0.8858462387543147,\n",
       "     0.34118383366347566,\n",
       "     -0.3144360553936645,\n",
       "     -54.0652349775635],\n",
       "    [-0.002170559587175883,\n",
       "     0.6807346279026074,\n",
       "     0.7325268971480687,\n",
       "     -1.7864263897772423],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 40},\n",
       "  {'file_path': './images/frame_0251.jpg',\n",
       "   'transform_matrix': [[0.45924816935156976,\n",
       "     -0.6501673377249598,\n",
       "     0.6052879908794409,\n",
       "     76.3619874981255],\n",
       "    [0.8883056338293508,\n",
       "     0.3377061758294584,\n",
       "     -0.31123566587664453,\n",
       "     -53.637502083350384],\n",
       "    [-0.002054228387318949,\n",
       "     0.6806151421782217,\n",
       "     0.7326382520613101,\n",
       "     -1.7565438982104784],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 41},\n",
       "  {'file_path': './images/frame_0252.jpg',\n",
       "   'transform_matrix': [[0.45461260516749913,\n",
       "     -0.6520657581444894,\n",
       "     0.606743460021014,\n",
       "     76.58972250310823],\n",
       "    [0.8906871389558918,\n",
       "     0.33430791193077003,\n",
       "     -0.3080821976665583,\n",
       "     -53.20562902235873],\n",
       "    [-0.0019492874050110504,\n",
       "     0.6804766469732381,\n",
       "     0.732767175303774,\n",
       "     -1.7429887026965711],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 42},\n",
       "  {'file_path': './images/frame_0253.jpg',\n",
       "   'transform_matrix': [[0.4499276041960818,\n",
       "     -0.653873758262938,\n",
       "     0.6082879739378996,\n",
       "     76.83565311781773],\n",
       "    [0.8930631023984316,\n",
       "     0.33083776297900885,\n",
       "     -0.3049338776219095,\n",
       "     -52.79891826353718],\n",
       "    [-0.001856371962319601,\n",
       "     0.6804377141532838,\n",
       "     0.732803569205958,\n",
       "     -1.717969571870004],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 43},\n",
       "  {'file_path': './images/frame_0254.jpg',\n",
       "   'transform_matrix': [[0.4452328121028566,\n",
       "     -0.6557054957926022,\n",
       "     0.6097688462149901,\n",
       "     77.06194377672486],\n",
       "    [0.895413137896531,\n",
       "     0.32736939705815077,\n",
       "     -0.30176910105587473,\n",
       "     -52.37950211983831],\n",
       "    [-0.0017480015075153387,\n",
       "     0.6803525414497696,\n",
       "     0.7328829127722716,\n",
       "     -1.7038161518317465],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 44},\n",
       "  {'file_path': './images/frame_0255.jpg',\n",
       "   'transform_matrix': [[0.4402977606296156,\n",
       "     -0.6575128408358952,\n",
       "     0.6114039140539227,\n",
       "     77.32442912687151],\n",
       "    [0.8978501352944949,\n",
       "     0.32375453680074584,\n",
       "     -0.29840934042451145,\n",
       "     -51.921832082956335],\n",
       "    [-0.0017368178382045018,\n",
       "     0.6803380512927711,\n",
       "     0.732896390649423,\n",
       "     -1.7007427342310364],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 45},\n",
       "  {'file_path': './images/frame_0256.jpg',\n",
       "   'transform_matrix': [[0.4354078424557745,\n",
       "     -0.6592952452766533,\n",
       "     0.6129843311893095,\n",
       "     77.56090874917797],\n",
       "    [0.9002317417828402,\n",
       "     0.32014549991159696,\n",
       "     -0.2951095897679156,\n",
       "     -51.480304649735054],\n",
       "    [-0.001679825777046947,\n",
       "     0.6803209819209982,\n",
       "     0.7329123683929802,\n",
       "     -1.7001558986664906],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 46},\n",
       "  {'file_path': './images/frame_0257.jpg',\n",
       "   'transform_matrix': [[0.43045209443833427,\n",
       "     -0.6611077456879659,\n",
       "     0.6145303434209146,\n",
       "     77.80368994221656],\n",
       "    [0.9026118876777044,\n",
       "     0.31653507432968214,\n",
       "     -0.29171446131790213,\n",
       "     -51.03036789429222],\n",
       "    [-0.001665718026126667,\n",
       "     0.680251494162621,\n",
       "     0.7329768960021721,\n",
       "     -1.682777635327885],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 47},\n",
       "  {'file_path': './images/frame_0258.jpg',\n",
       "   'transform_matrix': [[0.4253795242564734,\n",
       "     -0.6628201808008439,\n",
       "     0.6162156020959489,\n",
       "     78.0719042061075],\n",
       "    [0.90501368283774,\n",
       "     0.31272964646417417,\n",
       "     -0.28835811432811,\n",
       "     -50.57747115658233],\n",
       "    [-0.0015793099148260624,\n",
       "     0.6803451889633153,\n",
       "     0.7328901211195739,\n",
       "     -1.7073254606497312],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 48},\n",
       "  {'file_path': './images/frame_0259.jpg',\n",
       "   'transform_matrix': [[0.42054810295074985,\n",
       "     -0.6645650958833144,\n",
       "     0.6176508127074121,\n",
       "     78.30119916823105],\n",
       "    [0.907269183875904,\n",
       "     0.3090863506537365,\n",
       "     -0.28518109304213435,\n",
       "     -50.14247704215184],\n",
       "    [-0.0013860352363941105,\n",
       "     0.6803079164416336,\n",
       "     0.7329251105898656,\n",
       "     -1.7087970764236493],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 49},\n",
       "  {'file_path': './images/frame_0260.jpg',\n",
       "   'transform_matrix': [[0.4155399199022766,\n",
       "     -0.6663831034244374,\n",
       "     0.6190800711039123,\n",
       "     78.53809281910846],\n",
       "    [0.9095739806596835,\n",
       "     0.30542676373049743,\n",
       "     -0.28176171795333094,\n",
       "     -49.66711332584082],\n",
       "    [-0.00132237457137244,\n",
       "     0.6801823663309204,\n",
       "     0.7330417449627017,\n",
       "     -1.6877062162067724],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 50},\n",
       "  {'file_path': './images/frame_0261.jpg',\n",
       "   'transform_matrix': [[0.41041684456692856,\n",
       "     -0.6680055245888546,\n",
       "     0.6207468347196744,\n",
       "     78.81417880117968],\n",
       "    [0.9118971373683954,\n",
       "     0.3015996033038661,\n",
       "     -0.2783546122238259,\n",
       "     -49.19303763687463],\n",
       "    [-0.0012745803432803265,\n",
       "     0.6802986832309171,\n",
       "     0.7329338831294598,\n",
       "     -1.6955337823894654],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 51},\n",
       "  {'file_path': './images/frame_0262.jpg',\n",
       "   'transform_matrix': [[0.40545186581710324,\n",
       "     -0.669703744113492,\n",
       "     0.62217817353697,\n",
       "     79.04117138501513],\n",
       "    [0.9141157262115644,\n",
       "     0.2978672378291187,\n",
       "     -0.27507734861444916,\n",
       "     -48.73277446329764],\n",
       "    [-0.0011061637011144567,\n",
       "     0.6802734771754824,\n",
       "     0.7329575517405116,\n",
       "     -1.6754324343344964],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 52},\n",
       "  {'file_path': './images/frame_0263.jpg',\n",
       "   'transform_matrix': [[0.4003327438237285,\n",
       "     -0.6714191895580202,\n",
       "     0.6236424986447093,\n",
       "     79.2897387518465],\n",
       "    [0.9163693434767988,\n",
       "     0.29403401517005096,\n",
       "     -0.2716822118926432,\n",
       "     -48.25313194698157],\n",
       "    [-0.0009594573808981407,\n",
       "     0.6802501523823642,\n",
       "     0.7329794060035416,\n",
       "     -1.668304055236071],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 53},\n",
       "  {'file_path': './images/frame_0264.jpg',\n",
       "   'transform_matrix': [[0.3950866525571009,\n",
       "     -0.6731384913963282,\n",
       "     0.6251328725734234,\n",
       "     79.52415126833273],\n",
       "    [0.9186434995058769,\n",
       "     0.29010136712324436,\n",
       "     -0.2682076016984244,\n",
       "     -47.793090160354794],\n",
       "    [-0.0008110405789263759,\n",
       "     0.6802394932624097,\n",
       "     0.7329894774273906,\n",
       "     -1.6477012779354967],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 54},\n",
       "  {'file_path': './images/frame_0265.jpg',\n",
       "   'transform_matrix': [[0.3898133783598784,\n",
       "     -0.6749501055450962,\n",
       "     0.6264885354707791,\n",
       "     79.74681895221524],\n",
       "    [0.9208936257518741,\n",
       "     0.28620666552924284,\n",
       "     -0.26465198781834115,\n",
       "     -47.31153135106918],\n",
       "    [-0.0006783076186816102,\n",
       "     0.6800941843827923,\n",
       "     0.7331244370961038,\n",
       "     -1.6083235245725669],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 55},\n",
       "  {'file_path': './images/frame_0266.jpg',\n",
       "   'transform_matrix': [[0.38440206662860893,\n",
       "     -0.6765554524792512,\n",
       "     0.6280985359736561,\n",
       "     80.01268868217915],\n",
       "    [0.9231655715381352,\n",
       "     0.2821681165379019,\n",
       "     -0.26104881063916197,\n",
       "     -46.81739257232048],\n",
       "    [-0.0006153846947516076,\n",
       "     0.6801866462450205,\n",
       "     0.7330387080991213,\n",
       "     -1.6214488067785473],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 56},\n",
       "  {'file_path': './images/frame_0267.jpg',\n",
       "   'transform_matrix': [[0.37903360032581546,\n",
       "     -0.6783022071242055,\n",
       "     0.629475691059219,\n",
       "     80.23631678629185],\n",
       "    [0.925382815670202,\n",
       "     0.27813706055666837,\n",
       "     -0.25750033011082746,\n",
       "     -46.34776857814275],\n",
       "    [-0.0004174761537028493,\n",
       "     0.6801072645953192,\n",
       "     0.7331124977507434,\n",
       "     -1.5936242958183267],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 57},\n",
       "  {'file_path': './images/frame_0268.jpg',\n",
       "   'transform_matrix': [[0.37358645738467505,\n",
       "     -0.679955442253622,\n",
       "     0.6309467136046034,\n",
       "     80.47451109091361],\n",
       "    [0.9275952839886391,\n",
       "     0.2741322268552318,\n",
       "     -0.2538080206010593,\n",
       "     -45.85349559794355],\n",
       "    [-0.00038468273211043224,\n",
       "     0.6800824352599271,\n",
       "     0.7331355490426874,\n",
       "     -1.570386837239093],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 58},\n",
       "  {'file_path': './images/frame_0269.jpg',\n",
       "   'transform_matrix': [[0.3681926855245896,\n",
       "     -0.6814130441166573,\n",
       "     0.6325428124908709,\n",
       "     80.73141221460104],\n",
       "    [0.9297493762447142,\n",
       "     0.27020946545630203,\n",
       "     -0.2501058618872902,\n",
       "     -45.35565188815694],\n",
       "    [-0.0004936585413454075,\n",
       "     0.680193434315188,\n",
       "     0.7330325014729937,\n",
       "     -1.5726191801202614],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 59},\n",
       "  {'file_path': './images/frame_0270.jpg',\n",
       "   'transform_matrix': [[0.36250017809235563,\n",
       "     -0.6830059085751744,\n",
       "     0.6341108339512982,\n",
       "     80.987555801589],\n",
       "    [0.9319835517072502,\n",
       "     0.2660453166827322,\n",
       "     -0.24622459019830656,\n",
       "     -44.825153742994964],\n",
       "    [-0.0005293676885801674,\n",
       "     0.6802373249995808,\n",
       "     0.7329917471890561,\n",
       "     -1.5740798129133804],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 60},\n",
       "  {'file_path': './images/frame_0271.jpg',\n",
       "   'transform_matrix': [[0.3572345310586878,\n",
       "     -0.6847198295563095,\n",
       "     0.6352497499658365,\n",
       "     81.18783597125136],\n",
       "    [0.9340146741156018,\n",
       "     0.26209002329496556,\n",
       "     -0.242745562731784,\n",
       "     -44.35044480831677],\n",
       "    [-0.00027992142740958063,\n",
       "     0.6800496854654245,\n",
       "     0.7331659750304644,\n",
       "     -1.5366338071706438],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 61},\n",
       "  {'file_path': './images/frame_0272.jpg',\n",
       "   'transform_matrix': [[0.351634916776842,\n",
       "     -0.6862354343493836,\n",
       "     0.6367368482714475,\n",
       "     81.43806554915976],\n",
       "    [0.9361371520776844,\n",
       "     0.25801535559765354,\n",
       "     -0.2389043925416581,\n",
       "     -43.81466886449559],\n",
       "    [-0.0003432247450863382,\n",
       "     0.6800801459527616,\n",
       "     0.7331376932593529,\n",
       "     -1.5287375144772855],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 62},\n",
       "  {'file_path': './images/frame_0273.jpg',\n",
       "   'transform_matrix': [[0.34630020643786363,\n",
       "     -0.687706261694323,\n",
       "     0.6380723036204536,\n",
       "     81.64733884459376],\n",
       "    [0.93812371185953,\n",
       "     0.2540501977958263,\n",
       "     -0.23533465160659833,\n",
       "     -43.319393717138546],\n",
       "    [-0.0002612814393051431,\n",
       "     0.6800871963405287,\n",
       "     0.7331311868319944,\n",
       "     -1.5228398658841031],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 63},\n",
       "  {'file_path': './images/frame_0274.jpg',\n",
       "   'transform_matrix': [[0.34076088964431367,\n",
       "     -0.689200853014591,\n",
       "     0.6394405369483358,\n",
       "     81.88034438470703],\n",
       "    [0.9401499675550846,\n",
       "     0.2499724615515302,\n",
       "     -0.23158542046519687,\n",
       "     -42.79245407474803],\n",
       "    [-0.0002336557064513079,\n",
       "     0.6800852539717568,\n",
       "     0.7331329979854828,\n",
       "     -1.517980692232237],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 64},\n",
       "  {'file_path': './images/frame_0275.jpg',\n",
       "   'transform_matrix': [[0.3352657590564425,\n",
       "     -0.6906686832232295,\n",
       "     0.6407602053959013,\n",
       "     82.10788818883383],\n",
       "    [0.9421235795090961,\n",
       "     0.24591117426454293,\n",
       "     -0.22788342481365623,\n",
       "     -42.27964572888311],\n",
       "    [-0.00017814958644802052,\n",
       "     0.6800768077111023,\n",
       "     0.7331408485933661,\n",
       "     -1.488382101571521],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 65},\n",
       "  {'file_path': './images/frame_0276.jpg',\n",
       "   'transform_matrix': [[0.32972056201096306,\n",
       "     -0.6921663894018173,\n",
       "     0.642020280341382,\n",
       "     82.32235246827145],\n",
       "    [0.9440785567080853,\n",
       "     0.24186417559199308,\n",
       "     -0.22409239016348623,\n",
       "     -41.752149137217465],\n",
       "    [-0.00017248522622506245,\n",
       "     0.6800054484690968,\n",
       "     0.7332070378148243,\n",
       "     -1.4522447717676277],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 66},\n",
       "  {'file_path': './images/frame_0277.jpg',\n",
       "   'transform_matrix': [[0.3242379167457381,\n",
       "     -0.6935799518966586,\n",
       "     0.643285802479281,\n",
       "     82.54614660817977],\n",
       "    [0.9459755374670341,\n",
       "     0.23789793187427305,\n",
       "     -0.22030627890257642,\n",
       "     -41.230095153570126],\n",
       "    [-0.00023634369012229264,\n",
       "     0.6799642816626271,\n",
       "     0.7332451976008351,\n",
       "     -1.424435171463873],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 67},\n",
       "  {'file_path': './images/frame_0278.jpg',\n",
       "   'transform_matrix': [[0.3187476552345068,\n",
       "     -0.6949451199815292,\n",
       "     0.6445550500123027,\n",
       "     82.78043189985978],\n",
       "    [0.9478395897355353,\n",
       "     0.2338533116141742,\n",
       "     -0.21659349200069708,\n",
       "     -40.710545203946445],\n",
       "    [-0.00021074267737383124,\n",
       "     0.6799734618799045,\n",
       "     0.7332366921578475,\n",
       "     -1.4068887644394075],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 68},\n",
       "  {'file_path': './images/frame_0279.jpg',\n",
       "   'transform_matrix': [[0.31325795288289787,\n",
       "     -0.6964391062466191,\n",
       "     0.6456330430252362,\n",
       "     82.97966916379512],\n",
       "    [0.9496680684530304,\n",
       "     0.22981456964795524,\n",
       "     -0.21287513555654017,\n",
       "     -40.19096949716366],\n",
       "    [-0.00012131078421973692,\n",
       "     0.6798219140833396,\n",
       "     0.7333772224549643,\n",
       "     -1.3756035013617274],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 69},\n",
       "  {'file_path': './images/frame_0280.jpg',\n",
       "   'transform_matrix': [[0.307629857337307,\n",
       "     -0.6977284000349274,\n",
       "     0.6469458637778962,\n",
       "     83.21733240895547],\n",
       "    [0.9515061006835792,\n",
       "     0.22565715386805782,\n",
       "     -0.20908129823132937,\n",
       "     -39.65377808278492],\n",
       "    [-0.00010600263466138857,\n",
       "     0.6798925861434789,\n",
       "     0.7333117073049996,\n",
       "     -1.3809551179605255],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 70},\n",
       "  {'file_path': './images/frame_0281.jpg',\n",
       "   'transform_matrix': [[0.3021124476353729,\n",
       "     -0.6992402545092006,\n",
       "     0.6479129073090553,\n",
       "     83.40698957701784],\n",
       "    [0.953272294355129,\n",
       "     0.22163448054893725,\n",
       "     -0.20530487048950205,\n",
       "     -39.12854163563917],\n",
       "    [-4.241075933632225e-05,\n",
       "     0.6796625806278519,\n",
       "     0.7335248971204837,\n",
       "     -1.3448697389098985],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 71},\n",
       "  {'file_path': './images/frame_0282.jpg',\n",
       "   'transform_matrix': [[0.2963875748552999,\n",
       "     -0.7005446914247365,\n",
       "     0.6491467790785184,\n",
       "     83.62859794860219],\n",
       "    [0.9550677479786682,\n",
       "     0.21736736120704805,\n",
       "     -0.20148703941653395,\n",
       "     -38.58658678165871],\n",
       "    [4.735344978737375e-05,\n",
       "     0.6796974073795673,\n",
       "     0.7334926258382871,\n",
       "     -1.3418309634247862],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 72},\n",
       "  {'file_path': './images/frame_0283.jpg',\n",
       "   'transform_matrix': [[0.29072619822267654,\n",
       "     -0.7018860437465606,\n",
       "     0.6502570716730347,\n",
       "     83.82359325036538],\n",
       "    [0.9568062375288681,\n",
       "     0.21304222326018835,\n",
       "     -0.1978252636399285,\n",
       "     -38.06877142399214],\n",
       "    [0.00031857940946676837,\n",
       "     0.679683008984451,\n",
       "     0.7335059003205104,\n",
       "     -1.3472114066262781],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 73},\n",
       "  {'file_path': './images/frame_0284.jpg',\n",
       "   'transform_matrix': [[0.28484189760475326,\n",
       "     -0.7031822770219588,\n",
       "     0.6514597291092799,\n",
       "     84.05237138310716],\n",
       "    [0.9585744610685114,\n",
       "     0.20873206942752276,\n",
       "     -0.19381931219493212,\n",
       "     -37.50439376839226],\n",
       "    [0.0003097678743889066,\n",
       "     0.679680519416819,\n",
       "     0.7335082109759556,\n",
       "     -1.365691108136099],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 74},\n",
       "  {'file_path': './images/frame_0285.jpg',\n",
       "   'transform_matrix': [[0.2790182258257298,\n",
       "     -0.7046208276943718,\n",
       "     0.6524249526469389,\n",
       "     84.24071164912772],\n",
       "    [0.9602856959021147,\n",
       "     0.2044071447698395,\n",
       "     -0.18991867052197145,\n",
       "     -36.97871930257351],\n",
       "    [0.00046032907064768913,\n",
       "     0.6795051201766917,\n",
       "     0.7336706207493976,\n",
       "     -1.3319487334989417],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 75},\n",
       "  {'file_path': './images/frame_0286.jpg',\n",
       "   'transform_matrix': [[0.27310481296783945,\n",
       "     -0.7058935690370058,\n",
       "     0.6535503273092282,\n",
       "     84.44004653370723],\n",
       "    [0.9619840710069117,\n",
       "     0.19995004161008012,\n",
       "     -0.1860285676693127,\n",
       "     -36.44193055925907],\n",
       "    [0.0006389544351716213,\n",
       "     0.6795103016528338,\n",
       "     0.73366568795665,\n",
       "     -1.314217660759994],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 76},\n",
       "  {'file_path': './images/frame_0287.jpg',\n",
       "   'transform_matrix': [[0.26697307864797126,\n",
       "     -0.7071792542000651,\n",
       "     0.6546929644545326,\n",
       "     84.64539155845942],\n",
       "    [0.9637036885050693,\n",
       "     0.1953734323148708,\n",
       "     -0.18194620827934563,\n",
       "     -35.889403403272254],\n",
       "    [0.0007589722976375873,\n",
       "     0.6795047640558132,\n",
       "     0.7336707024179887,\n",
       "     -1.2952593194122752],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 77},\n",
       "  {'file_path': './images/frame_0288.jpg',\n",
       "   'transform_matrix': [[0.26095157484632614,\n",
       "     -0.7084260254670376,\n",
       "     0.655771943610123,\n",
       "     84.83802453358538],\n",
       "    [0.9653515831773576,\n",
       "     0.1909564807260807,\n",
       "     -0.1778537132749253,\n",
       "     -35.34186724786976],\n",
       "    [0.0007722966992184765,\n",
       "     0.6794616905386839,\n",
       "     0.7337105796212307,\n",
       "     -1.2564909457018483],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 78},\n",
       "  {'file_path': './images/frame_0289.jpg',\n",
       "   'transform_matrix': [[0.2548957311895033,\n",
       "     -0.7095222237667022,\n",
       "     0.6569675640414238,\n",
       "     85.0416229074496],\n",
       "    [0.9669682164177068,\n",
       "     0.1864723218364591,\n",
       "     -0.17378303031907044,\n",
       "     -34.78038051425845],\n",
       "    [0.000796655086856171,\n",
       "     0.6795633062269282,\n",
       "     0.7336164380455217,\n",
       "     -1.266499861270743],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 79},\n",
       "  {'file_path': './images/frame_0290.jpg',\n",
       "   'transform_matrix': [[0.24883412828068316,\n",
       "     -0.7107643029182186,\n",
       "     0.6579480848060669,\n",
       "     85.23828533533455],\n",
       "    [0.9685457794221444,\n",
       "     0.1820406574422607,\n",
       "     -0.16964749394417913,\n",
       "     -34.205692073815214],\n",
       "    [0.0008060808540844473,\n",
       "     0.6794669268884015,\n",
       "     0.7337056940616505,\n",
       "     -1.225786624204465],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 80},\n",
       "  {'file_path': './images/frame_0291.jpg',\n",
       "   'transform_matrix': [[0.24281939442715855,\n",
       "     -0.7118553718982175,\n",
       "     0.6590149248610978,\n",
       "     85.43601595736948],\n",
       "    [0.9700711738709973,\n",
       "     0.17761640259697287,\n",
       "     -0.16557273674447534,\n",
       "     -33.63876766200276],\n",
       "    [0.0008119818799015631,\n",
       "     0.6794956534284532,\n",
       "     0.7336790835626065,\n",
       "     -1.2185109795708755],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 81},\n",
       "  {'file_path': './images/frame_0292.jpg',\n",
       "   'transform_matrix': [[0.23671746559985002,\n",
       "     -0.7129437328127628,\n",
       "     0.6600576303043453,\n",
       "     85.62322378930138],\n",
       "    [0.9715781715383108,\n",
       "     0.17311884862978702,\n",
       "     -0.16144881801787683,\n",
       "     -33.05508212510826],\n",
       "    [0.0008355059882797106,\n",
       "     0.6795153405862893,\n",
       "     0.7336608234311295,\n",
       "     -1.222605026073717],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 82},\n",
       "  {'file_path': './images/frame_0293.jpg',\n",
       "   'transform_matrix': [[0.230614150804554,\n",
       "     -0.7140716293485886,\n",
       "     0.6609983521977542,\n",
       "     85.79265197285775],\n",
       "    [0.973044758946929,\n",
       "     0.16853486730967032,\n",
       "     -0.15741631296287073,\n",
       "     -32.468917843846185],\n",
       "    [0.0010052535038852352,\n",
       "     0.6794834116152974,\n",
       "     0.7336901817559162,\n",
       "     -1.2638850337621421],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 83},\n",
       "  {'file_path': './images/frame_0294.jpg',\n",
       "   'transform_matrix': [[0.22443583705735548,\n",
       "     -0.7151503343296388,\n",
       "     0.6619581212981452,\n",
       "     85.96131903016638],\n",
       "    [0.974488300668459,\n",
       "     0.1639737510226551,\n",
       "     -0.15324868950780404,\n",
       "     -31.891359062912763],\n",
       "    [0.0010520953679184805,\n",
       "     0.679464942645142,\n",
       "     0.7337072200895741,\n",
       "     -1.2864586490202656],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 84},\n",
       "  {'file_path': './images/frame_0295.jpg',\n",
       "   'transform_matrix': [[0.2181404964745492,\n",
       "     -0.7162258797144693,\n",
       "     0.6628990971671872,\n",
       "     86.14298626168969],\n",
       "    [0.975916795807817,\n",
       "     0.1593528856874638,\n",
       "     -0.1489733717255599,\n",
       "     -31.289009243958],\n",
       "    [0.0010637001649640495,\n",
       "     0.6794314881209973,\n",
       "     0.7337381832040951,\n",
       "     -1.3050056652423228],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 85},\n",
       "  {'file_path': './images/frame_0296.jpg',\n",
       "   'transform_matrix': [[0.21185635020945812,\n",
       "     -0.7171797641631962,\n",
       "     0.6639051684922703,\n",
       "     86.33588115827223],\n",
       "    [0.9773001369365355,\n",
       "     0.15466658024882424,\n",
       "     -0.1447849829849869,\n",
       "     -30.690137107982878],\n",
       "    [0.0011529179313263637,\n",
       "     0.6795082301407073,\n",
       "     0.733666978915698,\n",
       "     -1.3094492938288358],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 86},\n",
       "  {'file_path': './images/frame_0297.jpg',\n",
       "   'transform_matrix': [[0.2055469931911041,\n",
       "     -0.7181730651870706,\n",
       "     0.6648141710507559,\n",
       "     86.49532357435041],\n",
       "    [0.97864631192913,\n",
       "     0.14990005142058732,\n",
       "     -0.1406462609940886,\n",
       "     -30.106315619215373],\n",
       "    [0.0013526779395818852,\n",
       "     0.6795273526679503,\n",
       "     0.7336489264208589,\n",
       "     -1.3272339862235398],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 87},\n",
       "  {'file_path': './images/frame_0298.jpg',\n",
       "   'transform_matrix': [[0.19913320373247154,\n",
       "     -0.7191388498612382,\n",
       "     0.6657216248489283,\n",
       "     86.66790434219544],\n",
       "    [0.9799715033995815,\n",
       "     0.1451958210915875,\n",
       "     -0.13628655862668113,\n",
       "     -29.48503192262944],\n",
       "    [0.0013489610839717912,\n",
       "     0.6795274005938208,\n",
       "     0.7336488888740982,\n",
       "     -1.3204565657382634],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 88},\n",
       "  {'file_path': './images/frame_0299.jpg',\n",
       "   'transform_matrix': [[0.19271798341312504,\n",
       "     -0.7201149606947079,\n",
       "     0.6665539905010229,\n",
       "     86.8145432657964],\n",
       "    [0.9812530850583908,\n",
       "     0.14041229838034688,\n",
       "     -0.13201049021550879,\n",
       "     -28.905172136227883],\n",
       "    [0.0014703511719896764,\n",
       "     0.679498955000821,\n",
       "     0.7336750017686464,\n",
       "     -1.2892719013101523],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 89},\n",
       "  {'file_path': './images/frame_0300.jpg',\n",
       "   'transform_matrix': [[0.1863208077246612,\n",
       "     -0.7211221235021001,\n",
       "     0.6672836275562676,\n",
       "     86.95777869012458],\n",
       "    [0.9824878385528527,\n",
       "     0.1357284192453538,\n",
       "     -0.12765360670541612,\n",
       "     -28.288837269502345],\n",
       "    [0.001484487983593988,\n",
       "     0.6793825720497836,\n",
       "     0.7337827451572075,\n",
       "     -1.24338534122955],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 90},\n",
       "  {'file_path': './images/frame_0301.jpg',\n",
       "   'transform_matrix': [[0.18001664379053,\n",
       "     -0.7220612656798375,\n",
       "     0.6679981561076532,\n",
       "     87.10467553699527],\n",
       "    [0.9836623378489395,\n",
       "     0.1310691842346131,\n",
       "     -0.1234069448679119,\n",
       "     -27.708064382611198],\n",
       "    [0.001553401413750545,\n",
       "     0.6792999319511994,\n",
       "     0.7338591073190709,\n",
       "     -1.2026076901069709],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 91},\n",
       "  {'file_path': './images/frame_0302.jpg',\n",
       "   'transform_matrix': [[0.17344467609039566,\n",
       "     -0.7229616014235064,\n",
       "     0.6687626389108893,\n",
       "     87.2621025303954],\n",
       "    [0.9848422394225206,\n",
       "     0.12618882412117635,\n",
       "     -0.11900480711361738,\n",
       "     -27.102794584876804],\n",
       "    [0.0016455349076163405,\n",
       "     0.6792664451701362,\n",
       "     0.7338899022883432,\n",
       "     -1.1977455591261015],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 92},\n",
       "  {'file_path': './images/frame_0303.jpg',\n",
       "   'transform_matrix': [[0.16685599354776262,\n",
       "     -0.7238885648175118,\n",
       "     0.6694358992044211,\n",
       "     87.39075388364017],\n",
       "    [0.9859798784597715,\n",
       "     0.12135898613147235,\n",
       "     -0.11452369081371377,\n",
       "     -26.476643179693873],\n",
       "    [0.0016603281732846642,\n",
       "     0.6791592907496621,\n",
       "     0.7339890333641048,\n",
       "     -1.1935567582592541],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 93},\n",
       "  {'file_path': './images/frame_0304.jpg',\n",
       "   'transform_matrix': [[0.16018004258797974,\n",
       "     -0.7247239123194934,\n",
       "     0.6701623720180359,\n",
       "     87.5417432354954],\n",
       "    [0.9870862298397555,\n",
       "     0.11638802373189629,\n",
       "     -0.11006635631527421,\n",
       "     -25.867659367808614],\n",
       "    [0.0017688463048978467,\n",
       "     0.6791384828178351,\n",
       "     0.7340080328842722,\n",
       "     -1.1887632947813194],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 94},\n",
       "  {'file_path': './images/frame_0305.jpg',\n",
       "   'transform_matrix': [[0.15339123773124597,\n",
       "     -0.7254548409585448,\n",
       "     0.6709593146511111,\n",
       "     87.69445595996116],\n",
       "    [0.9881640542322556,\n",
       "     0.11143474550490422,\n",
       "     -0.10542342916794677,\n",
       "     -25.225830454543857],\n",
       "    [0.0017117565680457236,\n",
       "     0.6791889068764813,\n",
       "     0.7339615103432755,\n",
       "     -1.2155119247022217],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 95},\n",
       "  {'file_path': './images/frame_0306.jpg',\n",
       "   'transform_matrix': [[0.14672918733112253,\n",
       "     -0.7263402649507169,\n",
       "     0.6714911504230495,\n",
       "     87.80851755964879],\n",
       "    [0.9891751054603544,\n",
       "     0.10652203756035145,\n",
       "     -0.10092406180632978,\n",
       "     -24.602053394919217],\n",
       "    [0.0017766042455044217,\n",
       "     0.6790308351064135,\n",
       "     0.7341076001868129,\n",
       "     -1.1946913577959755],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 96},\n",
       "  {'file_path': './images/frame_0307.jpg',\n",
       "   'transform_matrix': [[0.14006812115023118,\n",
       "     -0.7270386532773141,\n",
       "     0.6721575098726142,\n",
       "     87.94404308145609],\n",
       "    [0.9901401548115251,\n",
       "     0.10158533786971359,\n",
       "     -0.0964515057409957,\n",
       "     -23.969688975246108],\n",
       "    [0.001842625098427792,\n",
       "     0.6790399220742515,\n",
       "     0.7340990321217847,\n",
       "     -1.1959267873632458],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 97},\n",
       "  {'file_path': './images/frame_0308.jpg',\n",
       "   'transform_matrix': [[0.13333510960506054,\n",
       "     -0.7278176137839416,\n",
       "     0.6726836326330943,\n",
       "     88.06753307172187],\n",
       "    [0.9910691328689851,\n",
       "     0.0965964256754621,\n",
       "     -0.09192988861650414,\n",
       "     -23.344994139939903],\n",
       "    [0.0019293576455450435,\n",
       "     0.6789334662635023,\n",
       "     0.7341972663845198,\n",
       "     -1.1770051988324308],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 98},\n",
       "  {'file_path': './images/frame_0309.jpg',\n",
       "   'transform_matrix': [[0.12664646694563095,\n",
       "     -0.7285175928395107,\n",
       "     0.673218233066748,\n",
       "     88.18252198544428],\n",
       "    [0.9919457536576904,\n",
       "     0.09159510982774761,\n",
       "     -0.08748689991146869,\n",
       "     -22.722767259313805],\n",
       "    [0.0020722477327033877,\n",
       "     0.6788758743533077,\n",
       "     0.7342501297312561,\n",
       "     -1.1855775735242615],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 99},\n",
       "  {'file_path': './images/frame_0310.jpg',\n",
       "   'transform_matrix': [[0.11990878641547029,\n",
       "     -0.729255522298464,\n",
       "     0.6736529270607851,\n",
       "     88.29443413130299],\n",
       "    [0.9927829519274511,\n",
       "     0.08673086749257679,\n",
       "     -0.0828237102899969,\n",
       "     -22.071015385582292],\n",
       "    [0.001973145353332909,\n",
       "     0.6787224320892742,\n",
       "     0.7343922432026602,\n",
       "     -1.1534159362452097],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 100},\n",
       "  {'file_path': './images/frame_0311.jpg',\n",
       "   'transform_matrix': [[0.11295544034017871,\n",
       "     -0.7297832638621063,\n",
       "     0.674282920059768,\n",
       "     88.41336073671346],\n",
       "    [0.9935979405377691,\n",
       "     0.08156387430949913,\n",
       "     -0.07816947592716937,\n",
       "     -21.4233502555005],\n",
       "    [0.0020496479357230463,\n",
       "     0.6787957882856931,\n",
       "     0.7343242313508006,\n",
       "     -1.1774924518677783],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 101},\n",
       "  {'file_path': './images/frame_0312.jpg',\n",
       "   'transform_matrix': [[0.10615197321657484,\n",
       "     -0.7302915733212262,\n",
       "     0.6748377408816403,\n",
       "     88.51367963728619],\n",
       "    [0.9943478921538195,\n",
       "     0.076592408235527,\n",
       "     -0.073524637842962,\n",
       "     -20.779405557008793],\n",
       "    [0.002006975705862704,\n",
       "     0.6788282705785688,\n",
       "     0.7342943218572683,\n",
       "     -1.1754930806046031],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 102},\n",
       "  {'file_path': './images/frame_0313.jpg',\n",
       "   'transform_matrix': [[0.09924128587020108,\n",
       "     -0.7308931329784837,\n",
       "     0.6752380286563588,\n",
       "     88.6041913135476],\n",
       "    [0.9950612419459145,\n",
       "     0.07148166050619026,\n",
       "     -0.06887304979694162,\n",
       "     -20.1278371033119],\n",
       "    [0.002071703618586774,\n",
       "     0.6787382414275582,\n",
       "     0.7343773605360818,\n",
       "     -1.157524457682222],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 103},\n",
       "  {'file_path': './images/frame_0314.jpg',\n",
       "   'transform_matrix': [[0.09237363344140988,\n",
       "     -0.7313983570753751,\n",
       "     0.6756652685407722,\n",
       "     88.69087262496767],\n",
       "    [0.9957223087267788,\n",
       "     0.06645597533503643,\n",
       "     -0.06419257936928756,\n",
       "     -19.466546801832248],\n",
       "    [0.0020483526662412226,\n",
       "     0.678704682914234,\n",
       "     0.7344084406116557,\n",
       "     -1.1550885883922708],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 104},\n",
       "  {'file_path': './images/frame_0315.jpg',\n",
       "   'transform_matrix': [[0.08547933937864745,\n",
       "     -0.7317742133347681,\n",
       "     0.6761654998871736,\n",
       "     88.79151612394023],\n",
       "    [0.996337318675668,\n",
       "     0.06122348345039485,\n",
       "     -0.059696168121410306,\n",
       "     -18.829932424255873],\n",
       "    [0.002286909174074751,\n",
       "     0.6787917101530341,\n",
       "     0.7343273005097585,\n",
       "     -1.169606517527734],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 105},\n",
       "  {'file_path': './images/frame_0316.jpg',\n",
       "   'transform_matrix': [[0.07848279520405466,\n",
       "     -0.7322422739472615,\n",
       "     0.6765069867351718,\n",
       "     88.87627533145873],\n",
       "    [0.9969128275374418,\n",
       "     0.05608415168667031,\n",
       "     -0.0549489055476932,\n",
       "     -18.151541027449433],\n",
       "    [0.0022945910880085275,\n",
       "     0.6787310366957814,\n",
       "     0.7343833567542287,\n",
       "     -1.1497645653090558],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 106},\n",
       "  {'file_path': './images/frame_0317.jpg',\n",
       "   'transform_matrix': [[0.0716911483207887,\n",
       "     -0.7326252990652589,\n",
       "     0.6768460315477861,\n",
       "     88.9436620763784],\n",
       "    [0.9974240045183866,\n",
       "     0.051028894271545895,\n",
       "     -0.050412371100048134,\n",
       "     -17.51304715857305],\n",
       "    [0.002394673871794182,\n",
       "     0.6787166000025072,\n",
       "     0.7343963796330183,\n",
       "     -1.1522770558188278],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 107},\n",
       "  {'file_path': './images/frame_0318.jpg',\n",
       "   'transform_matrix': [[0.06479731001128886,\n",
       "     -0.7329175047087272,\n",
       "     0.6772246598484388,\n",
       "     89.0199775173434],\n",
       "    [0.9978955234454341,\n",
       "     0.04594846974359114,\n",
       "     -0.045752184819802845,\n",
       "     -16.850822601522022],\n",
       "    [0.0024151403404426156,\n",
       "     0.6787640749330766,\n",
       "     0.7343524342421566,\n",
       "     -1.1666198503122627],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 108},\n",
       "  {'file_path': './images/frame_0319.jpg',\n",
       "   'transform_matrix': [[0.0578577289347059,\n",
       "     -0.7332999633709348,\n",
       "     0.6774390355764153,\n",
       "     89.07020372582255],\n",
       "    [0.9983217004272568,\n",
       "     0.04079671505897928,\n",
       "     -0.04110243905690916,\n",
       "     -16.182255084875752],\n",
       "    [0.0025031297506468344,\n",
       "     0.6786801837099578,\n",
       "     0.7344296716370257,\n",
       "     -1.1720730096463499],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 109},\n",
       "  {'file_path': './images/frame_0320.jpg',\n",
       "   'transform_matrix': [[0.050834719215463266,\n",
       "     -0.7336827153595686,\n",
       "     0.6775880049889424,\n",
       "     89.1280519667491],\n",
       "    [0.9987036918411022,\n",
       "     0.03557747514822022,\n",
       "     -0.036403010384175455,\n",
       "     -15.514304721930843],\n",
       "    [0.0026013890976982054,\n",
       "     0.6785601789411811,\n",
       "     0.7345402074291607,\n",
       "     -1.1501755040451975],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 110},\n",
       "  {'file_path': './images/frame_0321.jpg',\n",
       "   'transform_matrix': [[0.04379185877735277,\n",
       "     -0.7338130313427634,\n",
       "     0.677938572539112,\n",
       "     89.19039377446954],\n",
       "    [0.9990373848548911,\n",
       "     0.030423860023589523,\n",
       "     -0.031602094923676965,\n",
       "     -14.832003928843342],\n",
       "    [0.002564520837203113,\n",
       "     0.6786698930796986,\n",
       "     0.7344389691867296,\n",
       "     -1.1665200154800812],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 111},\n",
       "  {'file_path': './images/frame_0322.jpg',\n",
       "   'transform_matrix': [[0.03680017013462329,\n",
       "     -0.733980527146577,\n",
       "     0.6781727901115583,\n",
       "     89.2278501398037],\n",
       "    [0.9993192103533912,\n",
       "     0.025249744344395236,\n",
       "     -0.02689918640437617,\n",
       "     -14.144340023459586],\n",
       "    [0.002619789445256002,\n",
       "     0.6787009917336025,\n",
       "     0.7344100356906126,\n",
       "     -1.1918019095753531],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 112},\n",
       "  {'file_path': './images/frame_0323.jpg',\n",
       "   'transform_matrix': [[0.029840674422003877,\n",
       "     -0.7342228820891727,\n",
       "     0.6782523819100886,\n",
       "     89.25542165973634],\n",
       "    [0.9995510371589696,\n",
       "     0.02009046818159958,\n",
       "     -0.02222829734082795,\n",
       "     -13.470391596779287],\n",
       "    [0.002694116639659031,\n",
       "     0.6786111791776739,\n",
       "     0.7344927564180732,\n",
       "     -1.1778692864414644],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 113},\n",
       "  {'file_path': './images/frame_0324.jpg',\n",
       "   'transform_matrix': [[0.0226496769330308,\n",
       "     -0.7343267325433108,\n",
       "     0.6784181910938814,\n",
       "     89.2960042125727],\n",
       "    [0.9997398616052384,\n",
       "     0.014814991429146962,\n",
       "     -0.017341428617412905,\n",
       "     -12.75822754314085],\n",
       "    [0.0026835149278246445,\n",
       "     0.6786344862304148,\n",
       "     0.7344712607355124,\n",
       "     -1.1782930989037539],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 114},\n",
       "  {'file_path': './images/frame_0325.jpg',\n",
       "   'transform_matrix': [[0.0157493312878899,\n",
       "     -0.7343497377052564,\n",
       "     0.6785885508142658,\n",
       "     89.32862066677463],\n",
       "    [0.9998721972040177,\n",
       "     0.009702139011262073,\n",
       "     -0.012706602890469734,\n",
       "     -12.075970490899502],\n",
       "    [0.002747330048290416,\n",
       "     0.678701945798616,\n",
       "     0.7344086879570383,\n",
       "     -1.187403574334868],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 115},\n",
       "  {'file_path': './images/frame_0326.jpg',\n",
       "   'transform_matrix': [[0.008746129542868462,\n",
       "     -0.7344332141465248,\n",
       "     0.6786246084371124,\n",
       "     89.3479414993439],\n",
       "    [0.9999583277019323,\n",
       "     0.004647654550109894,\n",
       "     -0.00785761838839275,\n",
       "     -11.356296704654238],\n",
       "    [0.002616883179304835,\n",
       "     0.678665052338477,\n",
       "     0.73444325761548,\n",
       "     -1.1677883376858933],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 116},\n",
       "  {'file_path': './images/frame_0327.jpg',\n",
       "   'transform_matrix': [[0.0018497704307446968,\n",
       "     -0.7344550842373254,\n",
       "     0.6786547779153232,\n",
       "     89.34871649627411],\n",
       "    [0.9999943384427911,\n",
       "     -0.0005490999329475607,\n",
       "     -0.0033198752428917643,\n",
       "     -10.690862273019105],\n",
       "    [0.0028109485442233276,\n",
       "     0.678657076679531,\n",
       "     0.7344499103690291,\n",
       "     -1.1554280853256185],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 117},\n",
       "  {'file_path': './images/frame_0328.jpg',\n",
       "   'transform_matrix': [[-0.005336548734641669,\n",
       "     -0.7343882072661426,\n",
       "     0.6787086873438589,\n",
       "     89.36075877882784],\n",
       "    [0.9999818732974215,\n",
       "     -0.0058116007332054955,\n",
       "     0.0015742850750682146,\n",
       "     -9.968345787671046],\n",
       "    [0.0027882475109953187,\n",
       "     0.6787047858423713,\n",
       "     0.7344059091200713,\n",
       "     -1.1418219472851046],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 118},\n",
       "  {'file_path': './images/frame_0329.jpg',\n",
       "   'transform_matrix': [[-0.012583472584944909,\n",
       "     -0.7342968283642155,\n",
       "     0.678711885907384,\n",
       "     89.3549987926789],\n",
       "    [0.9999167234739638,\n",
       "     -0.01118481731991584,\n",
       "     0.0064378551251885125,\n",
       "     -9.249914786491695],\n",
       "    [0.0028639718568354176,\n",
       "     0.6787363757128196,\n",
       "     0.7343764225173826,\n",
       "     -1.1458318675226926],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 119},\n",
       "  {'file_path': './images/frame_0330.jpg',\n",
       "   'transform_matrix': [[-0.019675910855161648,\n",
       "     -0.7342899905933609,\n",
       "     0.6785507116247257,\n",
       "     89.339148578259],\n",
       "    [0.9998022091625628,\n",
       "     -0.016418076755178347,\n",
       "     0.011224495949489984,\n",
       "     -8.549487706150654],\n",
       "    [0.0028984626405694157,\n",
       "     0.6786373526929261,\n",
       "     0.7344677953758477,\n",
       "     -1.1196951967031155],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 120},\n",
       "  {'file_path': './images/frame_0331.jpg',\n",
       "   'transform_matrix': [[-0.026998736227821927,\n",
       "     -0.7342042676666402,\n",
       "     0.6783915989914623,\n",
       "     89.3267251246232],\n",
       "    [0.9996317291114744,\n",
       "     -0.021685772657354475,\n",
       "     0.016313596104398875,\n",
       "     -7.816507478138242],\n",
       "    [0.002733934107548506,\n",
       "     0.6785822135926832,\n",
       "     0.7345193700644996,\n",
       "     -1.0959068845913216],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 121},\n",
       "  {'file_path': './images/frame_0332.jpg',\n",
       "   'transform_matrix': [[-0.03423064473352805,\n",
       "     -0.7340862241153445,\n",
       "     0.6781929508076615,\n",
       "     89.30368533835652],\n",
       "    [0.9994096462185521,\n",
       "     -0.02713660228833627,\n",
       "     0.021070449960864126,\n",
       "     -7.116015546200067],\n",
       "    [0.0029363253286386606,\n",
       "     0.6785138321215868,\n",
       "     0.7345817569292362,\n",
       "     -1.091214805313695],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 122},\n",
       "  {'file_path': './images/frame_0333.jpg',\n",
       "   'transform_matrix': [[-0.041470078380717285,\n",
       "     -0.7339373529227825,\n",
       "     0.677949994161661,\n",
       "     89.28000084587548],\n",
       "    [0.999135318367133,\n",
       "     -0.03248260807679583,\n",
       "     0.025951796930793698,\n",
       "     -6.396125192288398],\n",
       "    [0.0029745908130429325,\n",
       "     0.6784400063065474,\n",
       "     0.73464978707699,\n",
       "     -1.0686213968983427],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 123},\n",
       "  {'file_path': './images/frame_0334.jpg',\n",
       "   'transform_matrix': [[-0.04884880496289973,\n",
       "     -0.7336434053593279,\n",
       "     0.677776621038573,\n",
       "     89.25179219100265],\n",
       "    [0.9988016581648572,\n",
       "     -0.037923208098575155,\n",
       "     0.030936676205497976,\n",
       "     -5.667778037637556],\n",
       "    [0.0030069753620944875,\n",
       "     0.6784756326208635,\n",
       "     0.7346167531705841,\n",
       "     -1.0654353497652123],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 124},\n",
       "  {'file_path': './images/frame_0335.jpg',\n",
       "   'transform_matrix': [[-0.056187883045075625,\n",
       "     -0.7333758912860904,\n",
       "     0.6774973976918626,\n",
       "     89.21603629133811],\n",
       "    [0.9984157357189765,\n",
       "     -0.043304029362865086,\n",
       "     0.03592742280870187,\n",
       "     -4.930448208365681],\n",
       "    [0.002990061478969155,\n",
       "     0.6784427485950991,\n",
       "     0.734647191794183,\n",
       "     -1.054506842942141],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 125},\n",
       "  {'file_path': './images/frame_0336.jpg',\n",
       "   'transform_matrix': [[-0.06358089377570321,\n",
       "     -0.7329867350964536,\n",
       "     0.6772650264994673,\n",
       "     89.20087373571003],\n",
       "    [0.9979722210618286,\n",
       "     -0.048728720386204905,\n",
       "     0.04095067518910813,\n",
       "     -4.1734486401708075],\n",
       "    [0.0029859563967884837,\n",
       "     0.6784953632724136,\n",
       "     0.7345986156277672,\n",
       "     -1.0494084434473065],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 126},\n",
       "  {'file_path': './images/frame_0337.jpg',\n",
       "   'transform_matrix': [[-0.07086059986297272,\n",
       "     -0.7326305588470978,\n",
       "     0.6769277949903142,\n",
       "     89.16898622157458],\n",
       "    [0.9974812631083417,\n",
       "     -0.054186419611787065,\n",
       "     0.04577075133141674,\n",
       "     -3.4607309622401936],\n",
       "    [0.003147242419439544,\n",
       "     0.6784661348756065,\n",
       "     0.7346249374286915,\n",
       "     -1.045062902012287],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 127},\n",
       "  {'file_path': './images/frame_0338.jpg',\n",
       "   'transform_matrix': [[-0.07815587669029851,\n",
       "     -0.7323322601945681,\n",
       "     0.6764474256119881,\n",
       "     89.09767847792116],\n",
       "    [0.9969362065358017,\n",
       "     -0.05954843673683925,\n",
       "     0.05071670119599513,\n",
       "     -2.7202872879937994],\n",
       "    [0.00313991031337758,\n",
       "     0.6783387386553372,\n",
       "     0.7347426056808669,\n",
       "     -1.0295375473556185],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 128},\n",
       "  {'file_path': './images/frame_0339.jpg',\n",
       "   'transform_matrix': [[-0.0855257512848273,\n",
       "     -0.7318049753866408,\n",
       "     0.6761263372081612,\n",
       "     89.05547976631868],\n",
       "    [0.9963308061424813,\n",
       "     -0.06500081511788998,\n",
       "     0.0556760160705065,\n",
       "     -1.9779873761045594],\n",
       "    [0.003204777471100587,\n",
       "     0.6784072317077465,\n",
       "     0.7346790846131342,\n",
       "     -1.0445007906179005],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 129},\n",
       "  {'file_path': './images/frame_0340.jpg',\n",
       "   'transform_matrix': [[-0.09299207574688705,\n",
       "     -0.7314577552343938,\n",
       "     0.6755161183537717,\n",
       "     88.97118551272295],\n",
       "    [0.9956616687642581,\n",
       "     -0.07050394191686155,\n",
       "     0.06072096448309004,\n",
       "     -1.2331455454684495],\n",
       "    [0.0032117287958497043,\n",
       "     0.6782320742059059,\n",
       "     0.7348407571144215,\n",
       "     -1.0067685367571928],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 130},\n",
       "  {'file_path': './images/frame_0341.jpg',\n",
       "   'transform_matrix': [[-0.10056152656466787,\n",
       "     -0.7307780446548765,\n",
       "     0.6751672598885248,\n",
       "     88.925140679434],\n",
       "    [0.9949256392662601,\n",
       "     -0.0760566702282305,\n",
       "     0.06586619196839989,\n",
       "     -0.47007225940207237],\n",
       "    [0.0032174066587095287,\n",
       "     0.6783648224695834,\n",
       "     0.7347181881035769,\n",
       "     -1.0292086843257187],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 131},\n",
       "  {'file_path': './images/frame_0342.jpg',\n",
       "   'transform_matrix': [[-0.10803301732912583,\n",
       "     -0.7301607507254464,\n",
       "     0.6746807728598891,\n",
       "     88.85795685864969],\n",
       "    [0.9941420472626219,\n",
       "     -0.08155293799305889,\n",
       "     0.0709274852873205,\n",
       "     0.2961873421046981],\n",
       "    [0.0032337333296936035,\n",
       "     0.6783910350268146,\n",
       "     0.7346939135204535,\n",
       "     -1.0499865431905047],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 132},\n",
       "  {'file_path': './images/frame_0343.jpg',\n",
       "   'transform_matrix': [[-0.11560565119569298,\n",
       "     -0.7295382167020286,\n",
       "     0.6740988976276727,\n",
       "     88.78922941809604],\n",
       "    [0.9932897216638984,\n",
       "     -0.08715934996110013,\n",
       "     0.07601826458959478,\n",
       "     1.0618050618991064],\n",
       "    [0.0032957925412461964,\n",
       "     0.6783636473791784,\n",
       "     0.7347189256211811,\n",
       "     -1.055684427596656],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 133},\n",
       "  {'file_path': './images/frame_0344.jpg',\n",
       "   'transform_matrix': [[-0.12315989976202614,\n",
       "     -0.729032697293846,\n",
       "     0.6733074820370462,\n",
       "     88.70614528353758],\n",
       "    [0.9923808115679504,\n",
       "     -0.09284062213005313,\n",
       "     0.08099965255629649,\n",
       "     1.7910160588297783],\n",
       "    [0.003458890334157747,\n",
       "     0.6781533345482895,\n",
       "     0.7349123015154203,\n",
       "     -1.0277068507637959],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 134},\n",
       "  {'file_path': './images/frame_0345.jpg',\n",
       "   'transform_matrix': [[-0.13096151299435393,\n",
       "     -0.7283376659588773,\n",
       "     0.6725870400623288,\n",
       "     88.62735219299422],\n",
       "    [0.991381599343819,\n",
       "     -0.09854365778873413,\n",
       "     0.0863230675550209,\n",
       "     2.570870170264032],\n",
       "    [0.0034068455676053307,\n",
       "     0.6780954150082361,\n",
       "     0.7349659866606663,\n",
       "     -1.0271906658728296],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 135},\n",
       "  {'file_path': './images/frame_0346.jpg',\n",
       "   'transform_matrix': [[-0.13901545915677063,\n",
       "     -0.7275909450737524,\n",
       "     0.6717783256120399,\n",
       "     88.52811609626805],\n",
       "    [0.9902843464999336,\n",
       "     -0.10447213348241279,\n",
       "     0.09177410529573346,\n",
       "     3.364285746632742],\n",
       "    [0.003408106898512006,\n",
       "     0.6780095795579267,\n",
       "     0.7350451651667751,\n",
       "     -1.025202023585634],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 136},\n",
       "  {'file_path': './images/frame_0347.jpg',\n",
       "   'transform_matrix': [[-0.14719444103133172,\n",
       "     -0.7268383100047603,\n",
       "     0.6708501081753642,\n",
       "     88.4443943268736],\n",
       "    [0.9891015697441665,\n",
       "     -0.11052765467958196,\n",
       "     0.0972713846958945,\n",
       "     4.1569770000146695],\n",
       "    [0.0034469202339799877,\n",
       "     0.6778567021579525,\n",
       "     0.7351859697249706,\n",
       "     -1.026891786244272],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 137},\n",
       "  {'file_path': './images/frame_0348.jpg',\n",
       "   'transform_matrix': [[-0.15539072007648852,\n",
       "     -0.7259357409691165,\n",
       "     0.6699783758433776,\n",
       "     88.35521164209266],\n",
       "    [0.9878464006160628,\n",
       "     -0.11668557060632738,\n",
       "     0.10268381762558783,\n",
       "     4.930088749336143],\n",
       "    [0.003634955845616256,\n",
       "     0.6777918394285192,\n",
       "     0.7352448636339494,\n",
       "     -1.0363507555128693],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 138},\n",
       "  {'file_path': './images/frame_0349.jpg',\n",
       "   'transform_matrix': [[-0.1634587696032263,\n",
       "     -0.7251200461708518,\n",
       "     0.6689410656260991,\n",
       "     88.21844142028155],\n",
       "    [0.9865432860845392,\n",
       "     -0.12267465276452648,\n",
       "     0.10808919580893311,\n",
       "     5.705042334256845],\n",
       "    [0.0036844702900702096,\n",
       "     0.6776074440339956,\n",
       "     0.7354145609575574,\n",
       "     -1.0337751369369625],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 139},\n",
       "  {'file_path': './images/frame_0350.jpg',\n",
       "   'transform_matrix': [[-0.17168900342824697,\n",
       "     -0.7241425998918359,\n",
       "     0.6679374080882937,\n",
       "     88.13191183134326],\n",
       "    [0.985143705450242,\n",
       "     -0.12884488160936408,\n",
       "     0.11353799405853476,\n",
       "     6.492964446471198],\n",
       "    [0.003842618063550526,\n",
       "     0.6775075582640842,\n",
       "     0.7355057734521574,\n",
       "     -1.0289635138680786],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 140},\n",
       "  {'file_path': './images/frame_0351.jpg',\n",
       "   'transform_matrix': [[-0.1798233718559015,\n",
       "     -0.7232085991490551,\n",
       "     0.6668079761454835,\n",
       "     88.01733855494808],\n",
       "    [0.9836910607536331,\n",
       "     -0.1349125791089385,\n",
       "     0.11895584471376985,\n",
       "     7.259270161943451],\n",
       "    [0.003930894016160697,\n",
       "     0.677324086471931,\n",
       "     0.7356742689242284,\n",
       "     -1.0215739454860526],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 141},\n",
       "  {'file_path': './images/frame_0352.jpg',\n",
       "   'transform_matrix': [[-0.18815475194662157,\n",
       "     -0.7222465669465732,\n",
       "     0.6655506636265901,\n",
       "     87.88788103602525],\n",
       "    [0.9821319943629563,\n",
       "     -0.14099489311287436,\n",
       "     0.12464824814144448,\n",
       "     8.078930289652467],\n",
       "    [0.0038124753831708046,\n",
       "     0.6771117608268064,\n",
       "     0.7358703203564296,\n",
       "     -1.0025371756855717],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 142},\n",
       "  {'file_path': './images/frame_0353.jpg',\n",
       "   'transform_matrix': [[-0.19637679897615218,\n",
       "     -0.7210222117915421,\n",
       "     0.664502161717411,\n",
       "     87.78126257164328],\n",
       "    [0.9805207633546499,\n",
       "     -0.14709598267649138,\n",
       "     0.13016068727097255,\n",
       "     8.8668356609294],\n",
       "    [0.003896851844051501,\n",
       "     0.6771187059767806,\n",
       "     0.735863487721762,\n",
       "     -1.0068027945486844],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 143},\n",
       "  {'file_path': './images/frame_0354.jpg',\n",
       "   'transform_matrix': [[-0.20467871961193665,\n",
       "     -0.7198278156880121,\n",
       "     0.6632906885369669,\n",
       "     87.6399199824384],\n",
       "    [0.9788212688812614,\n",
       "     -0.15324838629535334,\n",
       "     0.13573450439570467,\n",
       "     9.658825307843665],\n",
       "    [0.003942755850369016,\n",
       "     0.677024997957753,\n",
       "     0.7359494594172952,\n",
       "     -0.9951751586820008],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 144},\n",
       "  {'file_path': './images/frame_0355.jpg',\n",
       "   'transform_matrix': [[-0.21289346480856877,\n",
       "     -0.7186303204775161,\n",
       "     0.6620021413350452,\n",
       "     87.49232317451666],\n",
       "    [0.9770676950404699,\n",
       "     -0.15927388652573723,\n",
       "     0.14131719067151766,\n",
       "     10.46672198229871],\n",
       "    [0.0038848359175380656,\n",
       "     0.6769064127051605,\n",
       "     0.7360588403711518,\n",
       "     -0.99261675238957],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 145},\n",
       "  {'file_path': './images/frame_0356.jpg',\n",
       "   'transform_matrix': [[-0.22123898374748066,\n",
       "     -0.7172867011559995,\n",
       "     0.6607216512383455,\n",
       "     87.36982291863991],\n",
       "    [0.9752117610746868,\n",
       "     -0.1654432119757571,\n",
       "     0.14693728142562293,\n",
       "     11.277297144028738],\n",
       "    [0.003915754332182029,\n",
       "     0.6768517799015442,\n",
       "     0.7361089151152305,\n",
       "     -0.9955917837978048],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 146},\n",
       "  {'file_path': './images/frame_0357.jpg',\n",
       "   'transform_matrix': [[-0.22933558653448502,\n",
       "     -0.7160768129610017,\n",
       "     0.6592717093039093,\n",
       "     87.20452023869721],\n",
       "    [0.9733397304260959,\n",
       "     -0.1714086669644699,\n",
       "     0.15241009829902474,\n",
       "     12.072576061009025],\n",
       "    [0.003867547406131986,\n",
       "     0.6766484070986039,\n",
       "     0.7362961192672302,\n",
       "     -0.9748242105333534],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 147},\n",
       "  {'file_path': './images/frame_0358.jpg',\n",
       "   'transform_matrix': [[-0.23756605602889092,\n",
       "     -0.7146775445659079,\n",
       "     0.6578741340987061,\n",
       "     87.06397014306911],\n",
       "    [0.9713636512040674,\n",
       "     -0.17748833271748152,\n",
       "     0.15795742739317906,\n",
       "     12.873989494447429],\n",
       "    [0.0038763568438313,\n",
       "     0.676560343977101,\n",
       "     0.7363769923179336,\n",
       "     -0.9669616436506158],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 148},\n",
       "  {'file_path': './images/frame_0359.jpg',\n",
       "   'transform_matrix': [[-0.2458943783220888,\n",
       "     -0.7131215664375913,\n",
       "     0.6565010176619603,\n",
       "     86.90170221607686],\n",
       "    [0.9692887257382614,\n",
       "     -0.18364060509048444,\n",
       "     0.1635710680979318,\n",
       "     13.687727019089953],\n",
       "    [0.003914187820094163,\n",
       "     0.6765602409568543,\n",
       "     0.7363768868521827,\n",
       "     -0.9768181925278875],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 149},\n",
       "  {'file_path': './images/frame_0360.jpg',\n",
       "   'transform_matrix': [[-0.25418171071456724,\n",
       "     -0.711494086555403,\n",
       "     0.6551090159163654,\n",
       "     86.75374567588668],\n",
       "    [0.9671487740343176,\n",
       "     -0.18969274730469604,\n",
       "     0.1692333019943561,\n",
       "     14.522604242998401],\n",
       "    [0.0038609353960221433,\n",
       "     0.6766038918131416,\n",
       "     0.7363370605647785,\n",
       "     -1.0034545499943008],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 150},\n",
       "  {'file_path': './images/frame_0361.jpg',\n",
       "   'transform_matrix': [[-0.26243330559025,\n",
       "     -0.709913482673801,\n",
       "     0.6535683646221939,\n",
       "     86.58990729557821],\n",
       "    [0.9649420920296785,\n",
       "     -0.1958356117729358,\n",
       "     0.1747431606412889,\n",
       "     15.322306761692063],\n",
       "    [0.003939434776939666,\n",
       "     0.6765140503193372,\n",
       "     0.736419188081193,\n",
       "     -0.993132019618597],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 151},\n",
       "  {'file_path': './images/frame_0362.jpg',\n",
       "   'transform_matrix': [[-0.270752818628755,\n",
       "     -0.708358051939526,\n",
       "     0.6518602468758351,\n",
       "     86.40011720820019],\n",
       "    [0.9626405266722691,\n",
       "     -0.20205462276035102,\n",
       "     0.18026964755418085,\n",
       "     16.127912289524126],\n",
       "    [0.004015919909661666,\n",
       "     0.6763156065577759,\n",
       "     0.7366010268209425,\n",
       "     -0.9783388984722209],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 152},\n",
       "  {'file_path': './images/frame_0363.jpg',\n",
       "   'transform_matrix': [[-0.27905551782566634,\n",
       "     -0.7066347438769971,\n",
       "     0.6502271577817554,\n",
       "     86.2351639130041],\n",
       "    [0.9602659338734438,\n",
       "     -0.2082833281081354,\n",
       "     0.18576165232458902,\n",
       "     16.922030721053847],\n",
       "    [0.004165838836523962,\n",
       "     0.6762288029787621,\n",
       "     0.7366798842161354,\n",
       "     -0.9719447113539375],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 153},\n",
       "  {'file_path': './images/frame_0364.jpg',\n",
       "   'transform_matrix': [[-0.2873822029671269,\n",
       "     -0.7048656986522028,\n",
       "     0.6485181695845561,\n",
       "     86.05742247417922],\n",
       "    [0.9578070744276427,\n",
       "     -0.2144065362158338,\n",
       "     0.19140388032714625,\n",
       "     17.749621533099397],\n",
       "    [0.004132504582120819,\n",
       "     0.6761613595078252,\n",
       "     0.7367419753987202,\n",
       "     -0.9681289262560048],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 154},\n",
       "  {'file_path': './images/frame_0365.jpg',\n",
       "   'transform_matrix': [[-0.2957828169607108,\n",
       "     -0.7030626289324758,\n",
       "     0.6466958056067337,\n",
       "     85.85980848550754],\n",
       "    [0.9552465137051209,\n",
       "     -0.22058203361746667,\n",
       "     0.1970981088173982,\n",
       "     18.59315317026451],\n",
       "    [0.00407716138984006,\n",
       "     0.6760521475771958,\n",
       "     0.7368425004784012,\n",
       "     -0.9469910376089812],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 155},\n",
       "  {'file_path': './images/frame_0366.jpg',\n",
       "   'transform_matrix': [[-0.30411633332894517,\n",
       "     -0.7010477398674549,\n",
       "     0.6450157534737359,\n",
       "     85.67584435698838],\n",
       "    [0.9526261495422965,\n",
       "     -0.22670069395475262,\n",
       "     0.20275654013780128,\n",
       "     19.419870330986434],\n",
       "    [0.0040835047172930496,\n",
       "     0.6761204491709792,\n",
       "     0.7367797928839098,\n",
       "     -0.967961967517502],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 156},\n",
       "  {'file_path': './images/frame_0367.jpg',\n",
       "   'transform_matrix': [[-0.3125969759125765,\n",
       "     -0.6990423776166617,\n",
       "     0.6431351995858698,\n",
       "     85.47024156573771],\n",
       "    [0.9498766662486463,\n",
       "     -0.23302242583507757,\n",
       "     0.20841033557454283,\n",
       "     20.234702025420802],\n",
       "    [0.0041772678475114075,\n",
       "     0.6760475599793112,\n",
       "     0.7368461488528999,\n",
       "     -0.9697946722827085],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 157},\n",
       "  {'file_path': './images/frame_0368.jpg',\n",
       "   'transform_matrix': [[-0.3209626444698371,\n",
       "     -0.6970067216503808,\n",
       "     0.6412211871336735,\n",
       "     85.27435782606057],\n",
       "    [0.9470824936348651,\n",
       "     -0.23921842367256932,\n",
       "     0.21403106322675877,\n",
       "     21.056812870939936],\n",
       "    [0.00421083190054245,\n",
       "     0.6759853369340193,\n",
       "     0.7369030418887588,\n",
       "     -0.9561032643998336],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 158},\n",
       "  {'file_path': './images/frame_0369.jpg',\n",
       "   'transform_matrix': [[-0.32950682157505323,\n",
       "     -0.6948683636437504,\n",
       "     0.6392051405789558,\n",
       "     85.04758900826266],\n",
       "    [0.9441439630523629,\n",
       "     -0.245498547683887,\n",
       "     0.21982411177320996,\n",
       "     21.886106819709855],\n",
       "    [0.0041751128469171665,\n",
       "     0.6759352190056077,\n",
       "     0.7369492167989302,\n",
       "     -0.958033748216979],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 159},\n",
       "  {'file_path': './images/frame_0370.jpg',\n",
       "   'transform_matrix': [[-0.33802195388154654,\n",
       "     -0.6926476500884912,\n",
       "     0.6371659058055389,\n",
       "     84.81574294837107],\n",
       "    [0.9411288442847529,\n",
       "     -0.2517936497376102,\n",
       "     0.2255580998480416,\n",
       "     22.718262798347368],\n",
       "    [0.0042020410929757505,\n",
       "     0.6758988021728585,\n",
       "     0.7369824638836043,\n",
       "     -0.9625565984602029],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 160},\n",
       "  {'file_path': './images/frame_0371.jpg',\n",
       "   'transform_matrix': [[-0.3464030945941999,\n",
       "     -0.6903251542234933,\n",
       "     0.6351819247285553,\n",
       "     84.59771734288162],\n",
       "    [0.9380764436090624,\n",
       "     -0.2579289420507596,\n",
       "     0.23126877609904314,\n",
       "     23.545345440987443],\n",
       "    [0.00418114832735101,\n",
       "     0.675961420717844,\n",
       "     0.7369251493196434,\n",
       "     -0.9659973623774225],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 161},\n",
       "  {'file_path': './images/frame_0372.jpg',\n",
       "   'transform_matrix': [[-0.35486453372963966,\n",
       "     -0.6878806260950472,\n",
       "     0.6331598589171072,\n",
       "     84.38322210659021],\n",
       "    [0.9349078476040192,\n",
       "     -0.26420840269742385,\n",
       "     0.2369414198330374,\n",
       "     24.366152677200855],\n",
       "    [0.00429874275401597,\n",
       "     0.676028227359747,\n",
       "     0.7368631871817,\n",
       "     -0.9598231352299805],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 162},\n",
       "  {'file_path': './images/frame_0373.jpg',\n",
       "   'transform_matrix': [[-0.3633034378304233,\n",
       "     -0.6855054257495901,\n",
       "     0.6309460542142005,\n",
       "     84.11618529524151],\n",
       "    [0.9316613312067374,\n",
       "     -0.2703735859174404,\n",
       "     0.2427041161007254,\n",
       "     25.20894271995567],\n",
       "    [0.004216158759547432,\n",
       "     0.6760032805438281,\n",
       "     0.7368865507656499,\n",
       "     -0.9636924054047371],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 163},\n",
       "  {'file_path': './images/frame_0374.jpg',\n",
       "   'transform_matrix': [[-0.3717973950975661,\n",
       "     -0.6830276085690978,\n",
       "     0.6286811456780326,\n",
       "     83.8696095843265],\n",
       "    [0.9283044821033115,\n",
       "     -0.2766059930755325,\n",
       "     0.24847517602690422,\n",
       "     26.04071409246823],\n",
       "    [0.0041815673576936965,\n",
       "     0.6759899485399747,\n",
       "     0.7368989781288581,\n",
       "     -0.9565564802283607],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 164},\n",
       "  {'file_path': './images/frame_0375.jpg',\n",
       "   'transform_matrix': [[-0.38021454713137615,\n",
       "     -0.6804445698124272,\n",
       "     0.6264440003403844,\n",
       "     83.62691792071762],\n",
       "    [0.9248887362433329,\n",
       "     -0.28280264804188754,\n",
       "     0.2541721617933542,\n",
       "     26.866958866570588],\n",
       "    [0.004209954856440251,\n",
       "     0.6760309531916991,\n",
       "     0.7368611990102543,\n",
       "     -0.9715373641426707],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 165},\n",
       "  {'file_path': './images/frame_0376.jpg',\n",
       "   'transform_matrix': [[-0.3887333579562601,\n",
       "     -0.6777881619572019,\n",
       "     0.6240910061222866,\n",
       "     83.35001895331236],\n",
       "    [0.9213405529947819,\n",
       "     -0.28908315311990396,\n",
       "     0.25992790536901506,\n",
       "     27.706360620765285],\n",
       "    [0.0042381386621536685,\n",
       "     0.6760430001804116,\n",
       "     0.7368499847918492,\n",
       "     -0.9686869685026345],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 166},\n",
       "  {'file_path': './images/frame_0377.jpg',\n",
       "   'transform_matrix': [[-0.3971479454629025,\n",
       "     -0.6751582744709965,\n",
       "     0.6216388129999141,\n",
       "     83.05914436996481],\n",
       "    [0.91774495492134,\n",
       "     -0.2952697487414515,\n",
       "     0.26563127299809375,\n",
       "     28.549985920259267],\n",
       "    [0.004207984199491595,\n",
       "     0.6760007987358496,\n",
       "     0.7368888742391692,\n",
       "     -0.9687747411720686],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 167},\n",
       "  {'file_path': './images/frame_0378.jpg',\n",
       "   'transform_matrix': [[-0.40537470078139204,\n",
       "     -0.6724831068106778,\n",
       "     0.619223564652263,\n",
       "     82.79788858141275],\n",
       "    [0.91414044865746,\n",
       "     -0.3014003895330239,\n",
       "     0.2711181390421514,\n",
       "     29.34937162855126],\n",
       "    [0.0043118551384244055,\n",
       "     0.6759617417011113,\n",
       "     0.7369241016968202,\n",
       "     -0.9613530004153183],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 168},\n",
       "  {'file_path': './images/frame_0379.jpg',\n",
       "   'transform_matrix': [[-0.4137004763515435,\n",
       "     -0.6696572617177922,\n",
       "     0.6167747301042209,\n",
       "     82.53414071392177],\n",
       "    [0.9104027471508794,\n",
       "     -0.3075177950235901,\n",
       "     0.2767664064223857,\n",
       "     30.18265585605921],\n",
       "    [0.0043305711676315745,\n",
       "     0.6760118028351707,\n",
       "     0.7368780690052489,\n",
       "     -0.9767725867533578],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 169},\n",
       "  {'file_path': './images/frame_0380.jpg',\n",
       "   'transform_matrix': [[-0.42194778035462377,\n",
       "     -0.6668661888557973,\n",
       "     0.6142064447844474,\n",
       "     82.22232340440692],\n",
       "    [0.9066105004826864,\n",
       "     -0.3134845744843387,\n",
       "     0.2824620717457585,\n",
       "     31.03430454633009],\n",
       "    [0.0041798407073842,\n",
       "     0.6760302565132106,\n",
       "     0.7368620096126165,\n",
       "     -0.9758302790404954],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 170},\n",
       "  {'file_path': './images/frame_0381.jpg',\n",
       "   'transform_matrix': [[-0.4302893230709981,\n",
       "     -0.6639253553687492,\n",
       "     0.6115997228167965,\n",
       "     81.92070073750376],\n",
       "    [0.9026804071110555,\n",
       "     -0.3197594087356896,\n",
       "     0.28796180847956465,\n",
       "     31.837000523570556],\n",
       "    [0.004379619723387796,\n",
       "     0.6759859784222467,\n",
       "     0.7369014696060772,\n",
       "     -0.9878079782350998],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 171},\n",
       "  {'file_path': './images/frame_0382.jpg',\n",
       "   'transform_matrix': [[-0.4385321526289006,\n",
       "     -0.660982409934365,\n",
       "     0.6089267647821218,\n",
       "     81.6299743309506],\n",
       "    [0.8987048456328416,\n",
       "     -0.325824734602791,\n",
       "     0.29354359600759683,\n",
       "     32.65984441274216],\n",
       "    [0.0043762480177700035,\n",
       "     0.6759737391928622,\n",
       "     0.7369127169311893,\n",
       "     -0.9636273161237303],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 172},\n",
       "  {'file_path': './images/frame_0383.jpg',\n",
       "   'transform_matrix': [[-0.44687663824278373,\n",
       "     -0.6579883447179558,\n",
       "     0.6060962039215828,\n",
       "     81.28210908945779],\n",
       "    [0.8945858358679839,\n",
       "     -0.33184467468418855,\n",
       "     0.2993247302648506,\n",
       "     33.523241894853854],\n",
       "    [0.004177613817561675,\n",
       "     0.6759663084052856,\n",
       "     0.7369206859925439,\n",
       "     -0.9572868533222288],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 173},\n",
       "  {'file_path': './images/frame_0384.jpg',\n",
       "   'transform_matrix': [[-0.45500401004186075,\n",
       "     -0.6548627397952783,\n",
       "     0.6034286559931072,\n",
       "     80.97975971452296],\n",
       "    [0.8904786812024964,\n",
       "     -0.3379273433465927,\n",
       "     0.30471762164761124,\n",
       "     34.31048426977857],\n",
       "    [0.004366826042899985,\n",
       "     0.6759880935686187,\n",
       "     0.7368996052270455,\n",
       "     -0.9598635261189924],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 174},\n",
       "  {'file_path': './images/frame_0385.jpg',\n",
       "   'transform_matrix': [[-0.4632065180442535,\n",
       "     -0.6516739218702992,\n",
       "     0.6006336830344283,\n",
       "     80.64027082766121],\n",
       "    [0.8862395039007063,\n",
       "     -0.34395522203914974,\n",
       "     0.3102810773441224,\n",
       "     35.14329813344807],\n",
       "    [0.0043890052573132415,\n",
       "     0.6760295147300763,\n",
       "     0.7368614739872541,\n",
       "     -0.9617253384627215],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 175},\n",
       "  {'file_path': './images/frame_0386.jpg',\n",
       "   'transform_matrix': [[-0.47119575125411334,\n",
       "     -0.6484535457797364,\n",
       "     0.5978984553966994,\n",
       "     80.31625221939959],\n",
       "    [0.8820172790699509,\n",
       "     -0.34985534512384936,\n",
       "     0.31566874553923246,\n",
       "     35.948290669945024],\n",
       "    [0.004481453125072105,\n",
       "     0.6760985404909254,\n",
       "     0.7367975842278042,\n",
       "     -0.9614621966015342],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 176},\n",
       "  {'file_path': './images/frame_0387.jpg',\n",
       "   'transform_matrix': [[-0.4791853200557147,\n",
       "     -0.6452137779468461,\n",
       "     0.5950467290815573,\n",
       "     79.97011732799116],\n",
       "    [0.877702908654283,\n",
       "     -0.35561804666716257,\n",
       "     0.32120617837215243,\n",
       "     36.778725945047356],\n",
       "    [0.004362703624302707,\n",
       "     0.6761915302872328,\n",
       "     0.7367129571175579,\n",
       "     -0.9752886725016127],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 177},\n",
       "  {'file_path': './images/frame_0388.jpg',\n",
       "   'transform_matrix': [[-0.4872736820186671,\n",
       "     -0.6419639477514409,\n",
       "     0.5919853449194127,\n",
       "     79.58978715397666],\n",
       "    [0.8732390936996303,\n",
       "     -0.3614914080416508,\n",
       "     0.32676818564039095,\n",
       "     37.62238328265937],\n",
       "    [0.004224221421659709,\n",
       "     0.6761702830644436,\n",
       "     0.7367332653368728,\n",
       "     -0.9660070870298715],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 178},\n",
       "  {'file_path': './images/frame_0389.jpg',\n",
       "   'transform_matrix': [[-0.4954149515162557,\n",
       "     -0.6384825543464244,\n",
       "     0.5889856140937665,\n",
       "     79.23053086347915],\n",
       "    [0.8686459085349612,\n",
       "     -0.3674771903042134,\n",
       "     0.332287225441474,\n",
       "     38.453968959922825],\n",
       "    [0.004279182120220484,\n",
       "     0.6762400035500608,\n",
       "     0.7366689529218643,\n",
       "     -0.9919731257853338],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 179},\n",
       "  {'file_path': './images/frame_0390.jpg',\n",
       "   'transform_matrix': [[-0.5033559908376595,\n",
       "     -0.6352019632780208,\n",
       "     0.5857910995701333,\n",
       "     78.84789576673407],\n",
       "    [0.8640672442123355,\n",
       "     -0.37357816242920683,\n",
       "     0.33738280044382407,\n",
       "     39.23172913318897],\n",
       "    [0.0045325453266411644,\n",
       "     0.6759865548986643,\n",
       "     0.7369000160327701,\n",
       "     -0.98189712596446],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 180},\n",
       "  {'file_path': './images/frame_0391.jpg',\n",
       "   'transform_matrix': [[-0.5114671227880402,\n",
       "     -0.6316521064078925,\n",
       "     0.5825950555723901,\n",
       "     78.47532129801074],\n",
       "    [0.8592910038505684,\n",
       "     -0.379521050000989,\n",
       "     0.342903402298124,\n",
       "     40.059127428620926],\n",
       "    [0.0045114308601750175,\n",
       "     0.6760025067088281,\n",
       "     0.7368855120810658,\n",
       "     -0.9882387469921813],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 181},\n",
       "  {'file_path': './images/frame_0392.jpg',\n",
       "   'transform_matrix': [[-0.5195781670858042,\n",
       "     -0.6279665070284137,\n",
       "     0.579393298492733,\n",
       "     78.10351528736979],\n",
       "    [0.8544105437901166,\n",
       "     -0.38551353643315744,\n",
       "     0.34837040041754064,\n",
       "     40.88790395905107],\n",
       "    [0.00459901598531269,\n",
       "     0.6760453973494189,\n",
       "     0.7368456213988335,\n",
       "     -0.9915860499042595],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 182},\n",
       "  {'file_path': './images/frame_0393.jpg',\n",
       "   'transform_matrix': [[-0.5274635833962719,\n",
       "     -0.6244546014192394,\n",
       "     0.576054354169034,\n",
       "     77.69620660792009],\n",
       "    [0.8495649236909494,\n",
       "     -0.39139923916749175,\n",
       "     0.3536185459122582,\n",
       "     41.68252861030561],\n",
       "    [0.004648507798790519,\n",
       "     0.6759164788237134,\n",
       "     0.736963571033058,\n",
       "     -0.9678536803318442],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 183},\n",
       "  {'file_path': './images/frame_0394.jpg',\n",
       "   'transform_matrix': [[-0.5354863617925973,\n",
       "     -0.6206554803783777,\n",
       "     0.5727487503350948,\n",
       "     77.29204414101741],\n",
       "    [0.8445308218269364,\n",
       "     -0.39729345190357873,\n",
       "     0.35906211727061665,\n",
       "     42.5056878166351],\n",
       "    [0.004695457213818818,\n",
       "     0.6759768396556378,\n",
       "     0.736907908039213,\n",
       "     -0.9778525914049226],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 184},\n",
       "  {'file_path': './images/frame_0395.jpg',\n",
       "   'transform_matrix': [[-0.5433406937312615,\n",
       "     -0.6170686555943423,\n",
       "     0.5692162724471449,\n",
       "     76.83542514951613],\n",
       "    [0.8395006818747845,\n",
       "     -0.4029335280004729,\n",
       "     0.3645314487734409,\n",
       "     43.33613654528726],\n",
       "    [0.0044153898359214246,\n",
       "     0.6759222191170245,\n",
       "     0.7369597397663686,\n",
       "     -0.9581672550481454],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 185},\n",
       "  {'file_path': './images/frame_0396.jpg',\n",
       "   'transform_matrix': [[-0.5511193971312626,\n",
       "     -0.6131761304508875,\n",
       "     0.5659350167209569,\n",
       "     76.43255116186398],\n",
       "    [0.8344148611765643,\n",
       "     -0.40854925932423214,\n",
       "     0.36991802085504877,\n",
       "     44.15079049854902],\n",
       "    [0.004387431295044389,\n",
       "     0.6760935850537982,\n",
       "     0.7368026972641548,\n",
       "     -0.993993409135983],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 186},\n",
       "  {'file_path': './images/frame_0397.jpg',\n",
       "   'transform_matrix': [[-0.558786757426997,\n",
       "     -0.609322185741796,\n",
       "     0.5625689590504107,\n",
       "     76.02093625919235],\n",
       "    [0.8292989588057952,\n",
       "     -0.4142650179373574,\n",
       "     0.3750303078912224,\n",
       "     44.954816250255035],\n",
       "    [0.0045383529883205745,\n",
       "     0.6760998216803501,\n",
       "     0.7367960603015954,\n",
       "     -0.9918726507959791],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 187},\n",
       "  {'file_path': './images/frame_0398.jpg',\n",
       "   'transform_matrix': [[-0.5666409064899314,\n",
       "     -0.6053257448996069,\n",
       "     0.5590159440069709,\n",
       "     75.5950733070155],\n",
       "    [0.8239521972725684,\n",
       "     -0.4200369541572785,\n",
       "     0.3803573763606836,\n",
       "     45.75533380435498],\n",
       "    [0.0045672422724528485,\n",
       "     0.6761284639060925,\n",
       "     0.7367695980386354,\n",
       "     -0.9959688538517542],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 188},\n",
       "  {'file_path': './images/frame_0399.jpg',\n",
       "   'transform_matrix': [[-0.5744562042381964,\n",
       "     -0.6013465000704525,\n",
       "     0.5553219392976122,\n",
       "     75.13996155511924],\n",
       "    [0.8185228548625589,\n",
       "     -0.4257685753304494,\n",
       "     0.3856701392754251,\n",
       "     46.56969468004768],\n",
       "    [0.004517242509525736,\n",
       "     0.6760943034178715,\n",
       "     0.7368012536675094,\n",
       "     -0.9925183648958422],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 189},\n",
       "  {'file_path': './images/frame_0400.jpg',\n",
       "   'transform_matrix': [[-0.5819706921343452,\n",
       "     -0.5973358697521499,\n",
       "     0.5518151612669896,\n",
       "     74.68672659578431],\n",
       "    [0.8131970291438742,\n",
       "     -0.43127151258184093,\n",
       "     0.39078827288820744,\n",
       "     47.367101223333464],\n",
       "    [0.004550306390589204,\n",
       "     0.6761617714295992,\n",
       "     0.7367391353586004,\n",
       "     -1.0050384372606378],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 190},\n",
       "  {'file_path': './images/frame_0401.jpg',\n",
       "   'transform_matrix': [[-0.589695415275413,\n",
       "     -0.5932299109080762,\n",
       "     0.5480306469597793,\n",
       "     74.22478660835291],\n",
       "    [0.8076127603969557,\n",
       "     -0.43699074998491216,\n",
       "     0.3959806986099616,\n",
       "     48.15487260179951],\n",
       "    [0.004576728871965261,\n",
       "     0.6761045460811663,\n",
       "     0.7367914876823786,\n",
       "     -1.002847990856225],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 191},\n",
       "  {'file_path': './images/frame_0402.jpg',\n",
       "   'transform_matrix': [[-0.5970929719549427,\n",
       "     -0.5891020604017521,\n",
       "     0.5444618859685446,\n",
       "     73.79123962301931],\n",
       "    [0.8021587789633312,\n",
       "     -0.4423909147587975,\n",
       "     0.4010381177281429,\n",
       "     48.955799845451715],\n",
       "    [0.004612610331635178,\n",
       "     0.6762019232221133,\n",
       "     0.7367018955158482,\n",
       "     -1.0115731230151819],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 192},\n",
       "  {'file_path': './images/frame_0403.jpg',\n",
       "   'transform_matrix': [[-0.6045553803760951,\n",
       "     -0.5849320906102549,\n",
       "     0.540709942050848,\n",
       "     73.32513614889339],\n",
       "    [0.7965498509950298,\n",
       "     -0.4478465122657946,\n",
       "     0.40613031939410665,\n",
       "     49.750202579901924],\n",
       "    [0.004596404911506856,\n",
       "     0.6762306934957034,\n",
       "     0.7366755881907648,\n",
       "     -1.0207553260127353],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 193},\n",
       "  {'file_path': './images/frame_0404.jpg',\n",
       "   'transform_matrix': [[-0.6122289213234806,\n",
       "     -0.5805794174532455,\n",
       "     0.5367525388153627,\n",
       "     72.83972599575723],\n",
       "    [0.790666584831152,\n",
       "     -0.453574456482,\n",
       "     0.411237843660455,\n",
       "     50.556989145147014],\n",
       "    [0.004701013351395967,\n",
       "     0.6761639981962277,\n",
       "     0.7367361454528762,\n",
       "     -1.0119910233257687],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 194},\n",
       "  {'file_path': './images/frame_0405.jpg',\n",
       "   'transform_matrix': [[-0.6196715145122688,\n",
       "     -0.5762445386354985,\n",
       "     0.5328690700301834,\n",
       "     72.35559302996123],\n",
       "    [0.7848467561023916,\n",
       "     -0.4590829375531636,\n",
       "     0.4162432292339551,\n",
       "     51.34119988796757],\n",
       "    [0.004773210410608519,\n",
       "     0.6761546333053701,\n",
       "     0.7367442760701005,\n",
       "     -1.025615086584883],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 195},\n",
       "  {'file_path': './images/frame_0406.jpg',\n",
       "   'transform_matrix': [[-0.6270641002194874,\n",
       "     -0.5719401016494059,\n",
       "     0.5288432039283402,\n",
       "     71.84405626921907],\n",
       "    [0.778953751050188,\n",
       "     -0.46445691317868315,\n",
       "     0.42132034074486696,\n",
       "     52.13022563269716],\n",
       "    [0.004654883539500187,\n",
       "     0.6761392577907279,\n",
       "     0.7367591439089421,\n",
       "     -1.0191502027576889],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 196},\n",
       "  {'file_path': './images/frame_0407.jpg',\n",
       "   'transform_matrix': [[-0.6343824269589128,\n",
       "     -0.5675735444559987,\n",
       "     0.5248039710209653,\n",
       "     71.33611471408469],\n",
       "    [0.773005786958922,\n",
       "     -0.46979769177971537,\n",
       "     0.4263240341881624,\n",
       "     52.91560014848793],\n",
       "    [0.004581451051522459,\n",
       "     0.6761289820974294,\n",
       "     0.736769034280185,\n",
       "     -1.004393339493831],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 197},\n",
       "  {'file_path': './images/frame_0408.jpg',\n",
       "   'transform_matrix': [[-0.6417128124845856,\n",
       "     -0.562959667782166,\n",
       "     0.5208465020941551,\n",
       "     70.83368328275778],\n",
       "    [0.7669311550813834,\n",
       "     -0.4751108864269313,\n",
       "     0.43137715396639925,\n",
       "     53.71094362334464],\n",
       "    [0.004611904016580119,\n",
       "     0.6762736561845426,\n",
       "     0.7366360514474789,\n",
       "     -1.029033244550052],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 198},\n",
       "  {'file_path': './images/frame_0409.jpg',\n",
       "   'transform_matrix': [[-0.6489104488030615,\n",
       "     -0.5583683040784183,\n",
       "     0.5168559436001491,\n",
       "     70.33607638969443],\n",
       "    [0.7608503106278144,\n",
       "     -0.4803912832979495,\n",
       "     0.4362694348093934,\n",
       "     54.479190596090525],\n",
       "    [0.004694065590477133,\n",
       "     0.676349799979227,\n",
       "     0.7365656208487416,\n",
       "     -1.0560105296686257],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 199},\n",
       "  {'file_path': './images/frame_0410.jpg',\n",
       "   'transform_matrix': [[-0.6562188158109719,\n",
       "     -0.5538741696580827,\n",
       "     0.5124453824176928,\n",
       "     69.78744095151426],\n",
       "    [0.7545568508389803,\n",
       "     -0.4857797079857677,\n",
       "     0.4412052064076569,\n",
       "     55.25773651567213],\n",
       "    [0.004563400881657885,\n",
       "     0.6761963320625393,\n",
       "     0.7367073339376781,\n",
       "     -1.0227114911753352],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 200},\n",
       "  {'file_path': './images/frame_0411.jpg',\n",
       "   'transform_matrix': [[-0.6634096942608214,\n",
       "     -0.5490790081050165,\n",
       "     0.5083304244476958,\n",
       "     69.24841294323275],\n",
       "    [0.7482416202487321,\n",
       "     -0.49107182188506626,\n",
       "     0.4460750424289997,\n",
       "     56.04052824079063],\n",
       "    [0.004696305815820674,\n",
       "     0.6762844879256753,\n",
       "     0.7366255738859407,\n",
       "     -1.029274062409809],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 201},\n",
       "  {'file_path': './images/frame_0412.jpg',\n",
       "   'transform_matrix': [[-0.670554138744287,\n",
       "     -0.5444102690123016,\n",
       "     0.5039589328574908,\n",
       "     68.68063724493925],\n",
       "    [0.7418458403084809,\n",
       "     -0.49635747781849393,\n",
       "     0.4508813629222961,\n",
       "     56.81112183922017],\n",
       "    [0.004679340756083515,\n",
       "     0.6762002020168411,\n",
       "     0.7367030545358637,\n",
       "     -1.0294022905852984],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 202},\n",
       "  {'file_path': './images/frame_0413.jpg',\n",
       "   'transform_matrix': [[-0.6777116160189235,\n",
       "     -0.5394822884626433,\n",
       "     0.4996657142011331,\n",
       "     68.14956102150434],\n",
       "    [0.735311733033093,\n",
       "     -0.5016918329007761,\n",
       "     0.455655527854682,\n",
       "     57.57608399606326],\n",
       "    [0.004860121077544228,\n",
       "     0.6762131063768055,\n",
       "     0.7366900392888062,\n",
       "     -1.0329217339935375],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 203},\n",
       "  {'file_path': './images/frame_0414.jpg',\n",
       "   'transform_matrix': [[-0.6847118287175498,\n",
       "     -0.5346853164676686,\n",
       "     0.49525884542139964,\n",
       "     67.57247973129942],\n",
       "    [0.7287984917410293,\n",
       "     -0.5067395294491038,\n",
       "     0.4605082059309059,\n",
       "     58.35445908937087],\n",
       "    [0.004740258460221819,\n",
       "     0.6762593153869082,\n",
       "     0.7366484020902784,\n",
       "     -1.02922893032884],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 204},\n",
       "  {'file_path': './images/frame_0415.jpg',\n",
       "   'transform_matrix': [[-0.6917624503919988,\n",
       "     -0.5297417477832682,\n",
       "     0.49075288372375936,\n",
       "     66.99711861156361],\n",
       "    [0.7221099938896495,\n",
       "     -0.5118584350819161,\n",
       "     0.46535803330358694,\n",
       "     59.137944502980666],\n",
       "    [0.004676425167554553,\n",
       "     0.6762947752947824,\n",
       "     0.7366162555609481,\n",
       "     -1.0304154608121],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 205},\n",
       "  {'file_path': './images/frame_0416.jpg',\n",
       "   'transform_matrix': [[-0.6987264474410941,\n",
       "     -0.5246638117984802,\n",
       "     0.4863221527294812,\n",
       "     66.43832905173663],\n",
       "    [0.7153723417422146,\n",
       "     -0.5170640502948619,\n",
       "     0.46998636210312794,\n",
       "     59.89557550802325],\n",
       "    [0.004874865804094115,\n",
       "     0.6762933183772862,\n",
       "     0.7366163066357074,\n",
       "     -1.0181320958153708],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 206},\n",
       "  {'file_path': './images/frame_0417.jpg',\n",
       "   'transform_matrix': [[-0.7056123090528872,\n",
       "     -0.5196184193927705,\n",
       "     0.4817758478180614,\n",
       "     65.83573224799439],\n",
       "    [0.7085813798757244,\n",
       "     -0.5220875581877541,\n",
       "     0.4746967554965621,\n",
       "     60.64912404387777],\n",
       "    [0.0048679981991666,\n",
       "     0.6763292687835619,\n",
       "     0.7365833440828169,\n",
       "     -1.0263358459081222],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 207},\n",
       "  {'file_path': './images/frame_0418.jpg',\n",
       "   'transform_matrix': [[-0.7124798540524523,\n",
       "     -0.514407652217782,\n",
       "     0.4772391695043335,\n",
       "     65.25992923990378],\n",
       "    [0.7016753225833989,\n",
       "     -0.5270710055129655,\n",
       "     0.4794245475828649,\n",
       "     61.4101623100922],\n",
       "    [0.004919273003147866,\n",
       "     0.6764472799023891,\n",
       "     0.7364746283924379,\n",
       "     -1.0407490801926824],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 208},\n",
       "  {'file_path': './images/frame_0419.jpg',\n",
       "   'transform_matrix': [[-0.7195053223680962,\n",
       "     -0.5090465133345358,\n",
       "     0.4724232618594623,\n",
       "     64.60224015653944],\n",
       "    [0.6944696856406105,\n",
       "     -0.5321646737353343,\n",
       "     0.48426502635891083,\n",
       "     62.177572834299625],\n",
       "    [0.004893547814562565,\n",
       "     0.6765148980548155,\n",
       "     0.7364126872207385,\n",
       "     -1.071925794268407],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 209},\n",
       "  {'file_path': './images/frame_0420.jpg',\n",
       "   'transform_matrix': [[-0.726385897846513,\n",
       "     -0.5036299775034907,\n",
       "     0.4676754998602649,\n",
       "     64.01170766529386],\n",
       "    [0.6872677889067803,\n",
       "     -0.537363904262222,\n",
       "     0.4887770664906925,\n",
       "     62.912385757861415],\n",
       "    [0.0051491495317685185,\n",
       "     0.6764590750044639,\n",
       "     0.7364622231338173,\n",
       "     -1.0685585640229343],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 210},\n",
       "  {'file_path': './images/frame_0421.jpg',\n",
       "   'transform_matrix': [[-0.7332441484523333,\n",
       "     -0.49812326266742,\n",
       "     0.46284579932195236,\n",
       "     63.391574742415095],\n",
       "    [0.6799454130480763,\n",
       "     -0.5423639837851338,\n",
       "     0.49347294187989665,\n",
       "     63.67027381350725],\n",
       "    [0.005220539751164372,\n",
       "     0.6765460252505245,\n",
       "     0.736381845025,\n",
       "     -1.081452247197454],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 211},\n",
       "  {'file_path': './images/frame_0422.jpg',\n",
       "   'transform_matrix': [[-0.7401588850722918,\n",
       "     -0.49252702750701777,\n",
       "     0.457801214528362,\n",
       "     62.73772479532106],\n",
       "    [0.6724117661578717,\n",
       "     -0.5474020668202204,\n",
       "     0.49821019055555515,\n",
       "     64.41663444204347],\n",
       "    [0.005219346797599973,\n",
       "     0.6765856223834883,\n",
       "     0.736345471910403,\n",
       "     -1.0982668768615766],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 212},\n",
       "  {'file_path': './images/frame_0423.jpg',\n",
       "   'transform_matrix': [[-0.7470986067960584,\n",
       "     -0.4867263843428477,\n",
       "     0.4527042064173106,\n",
       "     62.077586002791385],\n",
       "    [0.6646915349487366,\n",
       "     -0.5525358275358985,\n",
       "     0.5028810223668342,\n",
       "     65.1539464455122],\n",
       "    [0.005369831550526934,\n",
       "     0.6766103650357111,\n",
       "     0.736321654465873,\n",
       "     -1.1008160933477542],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 213},\n",
       "  {'file_path': './images/frame_0424.jpg',\n",
       "   'transform_matrix': [[-0.7538493054871189,\n",
       "     -0.4808969118607025,\n",
       "     0.4477157410449494,\n",
       "     61.447389161481226],\n",
       "    [0.6570249634816706,\n",
       "     -0.5573533320354583,\n",
       "     0.5076174353101769,\n",
       "     65.90366091799406],\n",
       "    [0.005424203028812999,\n",
       "     0.6768274694719563,\n",
       "     0.7361216982195881,\n",
       "     -1.1195600103438395],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 214},\n",
       "  {'file_path': './images/frame_0425.jpg',\n",
       "   'transform_matrix': [[-0.7605560711028255,\n",
       "     -0.4750976525721367,\n",
       "     0.4425343864933876,\n",
       "     60.78334151250085],\n",
       "    [0.6492488200806393,\n",
       "     -0.562299339353282,\n",
       "     0.5121478522719392,\n",
       "     66.61732758724675],\n",
       "    [0.005516550782082118,\n",
       "     0.6768320866236379,\n",
       "     0.7361167666777879,\n",
       "     -1.1147506311949618],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 215},\n",
       "  {'file_path': './images/frame_0426.jpg',\n",
       "   'transform_matrix': [[-0.7672293511767052,\n",
       "     -0.4691366878655184,\n",
       "     0.43734413313950293,\n",
       "     60.11165726017188],\n",
       "    [0.6413482069753379,\n",
       "     -0.5671502562570013,\n",
       "     0.516733068650669,\n",
       "     67.34065109412033],\n",
       "    [0.00562139684520478,\n",
       "     0.6769426526126042,\n",
       "     0.7360142967166601,\n",
       "     -1.112996475414668],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 216},\n",
       "  {'file_path': './images/frame_0427.jpg',\n",
       "   'transform_matrix': [[-0.7739352157608717,\n",
       "     -0.4630061968436976,\n",
       "     0.432029563212413,\n",
       "     59.43917215358185],\n",
       "    [0.6332390739486496,\n",
       "     -0.5719802560441237,\n",
       "     0.5213893573140475,\n",
       "     68.08760569536577],\n",
       "    [0.0057058767801100654,\n",
       "     0.6770995852753374,\n",
       "     0.7358692781942566,\n",
       "     -1.1307241625139441],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 217},\n",
       "  {'file_path': './images/frame_0428.jpg',\n",
       "   'transform_matrix': [[-0.7805667509411992,\n",
       "     -0.4569961665062305,\n",
       "     0.4264622505260104,\n",
       "     58.721372734754695],\n",
       "    [0.6250461040431983,\n",
       "     -0.576917512082601,\n",
       "     0.525817032885814,\n",
       "     68.79729827415903],\n",
       "    [0.005737172258115206,\n",
       "     0.6769938611619988,\n",
       "     0.735966301404792,\n",
       "     -1.1188701345699967],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 218},\n",
       "  {'file_path': './images/frame_0429.jpg',\n",
       "   'transform_matrix': [[-0.7871768255707765,\n",
       "     -0.45075970786352404,\n",
       "     0.42091368598693224,\n",
       "     58.0222708268678],\n",
       "    [0.6166999640943589,\n",
       "     -0.5817476256775896,\n",
       "     0.5303308913353092,\n",
       "     69.51194095719192],\n",
       "    [0.005813739788794099,\n",
       "     0.6770416425784144,\n",
       "     0.7359217449188403,\n",
       "     -1.1236924000680468],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 219},\n",
       "  {'file_path': './images/frame_0430.jpg',\n",
       "   'transform_matrix': [[-0.7937766856917755,\n",
       "     -0.44436755942335177,\n",
       "     0.415278274635592,\n",
       "     57.30852136038597],\n",
       "    [0.6081811289875247,\n",
       "     -0.5864927753441952,\n",
       "     0.5349223670893966,\n",
       "     70.24730530747894],\n",
       "    [0.005855561086699903,\n",
       "     0.6771733135624862,\n",
       "     0.7358002553704114,\n",
       "     -1.143682274705693],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 220},\n",
       "  {'file_path': './images/frame_0431.jpg',\n",
       "   'transform_matrix': [[-0.8001882180996366,\n",
       "     -0.4379976785694121,\n",
       "     0.40970336730656054,\n",
       "     56.61179414899109],\n",
       "    [0.5997186099746578,\n",
       "     -0.5912216249768276,\n",
       "     0.5392537241501663,\n",
       "     70.94987246624657],\n",
       "    [0.006033611239779835,\n",
       "     0.6772112105743417,\n",
       "     0.735763937555954,\n",
       "     -1.1403646440903494],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 221},\n",
       "  {'file_path': './images/frame_0432.jpg',\n",
       "   'transform_matrix': [[-0.8065829321737629,\n",
       "     -0.43164161952933283,\n",
       "     0.40386815400086923,\n",
       "     55.86179862681271],\n",
       "    [0.5910902131221195,\n",
       "     -0.5959101131232291,\n",
       "     0.5436023335386887,\n",
       "     71.65252483924843],\n",
       "    [0.006027725708963565,\n",
       "     0.677182877343746,\n",
       "     0.7357900632349029,\n",
       "     -1.1445871715923759],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 222},\n",
       "  {'file_path': './images/frame_0433.jpg',\n",
       "   'transform_matrix': [[-0.8128962361430169,\n",
       "     -0.4251509450048366,\n",
       "     0.39805324169765394,\n",
       "     55.138454678869614],\n",
       "    [0.5823761345079863,\n",
       "     -0.6005809404458864,\n",
       "     0.5478508665035317,\n",
       "     72.35367410744455],\n",
       "    [0.006143876630615713,\n",
       "     0.6771626155766642,\n",
       "     0.7358077499220287,\n",
       "     -1.1474391687783279],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 223},\n",
       "  {'file_path': './images/frame_0434.jpg',\n",
       "   'transform_matrix': [[-0.8192260013167889,\n",
       "     -0.4185968015976453,\n",
       "     0.39197637232201404,\n",
       "     54.36935992662312],\n",
       "    [0.5734385028293847,\n",
       "     -0.6052027540004662,\n",
       "     0.5521756152014003,\n",
       "     73.06121429487203],\n",
       "    [0.006086233588876649,\n",
       "     0.6771309653549104,\n",
       "     0.7358373553430329,\n",
       "     -1.1509340558548695],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 224},\n",
       "  {'file_path': './images/frame_0435.jpg',\n",
       "   'transform_matrix': [[-0.8253818500020442,\n",
       "     -0.4119174165025104,\n",
       "     0.38609434555442584,\n",
       "     53.63207491490054],\n",
       "    [0.5645402557052602,\n",
       "     -0.6097412601457088,\n",
       "     0.5563361352313566,\n",
       "     73.74287372820483],\n",
       "    [0.00625310926199669,\n",
       "     0.6771555490858953,\n",
       "     0.7358133329634202,\n",
       "     -1.1613122020350874],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 225},\n",
       "  {'file_path': './images/frame_0436.jpg',\n",
       "   'transform_matrix': [[-0.83153354828969,\n",
       "     -0.4052212580189505,\n",
       "     0.3799311649737319,\n",
       "     52.85764736151691],\n",
       "    [0.5554385158970903,\n",
       "     -0.6143571909223272,\n",
       "     0.5604045833324929,\n",
       "     74.42111465679653],\n",
       "    [0.006325592999530696,\n",
       "     0.6770236140723351,\n",
       "     0.735934109048927,\n",
       "     -1.1573870759236535],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 226},\n",
       "  {'file_path': './images/frame_0437.jpg',\n",
       "   'transform_matrix': [[-0.8374900995578212,\n",
       "     -0.3987365817507156,\n",
       "     0.3736568900962296,\n",
       "     52.06576430959742],\n",
       "    [0.5464181898488304,\n",
       "     -0.6187253470932773,\n",
       "     0.5644520410687087,\n",
       "     75.08948189414886],\n",
       "    [0.006123311600632791,\n",
       "     0.6768959175811733,\n",
       "     0.7360532737628324,\n",
       "     -1.1402318508950189],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 227},\n",
       "  {'file_path': './images/frame_0438.jpg',\n",
       "   'transform_matrix': [[-0.8434303602732246,\n",
       "     -0.3918202769176467,\n",
       "     0.36756237289140076,\n",
       "     51.286832672709615],\n",
       "    [0.537201855689735,\n",
       "     -0.6230839700900684,\n",
       "     0.5684896942428278,\n",
       "     75.75810198691458],\n",
       "    [0.006276433133847019,\n",
       "     0.6769366564258266,\n",
       "     0.7360145172305632,\n",
       "     -1.144583419978888],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 228},\n",
       "  {'file_path': './images/frame_0439.jpg',\n",
       "   'transform_matrix': [[-0.8492551718659215,\n",
       "     -0.3849778264571384,\n",
       "     0.3613277268565499,\n",
       "     50.47990510557526],\n",
       "    [0.5279461432033202,\n",
       "     -0.6272354064058765,\n",
       "     0.5725806622892482,\n",
       "     76.43952001060754],\n",
       "    [0.006206684761075991,\n",
       "     0.677028668585897,\n",
       "     0.7359304715644571,\n",
       "     -1.1590437694051734],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 229},\n",
       "  {'file_path': './images/frame_0440.jpg',\n",
       "   'transform_matrix': [[-0.8550241301993149,\n",
       "     -0.3779734103494277,\n",
       "     0.35506314627926133,\n",
       "     49.66660985559468],\n",
       "    [0.5185506724406851,\n",
       "     -0.6313782283822601,\n",
       "     0.5765992827225784,\n",
       "     77.10618379976336],\n",
       "    [0.00623994296594442,\n",
       "     0.6771245334454378,\n",
       "     0.7358419866507211,\n",
       "     -1.1812187296903645],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 230},\n",
       "  {'file_path': './images/frame_0441.jpg',\n",
       "   'transform_matrix': [[-0.86060597086324,\n",
       "     -0.37097760726624296,\n",
       "     0.34890253341234595,\n",
       "     48.87403098926067],\n",
       "    [0.5092312109044206,\n",
       "     -0.6354642111334353,\n",
       "     0.5804040060245778,\n",
       "     77.74442834942467],\n",
       "    [0.006398183754593601,\n",
       "     0.6771712126748846,\n",
       "     0.7357976705379466,\n",
       "     -1.1841379025011336],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 231},\n",
       "  {'file_path': './images/frame_0442.jpg',\n",
       "   'transform_matrix': [[-0.8661018053772983,\n",
       "     -0.36396488151989603,\n",
       "     0.3426327884811854,\n",
       "     48.06370434123752],\n",
       "    [0.4998252113648495,\n",
       "     -0.6395058505453892,\n",
       "     0.5841292880880927,\n",
       "     78.39036575125972],\n",
       "    [0.006513125691114988,\n",
       "     0.6771719369099892,\n",
       "     0.7357959955417707,\n",
       "     -1.1798198916411347],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 232},\n",
       "  {'file_path': './images/frame_0443.jpg',\n",
       "   'transform_matrix': [[-0.8714551651547423,\n",
       "     -0.35699315601233744,\n",
       "     0.3363358168341155,\n",
       "     47.25175699557422],\n",
       "    [0.49043145766928287,\n",
       "     -0.6433887521209736,\n",
       "     0.5878162119001134,\n",
       "     79.0345256937314],\n",
       "    [0.006548316845051522,\n",
       "     0.6772051389383925,\n",
       "     0.735765125119375,\n",
       "     -1.178506629283091],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 233},\n",
       "  {'file_path': './images/frame_0444.jpg',\n",
       "   'transform_matrix': [[-0.876756454037114,\n",
       "     -0.34998957834808886,\n",
       "     0.3298566587958972,\n",
       "     46.39643363075907],\n",
       "    [0.4808911867386344,\n",
       "     -0.6472013142686517,\n",
       "     0.5915015852269863,\n",
       "     79.67146259821831],\n",
       "    [0.006464272687151842,\n",
       "     0.6772279925229441,\n",
       "     0.7357448330243097,\n",
       "     -1.1831749944927448],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 234},\n",
       "  {'file_path': './images/frame_0445.jpg',\n",
       "   'transform_matrix': [[-0.8820068687082626,\n",
       "     -0.34284221217306515,\n",
       "     0.3233003264825518,\n",
       "     45.536711988932176],\n",
       "    [0.4711925213535684,\n",
       "     -0.6510109650676473,\n",
       "     0.595115393165189,\n",
       "     80.30858376753564],\n",
       "    [0.0064413796590946796,\n",
       "     0.6772325604354603,\n",
       "     0.7357408291743214,\n",
       "     -1.1876543265748731],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 235},\n",
       "  {'file_path': './images/frame_0446.jpg',\n",
       "   'transform_matrix': [[-0.8871304983653583,\n",
       "     -0.3356913325442961,\n",
       "     0.31671881555200654,\n",
       "     44.66459641431887],\n",
       "    [0.4614747610297349,\n",
       "     -0.6546696488000103,\n",
       "     0.5987058508755532,\n",
       "     80.92512997700732],\n",
       "    [0.0063658308633062904,\n",
       "     0.6772879595819683,\n",
       "     0.7356904892702596,\n",
       "     -1.2026514844454927],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 236},\n",
       "  {'file_path': './images/frame_0447.jpg',\n",
       "   'transform_matrix': [[-0.8921186518143465,\n",
       "     -0.3283147293038142,\n",
       "     0.3103767865145782,\n",
       "     43.83961966915774],\n",
       "    [0.4517526336597532,\n",
       "     -0.6582858329735387,\n",
       "     0.6021455970841363,\n",
       "     81.53702517461318],\n",
       "    [0.006623372738237511,\n",
       "     0.677398849001456,\n",
       "     0.7355861134531245,\n",
       "     -1.2052678717919427],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 237},\n",
       "  {'file_path': './images/frame_0448.jpg',\n",
       "   'transform_matrix': [[-0.8970731325483637,\n",
       "     -0.3209898688481594,\n",
       "     0.3036861849948189,\n",
       "     42.967988664771646],\n",
       "    [0.4418325037455183,\n",
       "     -0.6618715007852369,\n",
       "     0.6055659791321377,\n",
       "     82.14880402324852],\n",
       "    [0.00662068680973176,\n",
       "     0.6774153973339693,\n",
       "     0.7355708979840271,\n",
       "     -1.189490231275633],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 238},\n",
       "  {'file_path': './images/frame_0449.jpg',\n",
       "   'transform_matrix': [[-0.9019334398841727,\n",
       "     -0.3136018157127748,\n",
       "     0.2969342876805472,\n",
       "     42.07889459489637],\n",
       "    [0.43182493120864723,\n",
       "     -0.66532972007203,\n",
       "     0.6089857078581739,\n",
       "     82.76442060885493],\n",
       "    [0.0065801827748333585,\n",
       "     0.6774882026799617,\n",
       "     0.7355042055788156,\n",
       "     -1.1861960258491926],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 239},\n",
       "  {'file_path': './images/frame_0450.jpg',\n",
       "   'transform_matrix': [[-0.9066446655262422,\n",
       "     -0.306143839654342,\n",
       "     0.2902953666776388,\n",
       "     41.20217551055835],\n",
       "    [0.4218418853449144,\n",
       "     -0.6687396948495561,\n",
       "     0.6122390417975406,\n",
       "     83.34468771916393],\n",
       "    [0.006698823886049902,\n",
       "     0.6775420060588266,\n",
       "     0.735453571467516,\n",
       "     -1.2060985557117405],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 240},\n",
       "  {'file_path': './images/frame_0451.jpg',\n",
       "   'transform_matrix': [[-0.9113086170545868,\n",
       "     -0.29871637623215735,\n",
       "     0.2833463094038544,\n",
       "     40.29064919842262],\n",
       "    [0.41167039851221215,\n",
       "     -0.672190468599342,\n",
       "     0.615375866371922,\n",
       "     83.91955477527516],\n",
       "    [0.0066398396707261385,\n",
       "     0.6774426178614137,\n",
       "     0.735545655982157,\n",
       "     -1.1774129910304818],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 241},\n",
       "  {'file_path': './images/frame_0452.jpg',\n",
       "   'transform_matrix': [[-0.9158783581064364,\n",
       "     -0.2911004972666877,\n",
       "     0.27645493962551193,\n",
       "     39.402862834206964],\n",
       "    [0.4014006639679616,\n",
       "     -0.675445185208882,\n",
       "     0.6185881576171812,\n",
       "     84.49457008513065],\n",
       "    [0.006658837611618498,\n",
       "     0.6775207024654127,\n",
       "     0.7354735601042609,\n",
       "     -1.187249734974335],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 242},\n",
       "  {'file_path': './images/frame_0453.jpg',\n",
       "   'transform_matrix': [[-0.9203593844388961,\n",
       "     -0.28334984237841493,\n",
       "     0.26953936688243485,\n",
       "     38.497711849100845],\n",
       "    [0.3910153162119342,\n",
       "     -0.6786453561423195,\n",
       "     0.6217294452365476,\n",
       "     85.06863074411137],\n",
       "    [0.006754699322510188,\n",
       "     0.6776085502785452,\n",
       "     0.7353917504476583,\n",
       "     -1.1915009740586395],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 243},\n",
       "  {'file_path': './images/frame_0454.jpg',\n",
       "   'transform_matrix': [[-0.9247261288690475,\n",
       "     -0.2756413232793556,\n",
       "     0.2624946618270011,\n",
       "     37.58226077678143],\n",
       "    [0.38057299035074615,\n",
       "     -0.6818082541988385,\n",
       "     0.6247413092807479,\n",
       "     85.64215694412408],\n",
       "    [0.00676650591935965,\n",
       "     0.6776129908783759,\n",
       "     0.7353875502009164,\n",
       "     -1.1719021358677377],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 244},\n",
       "  {'file_path': './images/frame_0455.jpg',\n",
       "   'transform_matrix': [[-0.9289429176450648,\n",
       "     -0.2678552713765539,\n",
       "     0.2555750562024138,\n",
       "     36.681549531828686],\n",
       "    [0.370158797292509,\n",
       "     -0.6848248619864338,\n",
       "     0.6276921006291422,\n",
       "     86.19604532134485],\n",
       "    [0.006893514636054964,\n",
       "     0.6776934867630459,\n",
       "     0.7353121904707605,\n",
       "     -1.1730796229212619],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 245},\n",
       "  {'file_path': './images/frame_0456.jpg',\n",
       "   'transform_matrix': [[-0.933001990395512,\n",
       "     -0.26011364405700677,\n",
       "     0.24869293937182405,\n",
       "     35.771724326222284],\n",
       "    [0.3598032629082203,\n",
       "     -0.6876713333163977,\n",
       "     0.6305947584110148,\n",
       "     86.73634934689478],\n",
       "    [0.006992704670659451,\n",
       "     0.6778266957786723,\n",
       "     0.735188460580793,\n",
       "     -1.1949894048233236],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 246},\n",
       "  {'file_path': './images/frame_0457.jpg',\n",
       "   'transform_matrix': [[-0.9369746129605674,\n",
       "     -0.2523526445951737,\n",
       "     0.24165412769745315,\n",
       "     34.84159103684807],\n",
       "    [0.3493264642468352,\n",
       "     -0.6905338441082643,\n",
       "     0.6333514281328084,\n",
       "     87.27222217451396],\n",
       "    [0.007042445896107376,\n",
       "     0.6778503912419652,\n",
       "     0.7351661383992839,\n",
       "     -1.173473231807526],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 247},\n",
       "  {'file_path': './images/frame_0458.jpg',\n",
       "   'transform_matrix': [[-0.9408445937850382,\n",
       "     -0.24452076501059364,\n",
       "     0.23456565354736125,\n",
       "     33.89254538212955],\n",
       "    [0.3387644142340435,\n",
       "     -0.6932710210927839,\n",
       "     0.6360927314170742,\n",
       "     87.78260029059435],\n",
       "    [0.007079688844294246,\n",
       "     0.6779269037231099,\n",
       "     0.7350952259498528,\n",
       "     -1.1895244877204938],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 248},\n",
       "  {'file_path': './images/frame_0459.jpg',\n",
       "   'transform_matrix': [[-0.9445475377269835,\n",
       "     -0.2367420466899922,\n",
       "     0.22755911825924724,\n",
       "     32.953331748404025],\n",
       "    [0.3282981645295064,\n",
       "     -0.6957754833772093,\n",
       "     0.638840192769497,\n",
       "     88.31687400033869],\n",
       "    [0.007089720759639411,\n",
       "     0.6781221719279237,\n",
       "     0.7349149990300279,\n",
       "     -1.2107243623728923],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 249},\n",
       "  {'file_path': './images/frame_0460.jpg',\n",
       "   'transform_matrix': [[-0.9481720919317469,\n",
       "     -0.2288459455705572,\n",
       "     0.22045230159309429,\n",
       "     31.99974070923905],\n",
       "    [0.3176766556557406,\n",
       "     -0.6983186526183599,\n",
       "     0.6414301223490073,\n",
       "     88.81832715986108],\n",
       "    [0.00715727134870911,\n",
       "     0.6782186908373995,\n",
       "     0.7348252723373393,\n",
       "     -1.2150863751003667],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 250},\n",
       "  {'file_path': './images/frame_0461.jpg',\n",
       "   'transform_matrix': [[-0.951648227939214,\n",
       "     -0.2210169657427934,\n",
       "     0.21334748912045523,\n",
       "     31.040101916513173],\n",
       "    [0.30710624036129125,\n",
       "     -0.7007153388044207,\n",
       "     0.6439594483314602,\n",
       "     89.31769905589601],\n",
       "    [0.007169894790489788,\n",
       "     0.6783432131436524,\n",
       "     0.7347101998683826,\n",
       "     -1.207016789840174],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 251},\n",
       "  {'file_path': './images/frame_0462.jpg',\n",
       "   'transform_matrix': [[-0.9549678742569514,\n",
       "     -0.21331299827330358,\n",
       "     0.20623754242332543,\n",
       "     30.080319967644524],\n",
       "    [0.2966231076545249,\n",
       "     -0.7031000380084231,\n",
       "     0.6462701204279262,\n",
       "     89.78071478592942],\n",
       "    [0.0071478068336739385,\n",
       "     0.6783420238494794,\n",
       "     0.7347115131378171,\n",
       "     -1.182324926471505],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 252},\n",
       "  {'file_path': './images/frame_0463.jpg',\n",
       "   'transform_matrix': [[-0.9582042923865056,\n",
       "     -0.20541177394722449,\n",
       "     0.19912442636685865,\n",
       "     29.117785560893765],\n",
       "    [0.2859949445333518,\n",
       "     -0.7052312607632553,\n",
       "     0.6487339674655818,\n",
       "     90.27562535203488],\n",
       "    [0.007171175178533543,\n",
       "     0.6785682515164733,\n",
       "     0.734502350085032,\n",
       "     -1.1961037743295513],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 253},\n",
       "  {'file_path': './images/frame_0464.jpg',\n",
       "   'transform_matrix': [[-0.9613249208543478,\n",
       "     -0.1975396661791054,\n",
       "     0.19191789085499386,\n",
       "     28.131174625772513],\n",
       "    [0.2753242544087515,\n",
       "     -0.7073279879431363,\n",
       "     0.651063493375707,\n",
       "     90.74783080196659],\n",
       "    [0.007138030445913869,\n",
       "     0.6787232114479083,\n",
       "     0.7343594833344166,\n",
       "     -1.194549152211074],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 254},\n",
       "  {'file_path': './images/frame_0465.jpg',\n",
       "   'transform_matrix': [[-0.9642906090176266,\n",
       "     -0.18970172700282598,\n",
       "     0.18481578972739332,\n",
       "     27.15600263949655],\n",
       "    [0.26474874728178577,\n",
       "     -0.7093875528338145,\n",
       "     0.6532054812210146,\n",
       "     91.19003722087314],\n",
       "    [0.007191812924425866,\n",
       "     0.6788096601084854,\n",
       "     0.7342790499328321,\n",
       "     -1.1881261813216084],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 255},\n",
       "  {'file_path': './images/frame_0466.jpg',\n",
       "   'transform_matrix': [[-0.9671649557990748,\n",
       "     -0.1818193929862864,\n",
       "     0.17757718493171334,\n",
       "     26.1566378734049],\n",
       "    [0.2540491082254363,\n",
       "     -0.7112730214023276,\n",
       "     0.6554004421993203,\n",
       "     91.64683855979729],\n",
       "    [0.007141350294875546,\n",
       "     0.6789936651834848,\n",
       "     0.7341093949519129,\n",
       "     -1.2007659082745004],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 256},\n",
       "  {'file_path': './images/frame_0467.jpg',\n",
       "   'transform_matrix': [[-0.9699233098765396,\n",
       "     -0.17387951195881435,\n",
       "     0.17033698447225865,\n",
       "     25.147876026314837],\n",
       "    [0.2433052699897142,\n",
       "     -0.7131561302744815,\n",
       "     0.6574274708643981,\n",
       "     92.08800050838501],\n",
       "    [0.007163696906641269,\n",
       "     0.6790981145408159,\n",
       "     0.7340125559373889,\n",
       "     -1.1925532278533078],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 257},\n",
       "  {'file_path': './images/frame_0468.jpg',\n",
       "   'transform_matrix': [[-0.9725397131270175,\n",
       "     -0.16600065869569186,\n",
       "     0.16312660023250378,\n",
       "     24.14530191460105],\n",
       "    [0.2326263860152682,\n",
       "     -0.714944507621623,\n",
       "     0.6593476439262906,\n",
       "     92.51124418351357],\n",
       "    [0.007174323682000022,\n",
       "     0.6791893199500944,\n",
       "     0.7339280596526028,\n",
       "     -1.1791415251697503],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 258},\n",
       "  {'file_path': './images/frame_0469.jpg',\n",
       "   'transform_matrix': [[-0.9750850239788177,\n",
       "     -0.1579049190616597,\n",
       "     0.15580511079024084,\n",
       "     23.129445538309735],\n",
       "    [0.22171321292258944,\n",
       "     -0.7166483916493962,\n",
       "     0.6612551201781928,\n",
       "     92.9339395654413],\n",
       "    [0.007242045827736484,\n",
       "     0.6793240164181333,\n",
       "     0.7338027210972745,\n",
       "     -1.1774575192588392],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 259},\n",
       "  {'file_path': './images/frame_0470.jpg',\n",
       "   'transform_matrix': [[-0.9775278020513741,\n",
       "     -0.14983146285377863,\n",
       "     0.14829001637233125,\n",
       "     22.084747720635207],\n",
       "    [0.2106838561819484,\n",
       "     -0.7183721983095198,\n",
       "     0.6629884595075938,\n",
       "     93.33596686366192],\n",
       "    [0.00719089430555033,\n",
       "     0.6793319640904915,\n",
       "     0.7337958664397352,\n",
       "     -1.148673655108174],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 260},\n",
       "  {'file_path': './images/frame_0471.jpg',\n",
       "   'transform_matrix': [[-0.9798385847438351,\n",
       "     -0.141571534663589,\n",
       "     0.1409746375068732,\n",
       "     21.085695134135612],\n",
       "    [0.19965550193860845,\n",
       "     -0.7198023931353119,\n",
       "     0.6648474978386549,\n",
       "     93.75306868525354],\n",
       "    [0.007350400862564895,\n",
       "     0.6795895933647558,\n",
       "     0.7335556939984076,\n",
       "     -1.1710043814927427],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 261},\n",
       "  {'file_path': './images/frame_0472.jpg',\n",
       "   'transform_matrix': [[-0.9820165751505179,\n",
       "     -0.13354852510423518,\n",
       "     0.1334475086771231,\n",
       "     20.042453880149157],\n",
       "    [0.18865458305902894,\n",
       "     -0.7213668811399314,\n",
       "     0.6663627173584009,\n",
       "     94.12114958236624],\n",
       "    [0.007272855042645441,\n",
       "     0.6795547176180381,\n",
       "     0.7335887753657339,\n",
       "     -1.1684161745117774],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 262},\n",
       "  {'file_path': './images/frame_0473.jpg',\n",
       "   'transform_matrix': [[-0.984105956484201,\n",
       "     -0.12530411865043625,\n",
       "     0.12583459087847546,\n",
       "     18.992469802590033],\n",
       "    [0.1774341849034014,\n",
       "     -0.7227506839137077,\n",
       "     0.6679435297462903,\n",
       "     94.50741578259512],\n",
       "    [0.007250961314299386,\n",
       "     0.6796545642835817,\n",
       "     0.7334964872502889,\n",
       "     -1.1505161135044382],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 263},\n",
       "  {'file_path': './images/frame_0474.jpg',\n",
       "   'transform_matrix': [[-0.9860136521118658,\n",
       "     -0.11714914421048192,\n",
       "     0.11854600735483309,\n",
       "     17.967717429061807],\n",
       "    [0.1665004343597435,\n",
       "     -0.7239494220625446,\n",
       "     0.6694586168340237,\n",
       "     94.86524070949346],\n",
       "    [0.007394809465914784,\n",
       "     0.679833297438467,\n",
       "     0.7333293969880817,\n",
       "     -1.1852053161754104],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 264},\n",
       "  {'file_path': './images/frame_0475.jpg',\n",
       "   'transform_matrix': [[-0.987830934550638,\n",
       "     -0.1089065624413774,\n",
       "     0.11103785571603816,\n",
       "     16.923749668729663],\n",
       "    [0.15535353232497473,\n",
       "     -0.7250518530693819,\n",
       "     0.6709434330514075,\n",
       "     95.22798175267974],\n",
       "    [0.007438060161518892,\n",
       "     0.6800288016090626,\n",
       "     0.7331476687838377,\n",
       "     -1.1993027825989866],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 265},\n",
       "  {'file_path': './images/frame_0476.jpg',\n",
       "   'transform_matrix': [[-0.9895081383936164,\n",
       "     -0.1007741577579137,\n",
       "     0.10352880362963233,\n",
       "     15.857387197583249],\n",
       "    [0.14428581149057018,\n",
       "     -0.7261429899409628,\n",
       "     0.6722335626566903,\n",
       "     95.56127018442359],\n",
       "    [0.007432943919302352,\n",
       "     0.6801183185944795,\n",
       "     0.7330646793134359,\n",
       "     -1.2034966634659372],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 266},\n",
       "  {'file_path': './images/frame_0477.jpg',\n",
       "   'transform_matrix': [[-0.991045622064866,\n",
       "     -0.09265437876687024,\n",
       "     0.09614437623380853,\n",
       "     14.807524303984485],\n",
       "    [0.13331252389392012,\n",
       "     -0.727095818726736,\n",
       "     0.6734682185249209,\n",
       "     95.8965918820447],\n",
       "    [0.007506394547035003,\n",
       "     0.6802549790228829,\n",
       "     0.7329371170540359,\n",
       "     -1.1919048505884575],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 267},\n",
       "  {'file_path': './images/frame_0478.jpg',\n",
       "   'transform_matrix': [[-0.9925007508840229,\n",
       "     -0.0843707318267449,\n",
       "     0.0884524680586711,\n",
       "     13.72000294024485],\n",
       "    [0.1220104389220757,\n",
       "     -0.7279439253687285,\n",
       "     0.6746933335322126,\n",
       "     96.22305072637006],\n",
       "    [0.007464066498442268,\n",
       "     0.6804257645987448,\n",
       "     0.732779002552284,\n",
       "     -1.2036717016055218],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 268},\n",
       "  {'file_path': './images/frame_0479.jpg',\n",
       "   'transform_matrix': [[-0.9937992263602051,\n",
       "     -0.0761874053960018,\n",
       "     0.08098504148843134,\n",
       "     12.64568135672873],\n",
       "    [0.11093461212424409,\n",
       "     -0.728679691201418,\n",
       "     0.6758101948501882,\n",
       "     96.55496494297338],\n",
       "    [0.007523929737921925,\n",
       "     0.6806036929738415,\n",
       "     0.7326131336467204,\n",
       "     -1.2237343642039809],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 269},\n",
       "  {'file_path': './images/frame_0480.jpg',\n",
       "   'transform_matrix': [[-0.9949802122694542,\n",
       "     -0.06793938119094688,\n",
       "     0.07347528615543501,\n",
       "     11.56208841833756],\n",
       "    [0.09978127333567048,\n",
       "     -0.7294492259163251,\n",
       "     0.6767182015444733,\n",
       "     96.84521823272304],\n",
       "    [0.007620674756480559,\n",
       "     0.6806526774306154,\n",
       "     0.7325666236068843,\n",
       "     -1.2246362118017624],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 270},\n",
       "  {'file_path': './images/frame_0481.jpg',\n",
       "   'transform_matrix': [[-0.9960368121985382,\n",
       "     -0.05970273373999581,\n",
       "     0.06592611265155049,\n",
       "     10.492483762365879],\n",
       "    [0.08860882957002347,\n",
       "     -0.730182174094702,\n",
       "     0.6774824484490835,\n",
       "     97.1283389447356],\n",
       "    [0.007690518032245311,\n",
       "     0.680639093953841,\n",
       "     0.7325785143683168,\n",
       "     -1.2066606941241365],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 271},\n",
       "  {'file_path': './images/frame_0482.jpg',\n",
       "   'transform_matrix': [[-0.9969829658273106,\n",
       "     -0.05128576159593801,\n",
       "     0.05826436739297973,\n",
       "     9.396251281710143],\n",
       "    [0.07722930546727748,\n",
       "     -0.7306895596871223,\n",
       "     0.6783276507273467,\n",
       "     97.40125917139252],\n",
       "    [0.007784614776689672,\n",
       "     0.6807808296520723,\n",
       "     0.7324458080643336,\n",
       "     -1.2147220359047461],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 272},\n",
       "  {'file_path': './images/frame_0483.jpg',\n",
       "   'transform_matrix': [[-0.9977914507245583,\n",
       "     -0.043038371560490264,\n",
       "     0.05059564639771473,\n",
       "     8.311917770973391],\n",
       "    [0.06596825932060119,\n",
       "     -0.7311836459197568,\n",
       "     0.6789835526002833,\n",
       "     97.64740819033696],\n",
       "    [0.007772362780475182,\n",
       "     0.680821690689209,\n",
       "     0.7324079572641846,\n",
       "     -1.2009846166702827],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 273},\n",
       "  {'file_path': './images/frame_0484.jpg',\n",
       "   'transform_matrix': [[-0.9984849609830034,\n",
       "     -0.03461723847526773,\n",
       "     0.04277183057944508,\n",
       "     7.197900084671269],\n",
       "    [0.05447532270828456,\n",
       "     -0.7315087306171452,\n",
       "     0.6796524231154637,\n",
       "     97.9055567501575],\n",
       "    [0.007760277482059889,\n",
       "     0.6809527324500868,\n",
       "     0.7322862515861963,\n",
       "     -1.2002017454684513],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 274},\n",
       "  {'file_path': './images/frame_0485.jpg',\n",
       "   'transform_matrix': [[-0.999039490419304,\n",
       "     -0.026118680887880004,\n",
       "     0.0351839607124411,\n",
       "     6.104412496193758],\n",
       "    [0.043086029036040856,\n",
       "     -0.7317652790053427,\n",
       "     0.6801934802276028,\n",
       "     98.13687333463265],\n",
       "    [0.0079806443751712,\n",
       "     0.6810560850259765,\n",
       "     0.7321877616871556,\n",
       "     -1.2115673767963464],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 275},\n",
       "  {'file_path': './images/frame_0486.jpg',\n",
       "   'transform_matrix': [[-0.9994682828532803,\n",
       "     -0.01773449361368337,\n",
       "     0.027361273847932903,\n",
       "     4.988609248279258],\n",
       "    [0.03162032814103785,\n",
       "     -0.731949458806876,\n",
       "     0.6806248192657792,\n",
       "     98.36842725939256],\n",
       "    [0.00795653307467786,\n",
       "     0.681128091836321,\n",
       "     0.7321210392365759,\n",
       "     -1.1870698901025865],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 276},\n",
       "  {'file_path': './images/frame_0487.jpg',\n",
       "   'transform_matrix': [[-0.9997672818056921,\n",
       "     -0.009314299395344765,\n",
       "     0.01945831589916487,\n",
       "     3.847807440936875],\n",
       "    [0.020074144903720136,\n",
       "     -0.7319895564224306,\n",
       "     0.6810200569696003,\n",
       "     98.58861077502996],\n",
       "    [0.007900059318907615,\n",
       "     0.6812521802645972,\n",
       "     0.7320061857303465,\n",
       "     -1.2157364384281617],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 277},\n",
       "  {'file_path': './images/frame_0488.jpg',\n",
       "   'transform_matrix': [[-0.9999314002454269,\n",
       "     -0.0008926051594027951,\n",
       "     0.011678957969325155,\n",
       "     2.7271355920874982],\n",
       "    [0.008609869111760173,\n",
       "     -0.7320344216436246,\n",
       "     0.6812132380413363,\n",
       "     98.77570649034314],\n",
       "    [0.00794134479154596,\n",
       "     0.6812670612798724,\n",
       "     0.7319918894755518,\n",
       "     -1.2118833849502788],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 278},\n",
       "  {'file_path': './images/frame_0489.jpg',\n",
       "   'transform_matrix': [[-0.9999630569191629,\n",
       "     0.007599928440360569,\n",
       "     0.004015704743172536,\n",
       "     1.6414664260651042],\n",
       "    [-0.002826713199834199,\n",
       "     -0.7319459334119816,\n",
       "     0.6813568523572276,\n",
       "     98.96675545109329],\n",
       "    [0.008117542076812596,\n",
       "     0.681320329690348,\n",
       "     0.7319403758922353,\n",
       "     -1.2105501279947266],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 279},\n",
       "  {'file_path': './images/frame_0490.jpg',\n",
       "   'transform_matrix': [[-0.999861974913401,\n",
       "     0.016134158729785953,\n",
       "     -0.003964851113923396,\n",
       "     0.4857036663703992],\n",
       "    [-0.014509618072244693,\n",
       "     -0.7317265205611465,\n",
       "     0.6814438862378,\n",
       "     99.14797472195349],\n",
       "    [0.008093337115868715,\n",
       "     0.6814073583617659,\n",
       "     0.7318596244258655,\n",
       "     -1.23710122752451],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 280},\n",
       "  {'file_path': './images/frame_0491.jpg',\n",
       "   'transform_matrix': [[-0.999624341196632,\n",
       "     0.02472598031870405,\n",
       "     -0.011823805837303265,\n",
       "     -0.6552164301233334],\n",
       "    [-0.026153217230712674,\n",
       "     -0.7315257545255811,\n",
       "     0.6813120281444195,\n",
       "     99.2924630997324],\n",
       "    [0.008196689312298017,\n",
       "     0.6813653178457635,\n",
       "     0.7318976143705207,\n",
       "     -1.2322831880354312],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 281},\n",
       "  {'file_path': './images/frame_0492.jpg',\n",
       "   'transform_matrix': [[-0.9992551348703077,\n",
       "     0.03322075982205072,\n",
       "     -0.01963559401110487,\n",
       "     -1.7708122414607539],\n",
       "    [-0.03769394964899146,\n",
       "     -0.7312526394435352,\n",
       "     0.6810644194690563,\n",
       "     99.4408309146768],\n",
       "    [0.008266897554863815,\n",
       "     0.6812972614239021,\n",
       "     0.7319601764994519,\n",
       "     -1.222701899945337],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 282},\n",
       "  {'file_path': './images/frame_0493.jpg',\n",
       "   'transform_matrix': [[-0.9987486697570086,\n",
       "     0.04180448037065792,\n",
       "     -0.0274495916098059,\n",
       "     -2.915882428525239],\n",
       "    [-0.049299444216929014,\n",
       "     -0.7307279275406026,\n",
       "     0.680886378709486,\n",
       "     99.57717786889127],\n",
       "    [0.008405918064539684,\n",
       "     0.6813876146021112,\n",
       "     0.7318744832335236,\n",
       "     -1.238662678704041],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 283},\n",
       "  {'file_path': './images/frame_0494.jpg',\n",
       "   'transform_matrix': [[-0.9980989977011634,\n",
       "     0.05041112910415791,\n",
       "     -0.03545573085379636,\n",
       "     -4.080739368523881],\n",
       "    [-0.06105486889225303,\n",
       "     -0.7302786142500668,\n",
       "     0.6804156439659158,\n",
       "     99.68266319848483],\n",
       "    [0.008407958877320787,\n",
       "     0.6812869172613297,\n",
       "     0.731968197803751,\n",
       "     -1.2185567438610219],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 284},\n",
       "  {'file_path': './images/frame_0495.jpg',\n",
       "   'transform_matrix': [[-0.9973286716410599,\n",
       "     0.058924912425545255,\n",
       "     -0.04316683238692526,\n",
       "     -5.213134309014447],\n",
       "    [-0.07253862238036629,\n",
       "     -0.7295276972546385,\n",
       "     0.6800937341289824,\n",
       "     99.81368239197724],\n",
       "    [0.008583063895701822,\n",
       "     0.6814082430041379,\n",
       "     0.7318532211995626,\n",
       "     -1.2430834065124885],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 285},\n",
       "  {'file_path': './images/frame_0496.jpg',\n",
       "   'transform_matrix': [[-0.9964163874065257,\n",
       "     0.06743887253159926,\n",
       "     -0.051052731360771715,\n",
       "     -6.369875846206514],\n",
       "    [-0.08414328996975398,\n",
       "     -0.7288067282261284,\n",
       "     0.6795297341878368,\n",
       "     99.89390286339743],\n",
       "    [0.00861914501527356,\n",
       "     0.6813903076533985,\n",
       "     0.7318694958633081,\n",
       "     -1.246196973902005],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 286},\n",
       "  {'file_path': './images/frame_0497.jpg',\n",
       "   'transform_matrix': [[-0.9953733176045814,\n",
       "     0.07589882389179392,\n",
       "     -0.05891796952281709,\n",
       "     -7.540034656542263],\n",
       "    [-0.09569388097924707,\n",
       "     -0.7279529534904912,\n",
       "     0.678916179397428,\n",
       "     99.97208674642641],\n",
       "    [0.008639429609577504,\n",
       "     0.6814131390253003,\n",
       "     0.7318479993958499,\n",
       "     -1.2389479603673619],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 287},\n",
       "  {'file_path': './images/frame_0498.jpg',\n",
       "   'transform_matrix': [[-0.9941954329991068,\n",
       "     0.0843808041558284,\n",
       "     -0.06674819019070335,\n",
       "     -8.705365462311198],\n",
       "    [-0.10723571461863025,\n",
       "     -0.7269213588052773,\n",
       "     0.6782962771701767,\n",
       "     100.04115811438406],\n",
       "    [0.008714500212305002,\n",
       "     0.6815168508574863,\n",
       "     0.7317505309074567,\n",
       "     -1.271919491453506],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 288},\n",
       "  {'file_path': './images/frame_0499.jpg',\n",
       "   'transform_matrix': [[-0.9928984034900737,\n",
       "     0.09275010142548878,\n",
       "     -0.0744995237060218,\n",
       "     -9.864163795386359],\n",
       "    [-0.118641996059274,\n",
       "     -0.725856417814829,\n",
       "     0.6775371115209082,\n",
       "     100.1018135022034],\n",
       "    [0.00876567840693302,\n",
       "     0.6815642885323335,\n",
       "     0.7317057355791877,\n",
       "     -1.2694006219381566],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 289},\n",
       "  {'file_path': './images/frame_0500.jpg',\n",
       "   'transform_matrix': [[-0.991453841401372,\n",
       "     0.10113928133833583,\n",
       "     -0.08240222169837366,\n",
       "     -11.041476764505456],\n",
       "    [-0.13016900927981204,\n",
       "     -0.7249186392370172,\n",
       "     0.6764236804768619,\n",
       "     100.11419293628124],\n",
       "    [0.008678098499969849,\n",
       "     0.6813690719845716,\n",
       "     0.7318885696260794,\n",
       "     -1.2190591036955898],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 290},\n",
       "  {'file_path': './images/frame_0501.jpg',\n",
       "   'transform_matrix': [[-0.9898884534125314,\n",
       "     0.10958873481012837,\n",
       "     -0.0900619731255197,\n",
       "     -12.16913284623526],\n",
       "    [-0.1415712172996319,\n",
       "     -0.7236317916462154,\n",
       "     0.6755106368897448,\n",
       "     100.15463437959076],\n",
       "    [0.008856649075518046,\n",
       "     0.6814303627822902,\n",
       "     0.7318293656622078,\n",
       "     -1.2375037929044648],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 291},\n",
       "  {'file_path': './images/frame_0502.jpg',\n",
       "   'transform_matrix': [[-0.9881571926514651,\n",
       "     0.11812561981650721,\n",
       "     -0.09793722762127383,\n",
       "     -13.350881003833882],\n",
       "    [-0.15318502619650587,\n",
       "     -0.7222819170657258,\n",
       "     0.6744206254475288,\n",
       "     100.17016572084933],\n",
       "    [0.008928065879629772,\n",
       "     0.6814361086872532,\n",
       "     0.731823147636656,\n",
       "     -1.2392820087212504],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 292},\n",
       "  {'file_path': './images/frame_0503.jpg',\n",
       "   'transform_matrix': [[-0.9862855946752533,\n",
       "     0.1266172248478819,\n",
       "     -0.10587163977148366,\n",
       "     -14.564500809666917],\n",
       "    [-0.16480719146027986,\n",
       "     -0.7209191436979964,\n",
       "     0.6731375623843333,\n",
       "     100.14428295528938],\n",
       "    [0.008905918204011537,\n",
       "     0.6813542886205154,\n",
       "     0.7318995955726271,\n",
       "     -1.245245602885663],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 293},\n",
       "  {'file_path': './images/frame_0504.jpg',\n",
       "   'transform_matrix': [[-0.9843032998722698,\n",
       "     0.13507609651970104,\n",
       "     -0.11358460287187155,\n",
       "     -15.713226454323523],\n",
       "    [-0.17625321266127056,\n",
       "     -0.7193780935955555,\n",
       "     0.6718853797199379,\n",
       "     100.14712426423844],\n",
       "    [0.009045379325451092,\n",
       "     0.6813586475592898,\n",
       "     0.731893827347269,\n",
       "     -1.2342349028308914],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 294},\n",
       "  {'file_path': './images/frame_0505.jpg',\n",
       "   'transform_matrix': [[-0.9821669718748892,\n",
       "     0.14349539018195098,\n",
       "     -0.12147885558664254,\n",
       "     -16.912094838352242],\n",
       "    [-0.18779428110653854,\n",
       "     -0.7177598873485003,\n",
       "     0.6704879209181525,\n",
       "     100.11650462394532],\n",
       "    [0.00901927612334209,\n",
       "     0.6813441253214104,\n",
       "     0.7319076687316598,\n",
       "     -1.2339230043719942],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 295},\n",
       "  {'file_path': './images/frame_0506.jpg',\n",
       "   'transform_matrix': [[-0.9799021853345369,\n",
       "     0.15188085948214278,\n",
       "     -0.12932096388275313,\n",
       "     -18.113566003587458],\n",
       "    [-0.1992752584314569,\n",
       "     -0.7160628236445037,\n",
       "     0.6689868488777163,\n",
       "     100.06069975393696],\n",
       "    [0.009004363035484802,\n",
       "     0.6813121436736805,\n",
       "     0.7319376232501642,\n",
       "     -1.2133808093478855],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 296},\n",
       "  {'file_path': './images/frame_0507.jpg',\n",
       "   'transform_matrix': [[-0.9775415508724594,\n",
       "     0.16021611473262798,\n",
       "     -0.1369062193541557,\n",
       "     -19.26655110434914],\n",
       "    [-0.21054360642743258,\n",
       "     -0.7142318718985246,\n",
       "     0.6674909909181247,\n",
       "     100.00345809190912],\n",
       "    [0.009160027860065175,\n",
       "     0.6813249076206674,\n",
       "     0.7319238103418222,\n",
       "     -1.2199463762283003],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 297},\n",
       "  {'file_path': './images/frame_0508.jpg',\n",
       "   'transform_matrix': [[-0.9749693293883672,\n",
       "     0.16868657732873113,\n",
       "     -0.1448435203283717,\n",
       "     -20.484095899764657],\n",
       "    [-0.22215013874145442,\n",
       "     -0.7121960129918325,\n",
       "     0.6659025115853596,\n",
       "     99.93102387114733],\n",
       "    [0.009171837828372277,\n",
       "     0.681411533295156,\n",
       "     0.7318430157371145,\n",
       "     -1.2295084923572666],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 298},\n",
       "  {'file_path': './images/frame_0509.jpg',\n",
       "   'transform_matrix': [[-0.9722914630750348,\n",
       "     0.17716672018419027,\n",
       "     -0.1525164387552541,\n",
       "     -21.644079353099983],\n",
       "    [-0.23358332652544242,\n",
       "     -0.7100666350659265,\n",
       "     0.6642621495580348,\n",
       "     99.87303366260177],\n",
       "    [0.009388311920515327,\n",
       "     0.6814817143734153,\n",
       "     0.7317749193392419,\n",
       "     -1.239958636164803],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 299},\n",
       "  {'file_path': './images/frame_0510.jpg',\n",
       "   'transform_matrix': [[-0.9694407205891702,\n",
       "     0.1856377131221164,\n",
       "     -0.1603849392254183,\n",
       "     -22.840508961092734],\n",
       "    [-0.24514528733044044,\n",
       "     -0.7079689799468323,\n",
       "     0.6623320251450305,\n",
       "     99.75864852249691],\n",
       "    [0.009406240653209485,\n",
       "     0.6814092477357733,\n",
       "     0.7318421685971241,\n",
       "     -1.236486103668991],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 300},\n",
       "  {'file_path': './images/frame_0511.jpg',\n",
       "   'transform_matrix': [[-0.966470396213435,\n",
       "     0.19404711424376261,\n",
       "     -0.16816863767276635,\n",
       "     -24.021863097060123],\n",
       "    [-0.25660299526961294,\n",
       "     -0.7056837610586436,\n",
       "     0.6604281430986949,\n",
       "     99.66328088475686],\n",
       "    [0.009480298608642392,\n",
       "     0.6814368252683409,\n",
       "     0.7318155348901085,\n",
       "     -1.2414740005183467],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 301},\n",
       "  {'file_path': './images/frame_0512.jpg',\n",
       "   'transform_matrix': [[-0.9633184889194817,\n",
       "     0.20260576790845303,\n",
       "     -0.17597838422974757,\n",
       "     -25.19144598470018],\n",
       "    [-0.2681879087989819,\n",
       "     -0.703282304866879,\n",
       "     0.6583838130111942,\n",
       "     99.53746669856275],\n",
       "    [0.009629874345782252,\n",
       "     0.68142857473939,\n",
       "     0.731821264414152,\n",
       "     -1.2561212703069695],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 302},\n",
       "  {'file_path': './images/frame_0513.jpg',\n",
       "   'transform_matrix': [[-0.9599980058802737,\n",
       "     0.21114774999317118,\n",
       "     -0.18390338870917877,\n",
       "     -26.39459097821218],\n",
       "    [-0.279840401562104,\n",
       "     -0.7008439191357805,\n",
       "     0.6561304372332989,\n",
       "     99.39488643312787],\n",
       "    [0.009652893838555013,\n",
       "     0.6813475094863273,\n",
       "     0.7318964359506888,\n",
       "     -1.25275254494515],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 303},\n",
       "  {'file_path': './images/frame_0514.jpg',\n",
       "   'transform_matrix': [[-0.9565563743209142,\n",
       "     0.2196198018971397,\n",
       "     -0.1917473477279106,\n",
       "     -27.586084758393707],\n",
       "    [-0.29138422859657653,\n",
       "     -0.6981582800695691,\n",
       "     0.6539650199326252,\n",
       "     99.24708687324774],\n",
       "    [0.009753669627642469,\n",
       "     0.6814265614025931,\n",
       "     0.7318214996458036,\n",
       "     -1.2581218853846705],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 304},\n",
       "  {'file_path': './images/frame_0515.jpg',\n",
       "   'transform_matrix': [[-0.9529230660107317,\n",
       "     0.22808599166200333,\n",
       "     -0.19978591209659222,\n",
       "     -28.79909419326954],\n",
       "    [-0.303058389484831,\n",
       "     -0.6954723261688095,\n",
       "     0.6515165815972802,\n",
       "     99.07154744624124],\n",
       "    [0.009656232576279882,\n",
       "     0.6813919752542625,\n",
       "     0.7318549946755348,\n",
       "     -1.2460909256825545],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 305},\n",
       "  {'file_path': './images/frame_0516.jpg',\n",
       "   'transform_matrix': [[-0.9491883274143976,\n",
       "     0.23668884697231263,\n",
       "     -0.20741241240382782,\n",
       "     -29.95512357817564],\n",
       "    [-0.3145512463999934,\n",
       "     -0.692676547816296,\n",
       "     0.6490429211489094,\n",
       "     98.86862185061673],\n",
       "    [0.009951506844143657,\n",
       "     0.6813057975859416,\n",
       "     0.7319312656850472,\n",
       "     -1.2333003109810796],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 306},\n",
       "  {'file_path': './images/frame_0517.jpg',\n",
       "   'transform_matrix': [[-0.9452492294255058,\n",
       "     0.2450095370424383,\n",
       "     -0.21557880468343268,\n",
       "     -31.20338582499636],\n",
       "    [-0.32620448126992657,\n",
       "     -0.6896587830758062,\n",
       "     0.6464993420923306,\n",
       "     98.66471272063293],\n",
       "    [0.009722688409369792,\n",
       "     0.6814257770914219,\n",
       "     0.7318226422060512,\n",
       "     -1.2444489293853185],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 307},\n",
       "  {'file_path': './images/frame_0518.jpg',\n",
       "   'transform_matrix': [[-0.9412236757181037,\n",
       "     0.25344204869524656,\n",
       "     -0.22330499372127405,\n",
       "     -32.38391552186058],\n",
       "    [-0.3376407452169245,\n",
       "     -0.6866607862728683,\n",
       "     0.6438133982486589,\n",
       "     98.44230770047477],\n",
       "    [0.009834604062280802,\n",
       "     0.6813692776668776,\n",
       "     0.7318737514179994,\n",
       "     -1.2212548534760737],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 308},\n",
       "  {'file_path': './images/frame_0519.jpg',\n",
       "   'transform_matrix': [[-0.9370424663134682,\n",
       "     0.26189292984930745,\n",
       "     -0.2310054320143112,\n",
       "     -33.55201630009136],\n",
       "    [-0.3490712755120141,\n",
       "     -0.6834368326705773,\n",
       "     0.6411422153950126,\n",
       "     98.21856791780003],\n",
       "    [0.010032992454316386,\n",
       "     0.6814148435748629,\n",
       "     0.7318286343251791,\n",
       "     -1.247642983892006],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 309},\n",
       "  {'file_path': './images/frame_0520.jpg',\n",
       "   'transform_matrix': [[-0.9327047451802948,\n",
       "     0.2701426964551335,\n",
       "     -0.2389242178392781,\n",
       "     -34.77166457179452],\n",
       "    [-0.36050459757795505,\n",
       "     -0.6801777910781054,\n",
       "     0.6382747117419472,\n",
       "     97.97649928624054],\n",
       "    [0.00991430498410841,\n",
       "     0.6814551313740757,\n",
       "     0.7317927373789818,\n",
       "     -1.2591992902871116],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 310},\n",
       "  {'file_path': './images/frame_0521.jpg',\n",
       "   'transform_matrix': [[-0.9282402998856507,\n",
       "     0.2785274258252441,\n",
       "     -0.24656118658734646,\n",
       "     -35.95087330178965],\n",
       "    [-0.37184449723119145,\n",
       "     -0.676818719611664,\n",
       "     0.6353330549106588,\n",
       "     97.72687954509513],\n",
       "    [0.010080453713973833,\n",
       "     0.6814241658808344,\n",
       "     0.731819301881639,\n",
       "     -1.2614239422158153],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 311},\n",
       "  {'file_path': './images/frame_0522.jpg',\n",
       "   'transform_matrix': [[-0.9236421995185465,\n",
       "     0.2867357687690907,\n",
       "     -0.25429841953291776,\n",
       "     -37.14427785544539],\n",
       "    [-0.38312559483667347,\n",
       "     -0.6734937339594261,\n",
       "     0.6321558106182642,\n",
       "     97.42108322644167],\n",
       "    [0.00999329022827021,\n",
       "     0.6813140166074584,\n",
       "     0.731923045766852,\n",
       "     -1.2554952863086404],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 312},\n",
       "  {'file_path': './images/frame_0523.jpg',\n",
       "   'transform_matrix': [[-0.9188793917541934,\n",
       "     0.29499867608331987,\n",
       "     -0.26198558074545275,\n",
       "     -38.33592867196841],\n",
       "    [-0.3944091775394452,\n",
       "     -0.6698226092381377,\n",
       "     0.6291097462494692,\n",
       "     97.14399332029599],\n",
       "    [0.010102676977018806,\n",
       "     0.6814054984093552,\n",
       "     0.7318363769691941,\n",
       "     -1.270734750130552],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 313},\n",
       "  {'file_path': './images/frame_0524.jpg',\n",
       "   'transform_matrix': [[-0.9140012155116358,\n",
       "     0.3031488938244516,\n",
       "     -0.26963405982231464,\n",
       "     -39.5271735316489],\n",
       "    [-0.4055874953213491,\n",
       "     -0.6663090547111812,\n",
       "     0.62572440199248,\n",
       "     96.82240566117173],\n",
       "    [0.010028044784842247,\n",
       "     0.6812730669730777,\n",
       "     0.7319606864681256,\n",
       "     -1.23910336907682],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 314},\n",
       "  {'file_path': './images/frame_0525.jpg',\n",
       "   'transform_matrix': [[-0.9089945735022897,\n",
       "     0.3112783922215217,\n",
       "     -0.2771905984685896,\n",
       "     -40.70812248587713],\n",
       "    [-0.41668565723133244,\n",
       "     -0.6625430685074468,\n",
       "     0.6224224814628961,\n",
       "     96.48272805890011],\n",
       "    [0.010095959641505217,\n",
       "     0.6812800047768327,\n",
       "     0.7319532954295621,\n",
       "     -1.2693902110393718],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 315},\n",
       "  {'file_path': './images/frame_0526.jpg',\n",
       "   'transform_matrix': [[-0.9037116075018204,\n",
       "     0.3194517800304084,\n",
       "     -0.28505418906214874,\n",
       "     -41.9400358594488],\n",
       "    [-0.428026209024724,\n",
       "     -0.658644872856638,\n",
       "     0.6188541797932584,\n",
       "     96.1262744248085],\n",
       "    [0.009944589202123816,\n",
       "     0.6812763695410746,\n",
       "     0.7319587511947201,\n",
       "     -1.2782433133336115],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 316},\n",
       "  {'file_path': './images/frame_0527.jpg',\n",
       "   'transform_matrix': [[-0.8984718999395924,\n",
       "     0.3275066881753377,\n",
       "     -0.2923826503391764,\n",
       "     -43.09285903474566],\n",
       "    [-0.4389147686339391,\n",
       "     -0.6547357325631596,\n",
       "     0.6153657013353915,\n",
       "     95.78580551170917],\n",
       "    [0.01010301410246922,\n",
       "     0.6812198541626665,\n",
       "     0.732009179860909,\n",
       "     -1.2682539712493244],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 317},\n",
       "  {'file_path': './images/frame_0528.jpg',\n",
       "   'transform_matrix': [[-0.893087886034762,\n",
       "     0.3354911791492907,\n",
       "     -0.299732708477034,\n",
       "     -44.2536664948864],\n",
       "    [-0.4497673792008536,\n",
       "     -0.6507792833462988,\n",
       "     0.6117153169359695,\n",
       "     95.40376242509497],\n",
       "    [0.010165255764401181,\n",
       "     0.6811255340099184,\n",
       "     0.7320960828299438,\n",
       "     -1.2612304720641292],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 318},\n",
       "  {'file_path': './images/frame_0529.jpg',\n",
       "   'transform_matrix': [[-0.887490043414412,\n",
       "     0.3434916329606866,\n",
       "     -0.30720501448753434,\n",
       "     -45.43507468805933],\n",
       "    [-0.4607137707199553,\n",
       "     -0.6465859358782444,\n",
       "     0.608004481063631,\n",
       "     95.03380715883402],\n",
       "    [0.010210010249049373,\n",
       "     0.6811315039039494,\n",
       "     0.7320899057358041,\n",
       "     -1.2521975742664366],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 319},\n",
       "  {'file_path': './images/frame_0530.jpg',\n",
       "   'transform_matrix': [[-0.8817316269243111,\n",
       "     0.3514937687703323,\n",
       "     -0.31464498819627784,\n",
       "     -46.620301222400606],\n",
       "    [-0.47164008090808424,\n",
       "     -0.6423225840502433,\n",
       "     0.6041335383009568,\n",
       "     94.60701454333],\n",
       "    [0.010245592341267712,\n",
       "     0.6810828352958589,\n",
       "     0.7321346865863756,\n",
       "     -1.265910074975997],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 320},\n",
       "  {'file_path': './images/frame_0531.jpg',\n",
       "   'transform_matrix': [[-0.8759219707692093,\n",
       "     0.35924478287494,\n",
       "     -0.32203087911087275,\n",
       "     -47.79742038591205],\n",
       "    [-0.482345810390368,\n",
       "     -0.6380295187953342,\n",
       "     0.6002173375908542,\n",
       "     94.18070762991387],\n",
       "    [0.010159740284252417,\n",
       "     0.6810737985878854,\n",
       "     0.732144289436464,\n",
       "     -1.2857317544735527],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 321},\n",
       "  {'file_path': './images/frame_0532.jpg',\n",
       "   'transform_matrix': [[-0.8698330770438365,\n",
       "     0.367201922858167,\n",
       "     -0.32947407474597434,\n",
       "     -48.98265562933432],\n",
       "    [-0.4932410959214525,\n",
       "     -0.6335056570510644,\n",
       "     0.5961407583603923,\n",
       "     93.73754277235184],\n",
       "    [0.010180342560821934,\n",
       "     0.6810531039012772,\n",
       "     0.7321632538524318,\n",
       "     -1.2909084456076478],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 322},\n",
       "  {'file_path': './images/frame_0533.jpg',\n",
       "   'transform_matrix': [[-0.8636429245027426,\n",
       "     0.37509177692384543,\n",
       "     -0.33678933748036355,\n",
       "     -50.14537556162495],\n",
       "    [-0.5040002242907256,\n",
       "     -0.6289244634736866,\n",
       "     0.5919778654301475,\n",
       "     93.29522213867446],\n",
       "    [0.010230976065283117,\n",
       "     0.6809993965698117,\n",
       "     0.7322125026249577,\n",
       "     -1.2812263010679237],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 323},\n",
       "  {'file_path': './images/frame_0534.jpg',\n",
       "   'transform_matrix': [[-0.8573853184407471,\n",
       "     0.38290236731485944,\n",
       "     -0.34391305998309407,\n",
       "     -51.27818393283166],\n",
       "    [-0.5145693477642124,\n",
       "     -0.6241946487166912,\n",
       "     0.5878770507980046,\n",
       "     92.84283343777139],\n",
       "    [0.010430822775404002,\n",
       "     0.6810042713655494,\n",
       "     0.7322051490655506,\n",
       "     -1.296436287134796],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 324},\n",
       "  {'file_path': './images/frame_0535.jpg',\n",
       "   'transform_matrix': [[-0.8509049238214904,\n",
       "     0.3906154821021008,\n",
       "     -0.3512553996147061,\n",
       "     -52.46758136296761],\n",
       "    [-0.5252183809615343,\n",
       "     -0.6194576507827753,\n",
       "     0.5834534010414455,\n",
       "     92.35920328870559],\n",
       "    [0.01031808686182376,\n",
       "     0.6809491640561934,\n",
       "     0.7322579962381314,\n",
       "     -1.2875200357914631],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 325},\n",
       "  {'file_path': './images/frame_0536.jpg',\n",
       "   'transform_matrix': [[-0.8442852684682319,\n",
       "     0.39842353550454535,\n",
       "     -0.3583867628743894,\n",
       "     -53.61314578130637],\n",
       "    [-0.5357917026341401,\n",
       "     -0.6145178544451847,\n",
       "     0.5790466802914045,\n",
       "     91.8610304482855],\n",
       "    [0.010470761000746592,\n",
       "     0.6809012358074739,\n",
       "     0.7323003961762687,\n",
       "     -1.2902238674980968],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 326},\n",
       "  {'file_path': './images/frame_0537.jpg',\n",
       "   'transform_matrix': [[-0.8375803357384429,\n",
       "     0.406016798690486,\n",
       "     -0.3655263880561931,\n",
       "     -54.765304450123764],\n",
       "    [-0.5462119406547001,\n",
       "     -0.6094236486823773,\n",
       "     0.5746784599346706,\n",
       "     91.37613800464474],\n",
       "    [0.010568683480157924,\n",
       "     0.6809942551944088,\n",
       "     0.7322124878214714,\n",
       "     -1.3054684965855563],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 327},\n",
       "  {'file_path': './images/frame_0538.jpg',\n",
       "   'transform_matrix': [[-0.830694532619646,\n",
       "     0.41366171424272635,\n",
       "     -0.37259975797844647,\n",
       "     -55.899315354132895],\n",
       "    [-0.5566275949833251,\n",
       "     -0.6043726928083899,\n",
       "     0.5699994462195687,\n",
       "     90.82975955799306],\n",
       "    [0.010597828971403475,\n",
       "     0.6808947307457334,\n",
       "     0.7323046167161505,\n",
       "     -1.3148476136417193],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 328},\n",
       "  {'file_path': './images/frame_0539.jpg',\n",
       "   'transform_matrix': [[-0.8235844003675489,\n",
       "     0.4213140183550952,\n",
       "     -0.37974100833160945,\n",
       "     -57.05362938711482],\n",
       "    [-0.567093158344444,\n",
       "     -0.5990458544315733,\n",
       "     0.5652870191745692,\n",
       "     90.30771122074816],\n",
       "    [0.010681068773695372,\n",
       "     0.680910098490123,\n",
       "     0.7322891181384732,\n",
       "     -1.319856296952056],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 329},\n",
       "  {'file_path': './images/frame_0540.jpg',\n",
       "   'transform_matrix': [[-0.8163823913902597,\n",
       "     0.428827462369546,\n",
       "     -0.386816233560093,\n",
       "     -58.20680383068134],\n",
       "    [-0.5774139871151032,\n",
       "     -0.5937744719133884,\n",
       "     0.5603793036754803,\n",
       "     89.72485834868763],\n",
       "    [0.010624429949899263,\n",
       "     0.6808368997209774,\n",
       "     0.7323579981583921,\n",
       "     -1.322685378921332],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 330},\n",
       "  {'file_path': './images/frame_0541.jpg',\n",
       "   'transform_matrix': [[-0.8091074127910123,\n",
       "     0.4362267104512559,\n",
       "     -0.39376573194668757,\n",
       "     -59.34910600587186],\n",
       "    [-0.5875654622101466,\n",
       "     -0.5884433940375748,\n",
       "     0.5554288429954969,\n",
       "     89.14186012160924],\n",
       "    [0.010584053307273978,\n",
       "     0.680764738439364,\n",
       "     0.7324256608784083,\n",
       "     -1.3221038392559468],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 331},\n",
       "  {'file_path': './images/frame_0542.jpg',\n",
       "   'transform_matrix': [[-0.8017041572537029,\n",
       "     0.44350732304484825,\n",
       "     -0.40071398608948333,\n",
       "     -60.484174811424175],\n",
       "    [-0.5976284440060597,\n",
       "     -0.5829699531245246,\n",
       "     0.5504418921819864,\n",
       "     88.55226467680954],\n",
       "    [0.01052079640644624,\n",
       "     0.6807696292870168,\n",
       "     0.7324220263505131,\n",
       "     -1.3335680479019667],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 332},\n",
       "  {'file_path': './images/frame_0543.jpg',\n",
       "   'transform_matrix': [[-0.7941143434261749,\n",
       "     0.45088542869702936,\n",
       "     -0.40753495525354777,\n",
       "     -61.61423682982646],\n",
       "    [-0.6076764692472566,\n",
       "     -0.5773794966665096,\n",
       "     0.5453092934769369,\n",
       "     87.9483804265889],\n",
       "    [0.010569687223520965,\n",
       "     0.6806873342569437,\n",
       "     0.732497805248707,\n",
       "     -1.3251063304832826],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 333},\n",
       "  {'file_path': './images/frame_0544.jpg',\n",
       "   'transform_matrix': [[-0.786457725815494,\n",
       "     0.4579905567587266,\n",
       "     -0.4144018525838816,\n",
       "     -62.75164309764526],\n",
       "    [-0.6175555508470967,\n",
       "     -0.5717229706972191,\n",
       "     0.5401462638907039,\n",
       "     87.33537623719295],\n",
       "    [0.010458829908761645,\n",
       "     0.6807183666517149,\n",
       "     0.732470557892917,\n",
       "     -1.3397643974218114],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 334},\n",
       "  {'file_path': './images/frame_0545.jpg',\n",
       "   'transform_matrix': [[-0.7786551003271779,\n",
       "     0.4652160369125538,\n",
       "     -0.421034765469373,\n",
       "     -63.85473384986462],\n",
       "    [-0.6273632051207118,\n",
       "     -0.5659416868723525,\n",
       "     0.5349069226704248,\n",
       "     86.70344827906116],\n",
       "    [0.01056615328018261,\n",
       "     0.6806497234697546,\n",
       "     0.7325328049619391,\n",
       "     -1.3378593473264657],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 335},\n",
       "  {'file_path': './images/frame_0546.jpg',\n",
       "   'transform_matrix': [[-0.7707868141782611,\n",
       "     0.47234329074028386,\n",
       "     -0.42752719537073486,\n",
       "     -64.95827382491393],\n",
       "    [-0.6370030915891082,\n",
       "     -0.56010032323365,\n",
       "     0.5296363745245215,\n",
       "     86.06969959560149],\n",
       "    [0.010712067720341537,\n",
       "     0.680572878982259,\n",
       "     0.732602080258413,\n",
       "     -1.3352131162966636],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 336},\n",
       "  {'file_path': './images/frame_0547.jpg',\n",
       "   'transform_matrix': [[-0.7626368923456882,\n",
       "     0.4793790700673116,\n",
       "     -0.43425876803434915,\n",
       "     -66.0667444876359],\n",
       "    [-0.6467384796823243,\n",
       "     -0.5540342883029078,\n",
       "     0.5241901814064113,\n",
       "     85.42904610123739],\n",
       "    [0.010691554213812647,\n",
       "     0.6806186263731622,\n",
       "     0.7325598788511443,\n",
       "     -1.3516072536931005],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 337},\n",
       "  {'file_path': './images/frame_0548.jpg',\n",
       "   'transform_matrix': [[-0.7542269625125254,\n",
       "     0.4864626540148932,\n",
       "     -0.4410167516862776,\n",
       "     -67.20278795531136],\n",
       "    [-0.6565277501775743,\n",
       "     -0.5478339298541406,\n",
       "     0.5185067970117085,\n",
       "     84.7394347708546],\n",
       "    [0.01063025239127612,\n",
       "     0.6806115423274534,\n",
       "     0.7325673526609979,\n",
       "     -1.3652250996727213],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 338},\n",
       "  {'file_path': './images/frame_0549.jpg',\n",
       "   'transform_matrix': [[-0.7457415214281445,\n",
       "     0.49354929451865553,\n",
       "     -0.4475250575087093,\n",
       "     -68.28958824406575],\n",
       "    [-0.6661488476138906,\n",
       "     -0.5415499137137735,\n",
       "     0.5128054248731092,\n",
       "     84.05096692646184],\n",
       "    [0.010737599392869385,\n",
       "     0.6805385990792454,\n",
       "     0.732633550366441,\n",
       "     -1.370599518597922],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 339},\n",
       "  {'file_path': './images/frame_0550.jpg',\n",
       "   'transform_matrix': [[-0.7370586402924137,\n",
       "     0.5005147094282795,\n",
       "     -0.4541250779424356,\n",
       "     -69.41552392525175],\n",
       "    [-0.6757451154529841,\n",
       "     -0.5352197309275109,\n",
       "     0.5068613011143347,\n",
       "     83.3300833293826],\n",
       "    [0.010634834823895583,\n",
       "     0.6804593046404818,\n",
       "     0.7327086972436322,\n",
       "     -1.3943569376571066],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 340},\n",
       "  {'file_path': './images/frame_0551.jpg',\n",
       "   'transform_matrix': [[-0.7282474649017617,\n",
       "     0.5075183551504976,\n",
       "     -0.46052225684486825,\n",
       "     -70.49060584147742],\n",
       "    [-0.6852298784465587,\n",
       "     -0.5287020565720687,\n",
       "     0.5009332780526561,\n",
       "     82.63049036073588],\n",
       "    [0.010753769026338594,\n",
       "     0.68036699990652,\n",
       "     0.7327926731961296,\n",
       "     -1.4240326013380709],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 341},\n",
       "  {'file_path': './images/frame_0552.jpg',\n",
       "   'transform_matrix': [[-0.7191525266067762,\n",
       "     0.514430584128974,\n",
       "     -0.46709829542379266,\n",
       "     -71.59197680963908],\n",
       "    [-0.6947710730770421,\n",
       "     -0.5220841011384125,\n",
       "     0.49469318506916116,\n",
       "     81.87679055708014],\n",
       "    [0.010620710450135748,\n",
       "     0.6802862378816864,\n",
       "     0.7328695893938538,\n",
       "     -1.4546735665654047],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 342},\n",
       "  {'file_path': './images/frame_0553.jpg',\n",
       "   'transform_matrix': [[-0.7099268097704571,\n",
       "     0.5213935983787802,\n",
       "     -0.4734476109758801,\n",
       "     -72.65807741755617],\n",
       "    [-0.704194828667295,\n",
       "     -0.5153450669638219,\n",
       "     0.4883944156460973,\n",
       "     81.12037786560214],\n",
       "    [0.01065683101959387,\n",
       "     0.6801236487034406,\n",
       "     0.7330199549991383,\n",
       "     -1.4504807155804438],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 343},\n",
       "  {'file_path': './images/frame_0554.jpg',\n",
       "   'transform_matrix': [[-0.7005326889714684,\n",
       "     0.5282211242637771,\n",
       "     -0.47982954844810805,\n",
       "     -73.72893184607142],\n",
       "    [-0.7135411819278957,\n",
       "     -0.5084631885177127,\n",
       "     0.4820001738748055,\n",
       "     80.35631596966142],\n",
       "    [0.0106270115905465,\n",
       "     0.6800350210128243,\n",
       "     0.7331026100217773,\n",
       "     -1.465677827148276],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 344},\n",
       "  {'file_path': './images/frame_0555.jpg',\n",
       "   'transform_matrix': [[-0.6909625040595172,\n",
       "     0.5350025852044035,\n",
       "     -0.48615126432871353,\n",
       "     -74.78804785848895],\n",
       "    [-0.7228104016232646,\n",
       "     -0.5012990804179254,\n",
       "     0.47565150612329343,\n",
       "     79.58457187434388],\n",
       "    [0.010767603680334319,\n",
       "     0.6800525463497269,\n",
       "     0.7330843013693827,\n",
       "     -1.496402638535224],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 345},\n",
       "  {'file_path': './images/frame_0556.jpg',\n",
       "   'transform_matrix': [[-0.6812479997698555,\n",
       "     0.5416561088528048,\n",
       "     -0.4924528632793288,\n",
       "     -75.84504626421301],\n",
       "    [-0.7319735378865933,\n",
       "     -0.49411751147478206,\n",
       "     0.46910832937366664,\n",
       "     78.80288388193895],\n",
       "    [0.010765808996767144,\n",
       "     0.6800415756381422,\n",
       "     0.7330945046583272,\n",
       "     -1.5002662669538778],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 346},\n",
       "  {'file_path': './images/frame_0557.jpg',\n",
       "   'transform_matrix': [[-0.6712771154229371,\n",
       "     0.5483642952497503,\n",
       "     -0.4986818966081538,\n",
       "     -76.88517750388971],\n",
       "    [-0.7411280659555355,\n",
       "     -0.4867904257626956,\n",
       "     0.46234648396930733,\n",
       "     77.97988960461285],\n",
       "    [0.010780731072997476,\n",
       "     0.6799497636450932,\n",
       "     0.7331794423990035,\n",
       "     -1.5010347461215903],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 347},\n",
       "  {'file_path': './images/frame_0558.jpg',\n",
       "   'transform_matrix': [[-0.6611375930341585,\n",
       "     0.554940763892167,\n",
       "     -0.504913687324653,\n",
       "     -77.93369158517389],\n",
       "    [-0.7501882895359103,\n",
       "     -0.4793642665096885,\n",
       "     0.45544201632788933,\n",
       "     77.12844682997031],\n",
       "    [0.010705761074503155,\n",
       "     0.6798901738989956,\n",
       "     0.7332357998048167,\n",
       "     -1.5015264661492278],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 348},\n",
       "  {'file_path': './images/frame_0559.jpg',\n",
       "   'transform_matrix': [[-0.6509917562511472,\n",
       "     0.5614550212738696,\n",
       "     -0.5108600516574042,\n",
       "     -78.92980072553046],\n",
       "    [-0.7590056932398197,\n",
       "     -0.4717383621008565,\n",
       "     0.4487463374245431,\n",
       "     76.31620583721877],\n",
       "    [0.010958600393645134,\n",
       "     0.6798758539680314,\n",
       "     0.7332453424800273,\n",
       "     -1.510870634384991],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 349},\n",
       "  {'file_path': './images/frame_0560.jpg',\n",
       "   'transform_matrix': [[-0.6404858366794304,\n",
       "     0.5678736037610411,\n",
       "     -0.5170081848138367,\n",
       "     -79.96989546671526],\n",
       "    [-0.7678937287953482,\n",
       "     -0.46407205444074606,\n",
       "     0.44156126365876047,\n",
       "     75.431737760944],\n",
       "    [0.010821935585941434,\n",
       "     0.6798210782541193,\n",
       "     0.7332981571445413,\n",
       "     -1.509549388230999],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 350},\n",
       "  {'file_path': './images/frame_0561.jpg',\n",
       "   'transform_matrix': [[-0.6299210254562068,\n",
       "     0.5742363351991571,\n",
       "     -0.5229265082449372,\n",
       "     -80.98174663968898],\n",
       "    [-0.7765821156829708,\n",
       "     -0.4562111924481994,\n",
       "     0.4345015137906348,\n",
       "     74.57093795051378],\n",
       "    [0.010941631028424138,\n",
       "     0.6797970132488326,\n",
       "     0.7333186902625656,\n",
       "     -1.5033391900738704],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 351},\n",
       "  {'file_path': './images/frame_0562.jpg',\n",
       "   'transform_matrix': [[-0.6191687232767645,\n",
       "     0.5805581371241461,\n",
       "     -0.5287554647800462,\n",
       "     -81.95627796118468],\n",
       "    [-0.7851810075786502,\n",
       "     -0.44829226781076953,\n",
       "     0.42722924520549027,\n",
       "     73.66624707118054],\n",
       "    [0.010994428297870033,\n",
       "     0.6796957348990933,\n",
       "     0.7334117741803606,\n",
       "     -1.5058948865550903],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 352},\n",
       "  {'file_path': './images/frame_0563.jpg',\n",
       "   'transform_matrix': [[-0.6082376358258295,\n",
       "     0.5866610524549247,\n",
       "     -0.5346735339414938,\n",
       "     -82.95650187889514],\n",
       "    [-0.7936799866659339,\n",
       "     -0.44024383747615436,\n",
       "     0.4198302541864182,\n",
       "     72.75857231963379],\n",
       "    [0.010911330394082569,\n",
       "     0.6797162445438165,\n",
       "     0.7333940071832342,\n",
       "     -1.5072652177639234],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 353},\n",
       "  {'file_path': './images/frame_0564.jpg',\n",
       "   'transform_matrix': [[-0.5971080019480822,\n",
       "     0.5927031669790118,\n",
       "     -0.540522885604873,\n",
       "     -83.93430327115503],\n",
       "    [-0.8020853824524249,\n",
       "     -0.4319085041702087,\n",
       "     0.4124488856593021,\n",
       "     71.84804413762772],\n",
       "    [0.011003329755867137,\n",
       "     0.6798220354464118,\n",
       "     0.7332945703165824,\n",
       "     -1.5401243694816182],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 354},\n",
       "  {'file_path': './images/frame_0565.jpg',\n",
       "   'transform_matrix': [[-0.5857507416620026,\n",
       "     0.5988446811239949,\n",
       "     -0.546151184684163,\n",
       "     -84.89595086187583],\n",
       "    [-0.8104153156879862,\n",
       "     -0.42352696163526105,\n",
       "     0.40478627554098945,\n",
       "     70.92368676394135],\n",
       "    [0.011094356256931446,\n",
       "     0.6797131458619179,\n",
       "     0.7333941331928824,\n",
       "     -1.5125644123720121],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 355},\n",
       "  {'file_path': './images/frame_0566.jpg',\n",
       "   'transform_matrix': [[-0.5744668431535493,\n",
       "     0.6046633538792816,\n",
       "     -0.5516974484195607,\n",
       "     -85.8187837242102],\n",
       "    [-0.8184524067110707,\n",
       "     -0.4151802234527974,\n",
       "     0.3971914399915251,\n",
       "     69.96836699681404],\n",
       "    [0.011113238324245643,\n",
       "     0.6797114170948901,\n",
       "     0.7333954495391998,\n",
       "     -1.5317932343436231],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 356},\n",
       "  {'file_path': './images/frame_0567.jpg',\n",
       "   'transform_matrix': [[-0.5631427672650053,\n",
       "     0.610382981693757,\n",
       "     -0.5570483276482846,\n",
       "     -86.74232123628808],\n",
       "    [-0.8262811937140593,\n",
       "     -0.40663371954186256,\n",
       "     0.3897542906062986,\n",
       "     69.04880996670877],\n",
       "    [0.011384752592011504,\n",
       "     0.6797658668910852,\n",
       "     0.7333408168227309,\n",
       "     -1.5391024056222629],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 357},\n",
       "  {'file_path': './images/frame_0568.jpg',\n",
       "   'transform_matrix': [[-0.5513317225398973,\n",
       "     0.6161057637292408,\n",
       "     -0.562536238495618,\n",
       "     -87.68855128288658],\n",
       "    [-0.8342069211836479,\n",
       "     -0.39781959730085015,\n",
       "     0.3818879163480935,\n",
       "     68.07956759371],\n",
       "    [0.011495406495148816,\n",
       "     0.6798185463070263,\n",
       "     0.733290256124076,\n",
       "     -1.5443674240960898],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 358},\n",
       "  {'file_path': './images/frame_0569.jpg',\n",
       "   'transform_matrix': [[-0.5393408833805039,\n",
       "     0.6216342640115718,\n",
       "     -0.5680512770174265,\n",
       "     -88.62465345465534],\n",
       "    [-0.8420089972946457,\n",
       "     -0.38889496152505904,\n",
       "     0.3738737184869889,\n",
       "     67.08475106386913],\n",
       "    [0.011500434304976213,\n",
       "     0.6799496677749127,\n",
       "     0.733168595415531,\n",
       "     -1.5590674913898896],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 359},\n",
       "  {'file_path': './images/frame_0570.jpg',\n",
       "   'transform_matrix': [[-0.5273256788348349,\n",
       "     0.6271819196086261,\n",
       "     -0.5732106664721263,\n",
       "     -89.52085330514413],\n",
       "    [-0.849585369268798,\n",
       "     -0.3800779124158877,\n",
       "     0.36571229240754366,\n",
       "     66.07586990433205],\n",
       "    [0.011503424089388975,\n",
       "     0.679840878595587,\n",
       "     0.7332694259442433,\n",
       "     -1.5596177023195155],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 360},\n",
       "  {'file_path': './images/frame_0571.jpg',\n",
       "   'transform_matrix': [[-0.5150094643133485,\n",
       "     0.6327093911081162,\n",
       "     -0.578311402335519,\n",
       "     -90.38805343965397],\n",
       "    [-0.8571048248352827,\n",
       "     -0.37090810847506994,\n",
       "     0.35748915271868753,\n",
       "     65.06920045318397],\n",
       "    [0.011686355794564679,\n",
       "     0.6797837902385158,\n",
       "     0.7333194580925835,\n",
       "     -1.5746871960840592],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 361},\n",
       "  {'file_path': './images/frame_0572.jpg',\n",
       "   'transform_matrix': [[-0.5026398474126779,\n",
       "     0.6380956313003346,\n",
       "     -0.5832556464436391,\n",
       "     -91.26795381801111],\n",
       "    [-0.8644168486280585,\n",
       "     -0.36184652455271554,\n",
       "     0.34907105935189947,\n",
       "     64.02809621490502],\n",
       "    [0.011691689394448649,\n",
       "     0.6796330318521522,\n",
       "     0.7334590966199515,\n",
       "     -1.5693074823992077],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 362},\n",
       "  {'file_path': './images/frame_0573.jpg',\n",
       "   'transform_matrix': [[-0.4902004141507652,\n",
       "     0.6433334960339323,\n",
       "     -0.5880693554736351,\n",
       "     -92.13104286397126],\n",
       "    [-0.8715305680549291,\n",
       "     -0.3526890181285641,\n",
       "     0.3406536737470504,\n",
       "     62.98364589123426],\n",
       "    [0.011748315294998595,\n",
       "     0.679508991384417,\n",
       "     0.7335731100002654,\n",
       "     -1.5789063006521926],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 363},\n",
       "  {'file_path': './images/frame_0574.jpg',\n",
       "   'transform_matrix': [[-0.47758043966397856,\n",
       "     0.6483243218487053,\n",
       "     -0.5929523567284116,\n",
       "     -92.97725635612605],\n",
       "    [-0.8785091840567383,\n",
       "     -0.3433413763803828,\n",
       "     0.3321721132081806,\n",
       "     61.913778773564395],\n",
       "    [0.011770181745620462,\n",
       "     0.6795529949640726,\n",
       "     0.7335319964780229,\n",
       "     -1.6040150273231686],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 364},\n",
       "  {'file_path': './images/frame_0575.jpg',\n",
       "   'transform_matrix': [[-0.4646967576469282,\n",
       "     0.6532926584129959,\n",
       "     -0.5977170115498744,\n",
       "     -93.82185732043787],\n",
       "    [-0.8853929442981231,\n",
       "     -0.33392105045845627,\n",
       "     0.32338222933213534,\n",
       "     60.81659540164302],\n",
       "    [0.011672943910288483,\n",
       "     0.6794890981644972,\n",
       "     0.7335927397787314,\n",
       "     -1.609462558716395],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 365},\n",
       "  {'file_path': './images/frame_0576.jpg',\n",
       "   'transform_matrix': [[-0.45181697901053874,\n",
       "     0.658204190371614,\n",
       "     -0.6021865668171604,\n",
       "     -94.6196971463228],\n",
       "    [-0.8920333971053194,\n",
       "     -0.3244408960283252,\n",
       "     0.31466573285485167,\n",
       "     59.71714075179219],\n",
       "    [0.011740354617037799,\n",
       "     0.6793418497057173,\n",
       "     0.7337280254371376,\n",
       "     -1.5958263671216615],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 366},\n",
       "  {'file_path': './images/frame_0577.jpg',\n",
       "   'transform_matrix': [[-0.43891746580245017,\n",
       "     0.6627590095816787,\n",
       "     -0.6067140623323868,\n",
       "     -95.41795976972811],\n",
       "    [-0.8984496236291285,\n",
       "     -0.31483685225872343,\n",
       "     0.3060490651194609,\n",
       "     58.633009152093045],\n",
       "    [0.011820829676140999,\n",
       "     0.6794323010264754,\n",
       "     0.7336429760500924,\n",
       "     -1.6272762597636135],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 367},\n",
       "  {'file_path': './images/frame_0578.jpg',\n",
       "   'transform_matrix': [[-0.42587293675401394,\n",
       "     0.6672904645272466,\n",
       "     -0.6110283771573324,\n",
       "     -96.20932442323486],\n",
       "    [-0.9047048254532093,\n",
       "     -0.3051840519117989,\n",
       "     0.2972740709519999,\n",
       "     57.51050480609726],\n",
       "    [0.01189203692350015,\n",
       "     0.6794013029202314,\n",
       "     0.7336705316748807,\n",
       "     -1.6174105084909995],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 368},\n",
       "  {'file_path': './images/frame_0579.jpg',\n",
       "   'transform_matrix': [[-0.41283213484974973,\n",
       "     0.6715415656197573,\n",
       "     -0.6153060653693925,\n",
       "     -96.99274683913059],\n",
       "    [-0.9107298671107442,\n",
       "     -0.2955576802458223,\n",
       "     0.28847316478340645,\n",
       "     56.37543321593298],\n",
       "    [0.011863287396173131,\n",
       "     0.679468603610699,\n",
       "     0.7336086689233453,\n",
       "     -1.6344273718098532],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 369},\n",
       "  {'file_path': './images/frame_0580.jpg',\n",
       "   'transform_matrix': [[-0.3998433890372355,\n",
       "     0.6756775962184177,\n",
       "     -0.6193424337244452,\n",
       "     -97.74266923454323],\n",
       "    [-0.9165064301316376,\n",
       "     -0.2859668075231872,\n",
       "     0.2797122602288966,\n",
       "     55.236366335895745],\n",
       "    [0.011883929088460622,\n",
       "     0.6794724210470188,\n",
       "     0.7336047991022981,\n",
       "     -1.6443658548472255],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 370},\n",
       "  {'file_path': './images/frame_0581.jpg',\n",
       "   'transform_matrix': [[-0.3864039580956548,\n",
       "     0.679832338925409,\n",
       "     -0.6233137028168235,\n",
       "     -98.4754301376303],\n",
       "    [-0.9222527265444105,\n",
       "     -0.27605965148703615,\n",
       "     0.27063070262307054,\n",
       "     54.065651183234245],\n",
       "    [0.011911739982562513,\n",
       "     0.6794255365910705,\n",
       "     0.73364777017212,\n",
       "     -1.629099624649462],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 371},\n",
       "  {'file_path': './images/frame_0582.jpg',\n",
       "   'transform_matrix': [[-0.37307666255124516,\n",
       "     0.6836418707066019,\n",
       "     -0.6272540127224395,\n",
       "     -99.19235357701005],\n",
       "    [-0.9277232728947159,\n",
       "     -0.26615163169749667,\n",
       "     0.2617113636705075,\n",
       "     52.905431656385446],\n",
       "    [0.01197216727000195,\n",
       "     0.6795565477291334,\n",
       "     0.7335254362660651,\n",
       "     -1.6536050885296474],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 372},\n",
       "  {'file_path': './images/frame_0583.jpg',\n",
       "   'transform_matrix': [[-0.3596729837157897,\n",
       "     0.6873729899019382,\n",
       "     -0.6309942294017048,\n",
       "     -99.91091049432946],\n",
       "    [-0.9330012177623032,\n",
       "     -0.25623998090133376,\n",
       "     0.2526851793076584,\n",
       "     51.73297532418201],\n",
       "    [0.0120030179138678,\n",
       "     0.6796024168151215,\n",
       "     0.7334824351134833,\n",
       "     -1.6688657821602384],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 373},\n",
       "  {'file_path': './images/frame_0584.jpg',\n",
       "   'transform_matrix': [[-0.3460956060607884,\n",
       "     0.691067805059847,\n",
       "     -0.6345416615756453,\n",
       "     -100.57465617142043],\n",
       "    [-0.9381218953836179,\n",
       "     -0.24622450314806651,\n",
       "     0.24351756292172475,\n",
       "     50.5477061230866],\n",
       "    [0.012047442353627692,\n",
       "     0.6795577847830551,\n",
       "     0.7335230577653868,\n",
       "     -1.668671572392578],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 374},\n",
       "  {'file_path': './images/frame_0585.jpg',\n",
       "   'transform_matrix': [[-0.3325477834771054,\n",
       "     0.6945749125226095,\n",
       "     -0.6379480093226044,\n",
       "     -101.23990152912761],\n",
       "    [-0.9430092556996087,\n",
       "     -0.23624610235104793,\n",
       "     0.23435298758242526,\n",
       "     49.34463689720941],\n",
       "    [0.012062975144399928,\n",
       "     0.6795244440181293,\n",
       "     0.733553688977513,\n",
       "     -1.67678340767831],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 375},\n",
       "  {'file_path': './images/frame_0586.jpg',\n",
       "   'transform_matrix': [[-0.31897658225107683,\n",
       "     0.6979552011536747,\n",
       "     -0.6411805339823999,\n",
       "     -101.8898998351894],\n",
       "    [-0.9476859058972085,\n",
       "     -0.22627687273029795,\n",
       "     0.22514484366998921,\n",
       "     48.137072691148276],\n",
       "    [0.012056688567319992,\n",
       "     0.6794536879360726,\n",
       "     0.7336193305869609,\n",
       "     -1.6750518310288898],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 376},\n",
       "  {'file_path': './images/frame_0587.jpg',\n",
       "   'transform_matrix': [[-0.3052795031378483,\n",
       "     0.7012283644690461,\n",
       "     -0.6442695133466856,\n",
       "     -102.52549683254975],\n",
       "    [-0.9521869300129681,\n",
       "     -0.21624430168582143,\n",
       "     0.21582041678416441,\n",
       "     46.914761419093644],\n",
       "    [0.012019786869469492,\n",
       "     0.6793505596174025,\n",
       "     0.7337154365768342,\n",
       "     -1.6617701644704344],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 377},\n",
       "  {'file_path': './images/frame_0588.jpg',\n",
       "   'transform_matrix': [[-0.2915507101675077,\n",
       "     0.7043545627961614,\n",
       "     -0.6472115830770108,\n",
       "     -103.14032377054033],\n",
       "    [-0.9564793894951636,\n",
       "     -0.20613674074613653,\n",
       "     0.20653043743119087,\n",
       "     45.69590449951598],\n",
       "    [0.012056569652304025,\n",
       "     0.6792586355599673,\n",
       "     0.7337999353675568,\n",
       "     -1.668371167066522],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 378},\n",
       "  {'file_path': './images/frame_0589.jpg',\n",
       "   'transform_matrix': [[-0.2778074640098684,\n",
       "     0.707229444491404,\n",
       "     -0.6501150096596646,\n",
       "     -103.7444138789309],\n",
       "    [-0.9605622985327303,\n",
       "     -0.19608162308618143,\n",
       "     0.19716000539005482,\n",
       "     44.45452408299444],\n",
       "    [0.011961754801175138,\n",
       "     0.6792484890908987,\n",
       "     0.7338108792392,\n",
       "     -1.6809867880625795],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 379},\n",
       "  {'file_path': './images/frame_0590.jpg',\n",
       "   'transform_matrix': [[-0.26405311718474345,\n",
       "     0.7100539450818976,\n",
       "     -0.6527628561573138,\n",
       "     -104.32597060621731],\n",
       "    [-0.9644332943955749,\n",
       "     -0.1859450643760659,\n",
       "     0.1878639233474037,\n",
       "     43.2059954920529],\n",
       "    [0.012015488600910881,\n",
       "     0.6791522863893005,\n",
       "     0.733899039327527,\n",
       "     -1.6756116424889806],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 380},\n",
       "  {'file_path': './images/frame_0591.jpg',\n",
       "   'transform_matrix': [[-0.2503624573040759,\n",
       "     0.7126454390872778,\n",
       "     -0.6553282521918047,\n",
       "     -104.8939808457235],\n",
       "    [-0.9680768314137342,\n",
       "     -0.17582986124660735,\n",
       "     0.17863680576505825,\n",
       "     41.97365294679548],\n",
       "    [0.012078429227721963,\n",
       "     0.6791320475740338,\n",
       "     0.7339167347221967,\n",
       "     -1.6858492262632523],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 381},\n",
       "  {'file_path': './images/frame_0592.jpg',\n",
       "   'transform_matrix': [[-0.23664553292554916,\n",
       "     0.7150376422156369,\n",
       "     -0.6578146106321187,\n",
       "     -105.44512697647366],\n",
       "    [-0.9715216705694152,\n",
       "     -0.16576629333080456,\n",
       "     0.169313849431694,\n",
       "     40.70017515915936],\n",
       "    [0.01202228598875907,\n",
       "     0.6791485155767246,\n",
       "     0.7339024175117124,\n",
       "     -1.688655736212762],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 382},\n",
       "  {'file_path': './images/frame_0593.jpg',\n",
       "   'transform_matrix': [[-0.2227991403066547,\n",
       "     0.7172333528227562,\n",
       "     -0.6602551481641346,\n",
       "     -105.96430418392286],\n",
       "    [-0.9747889734872116,\n",
       "     -0.1554832051452935,\n",
       "     0.16003571503103597,\n",
       "     39.44200447613181],\n",
       "    [0.012124365812856804,\n",
       "     0.679265257845839,\n",
       "     0.7337926881873803,\n",
       "     -1.7122473769737943],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 383},\n",
       "  {'file_path': './images/frame_0594.jpg',\n",
       "   'transform_matrix': [[-0.2092267064930546,\n",
       "     0.7192896692393786,\n",
       "     -0.6624549471591066,\n",
       "     -106.46232773646447],\n",
       "    [-0.9777911973625949,\n",
       "     -0.1454449388116787,\n",
       "     0.15089779366939085,\n",
       "     38.18318226954656],\n",
       "    [0.012188504842358045,\n",
       "     0.6793144643679925,\n",
       "     0.7337460724597682,\n",
       "     -1.7099064089664624],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 384},\n",
       "  {'file_path': './images/frame_0595.jpg',\n",
       "   'transform_matrix': [[-0.195414370641912,\n",
       "     0.7211112004649503,\n",
       "     -0.664689296070445,\n",
       "     -106.97600245599756],\n",
       "    [-0.9806459235732579,\n",
       "     -0.13530158921666371,\n",
       "     0.1415169690694276,\n",
       "     36.90546901470089],\n",
       "    [0.012115953358179438,\n",
       "     0.6794792980801133,\n",
       "     0.7335946340825967,\n",
       "     -1.7319592054516615],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 385},\n",
       "  {'file_path': './images/frame_0596.jpg',\n",
       "   'transform_matrix': [[-0.18156111857062307,\n",
       "     0.7229129471399762,\n",
       "     -0.6666576565830306,\n",
       "     -107.44799563880852],\n",
       "    [-0.9833050901728764,\n",
       "     -0.1251124522486295,\n",
       "     0.13212862646847554,\n",
       "     35.6034943657227],\n",
       "    [0.012110320536455067,\n",
       "     0.6795172883376317,\n",
       "     0.733559537451989,\n",
       "     -1.7239653215835051],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 386},\n",
       "  {'file_path': './images/frame_0597.jpg',\n",
       "   'transform_matrix': [[-0.16803962152260896,\n",
       "     0.7244817681329896,\n",
       "     -0.6684974594128503,\n",
       "     -107.90602292217544],\n",
       "    [-0.9857067604831729,\n",
       "     -0.11520863332359915,\n",
       "     0.1229192952529318,\n",
       "     34.333601213317145],\n",
       "    [0.012036109683252336,\n",
       "     0.6795977769612005,\n",
       "     0.7334861918353249,\n",
       "     -1.7398967367907157],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 387},\n",
       "  {'file_path': './images/frame_0598.jpg',\n",
       "   'transform_matrix': [[-0.1544025271557361,\n",
       "     0.7260867020132029,\n",
       "     -0.670043252907984,\n",
       "     -108.3259933645641],\n",
       "    [-0.9879356074185832,\n",
       "     -0.10525106882762941,\n",
       "     0.1136021483296715,\n",
       "     33.05045326631912],\n",
       "    [0.011962240692998935,\n",
       "     0.6795000468507946,\n",
       "     0.7335779380047976,\n",
       "     -1.7372258238202294],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 388},\n",
       "  {'file_path': './images/frame_0599.jpg',\n",
       "   'transform_matrix': [[-0.14057018274954922,\n",
       "     0.7275795434142754,\n",
       "     -0.6714670741941355,\n",
       "     -108.74753499704394],\n",
       "    [-0.9899980491747852,\n",
       "     -0.09507733113510798,\n",
       "     0.10423129920683499,\n",
       "     31.78504165204731],\n",
       "    [0.011995263726907781,\n",
       "     0.6794029063150226,\n",
       "     0.7336673664126152,\n",
       "     -1.723902184914156],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 389},\n",
       "  {'file_path': './images/frame_0600.jpg',\n",
       "   'transform_matrix': [[-0.1265595276062247,\n",
       "     0.7288313137242085,\n",
       "     -0.6728949413594469,\n",
       "     -109.16146543010176],\n",
       "    [-0.991888719235307,\n",
       "     -0.08490604714666439,\n",
       "     0.09459245113470054,\n",
       "     30.45551228776179],\n",
       "    [0.011809090813079608,\n",
       "     0.6794084774956615,\n",
       "     0.733665227526285,\n",
       "     -1.732866909026055],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 390},\n",
       "  {'file_path': './images/frame_0601.jpg',\n",
       "   'transform_matrix': [[-0.11258432144761926,\n",
       "     0.7300387240787033,\n",
       "     -0.6740684178254593,\n",
       "     -109.53642883434455],\n",
       "    [-0.9935722006582116,\n",
       "     -0.07466028977039157,\n",
       "     0.08508891355869916,\n",
       "     29.152935935649396],\n",
       "    [0.011792058487717643,\n",
       "     0.6793153188887617,\n",
       "     0.7337517597114723,\n",
       "     -1.718593566118708],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 391},\n",
       "  {'file_path': './images/frame_0602.jpg',\n",
       "   'transform_matrix': [[-0.09849041358193573,\n",
       "     0.7309819926534986,\n",
       "     -0.6752517788564347,\n",
       "     -109.91107515172304],\n",
       "    [-0.9950689160112067,\n",
       "     -0.06434612276643556,\n",
       "     0.07548131472893607,\n",
       "     27.842315833277407],\n",
       "    [0.011725647988113416,\n",
       "     0.6793562415266728,\n",
       "     0.7337149352970891,\n",
       "     -1.7191378436478322],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 392},\n",
       "  {'file_path': './images/frame_0603.jpg',\n",
       "   'transform_matrix': [[-0.08439525610280194,\n",
       "     0.7316743921372966,\n",
       "     -0.6764096574102562,\n",
       "     -110.27736200950947],\n",
       "    [-0.9963616184394458,\n",
       "     -0.053877974681585436,\n",
       "     0.0660355142702673,\n",
       "     26.54506502281536],\n",
       "    [0.011872912366841938,\n",
       "     0.6795217051240733,\n",
       "     0.7335593269921672,\n",
       "     -1.752343781145673],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 393},\n",
       "  {'file_path': './images/frame_0604.jpg',\n",
       "   'transform_matrix': [[-0.07030888084062065,\n",
       "     0.7323946076992883,\n",
       "     -0.6772405775556757,\n",
       "     -110.58837550691779],\n",
       "    [-0.9974544389416444,\n",
       "     -0.04352749880194348,\n",
       "     0.05648007687367345,\n",
       "     25.228149584460873],\n",
       "    [0.01188711531653753,\n",
       "     0.6794876713090918,\n",
       "     0.7335906222331355,\n",
       "     -1.742823490824789],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 394},\n",
       "  {'file_path': './images/frame_0605.jpg',\n",
       "   'transform_matrix': [[-0.0563433637887584,\n",
       "     0.7328237891256394,\n",
       "     -0.6780816465946473,\n",
       "     -110.90442735432136],\n",
       "    [-0.9983416324712385,\n",
       "     -0.03332081007217378,\n",
       "     0.04694367359715978,\n",
       "     23.91142341126505],\n",
       "    [0.011807211001340757,\n",
       "     0.679602102489151,\n",
       "     0.733485904473082,\n",
       "     -1.7512714004434313],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 395},\n",
       "  {'file_path': './images/frame_0606.jpg',\n",
       "   'transform_matrix': [[-0.042418459428356474,\n",
       "     0.7331591814242993,\n",
       "     -0.6787328553952405,\n",
       "     -111.20130176949567],\n",
       "    [-0.9990323971198831,\n",
       "     -0.023226661761500556,\n",
       "     0.03734691002368176,\n",
       "     22.593442920099804],\n",
       "    [0.011616531523006757,\n",
       "     0.6796603099171442,\n",
       "     0.7334350136983553,\n",
       "     -1.7537188297675088],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 396},\n",
       "  {'file_path': './images/frame_0607.jpg',\n",
       "   'transform_matrix': [[-0.028449112358597022,\n",
       "     0.7333410285258022,\n",
       "     -0.6792654737926304,\n",
       "     -111.49321234946888],\n",
       "    [-0.9995285239534115,\n",
       "     -0.013018811606050775,\n",
       "     0.027807199569184475,\n",
       "     21.271488550628437],\n",
       "    [0.011548931098686911,\n",
       "     0.6797363065373843,\n",
       "     0.7333656494310277,\n",
       "     -1.7486510959914043],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 397},\n",
       "  {'file_path': './images/frame_0608.jpg',\n",
       "   'transform_matrix': [[-0.014595242016013412,\n",
       "     0.7333561346854928,\n",
       "     -0.6796879862331298,\n",
       "     -111.76915131690313],\n",
       "    [-0.9998266687493742,\n",
       "     -0.002845721703550118,\n",
       "     0.018399302310554644,\n",
       "     19.942888181219743],\n",
       "    [0.01155903836931232,\n",
       "     0.6798387173345891,\n",
       "     0.7332705551464872,\n",
       "     -1.7629463555550822],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 398},\n",
       "  {'file_path': './images/frame_0609.jpg',\n",
       "   'transform_matrix': [[-0.000872413423358296,\n",
       "     0.733285540802447,\n",
       "     -0.6799202560189552,\n",
       "     -112.00878344140777],\n",
       "    [-0.9999339787061633,\n",
       "     0.007150589459106814,\n",
       "     0.008994848483970218,\n",
       "     18.611074854207683],\n",
       "    [0.011457622950726519,\n",
       "     0.6798832140305056,\n",
       "     0.7332308900720623,\n",
       "     -1.768072154432127],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 399},\n",
       "  {'file_path': './images/frame_0610.jpg',\n",
       "   'transform_matrix': [[0.012960306381165184,\n",
       "     0.7329969218480796,\n",
       "     -0.6801084788618258,\n",
       "     -112.22565099255947],\n",
       "    [-0.9998516868151219,\n",
       "     0.017214953816470646,\n",
       "     -0.0004997379832519556,\n",
       "     17.272557937231085],\n",
       "    [0.011341729650342185,\n",
       "     0.6800140865646365,\n",
       "     0.7331113198158936,\n",
       "     -1.7929866153775356],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 400},\n",
       "  {'file_path': './images/frame_0611.jpg',\n",
       "   'transform_matrix': [[0.026568343433210212,\n",
       "     0.7325799073347279,\n",
       "     -0.6801623353999076,\n",
       "     -112.44568504331394],\n",
       "    [-0.999582622862647,\n",
       "     0.0271907713429744,\n",
       "     -0.009759202057822129,\n",
       "     15.972880298598612],\n",
       "    [0.01134474319878213,\n",
       "     0.6801377370233294,\n",
       "     0.7329965589813762,\n",
       "     -1.8074227201938926],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 401},\n",
       "  {'file_path': './images/frame_0612.jpg',\n",
       "   'transform_matrix': [[0.04022252845404551,\n",
       "     0.7320965857512713,\n",
       "     -0.6800123067534108,\n",
       "     -112.62564297281997],\n",
       "    [-0.9991274779548972,\n",
       "     0.03712731241104144,\n",
       "     -0.019127087300983024,\n",
       "     14.645479850278647],\n",
       "    [0.01124415404777066,\n",
       "     0.6801883208380342,\n",
       "     0.7329511697209341,\n",
       "     -1.7991424685039208],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 402},\n",
       "  {'file_path': './images/frame_0613.jpg',\n",
       "   'transform_matrix': [[0.05378482356714633,\n",
       "     0.7314346510364624,\n",
       "     -0.6797871313999843,\n",
       "     -112.7853351738907],\n",
       "    [-0.9984904674515842,\n",
       "     0.04698577236492683,\n",
       "     -0.02844509805903404,\n",
       "     13.332783366044145],\n",
       "    [0.011134593040058744,\n",
       "     0.6802908851795971,\n",
       "     0.7328576481004975,\n",
       "     -1.8028109039119207],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 403},\n",
       "  {'file_path': './images/frame_0614.jpg',\n",
       "   'transform_matrix': [[0.06734440038383972,\n",
       "     0.7306329005035868,\n",
       "     -0.6794411648102116,\n",
       "     -112.95822572109182],\n",
       "    [-0.9976693604204764,\n",
       "     0.05680783641094438,\n",
       "     -0.03779837298753895,\n",
       "     11.991360143972255],\n",
       "    [0.010980847651197992,\n",
       "     0.6804031411038777,\n",
       "     0.7327557482277692,\n",
       "     -1.7924087795025068],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 404},\n",
       "  {'file_path': './images/frame_0615.jpg',\n",
       "   'transform_matrix': [[0.08090963937036083,\n",
       "     0.7297353359370925,\n",
       "     -0.6789255995628217,\n",
       "     -113.0877609467371],\n",
       "    [-0.9966609997647448,\n",
       "     0.06673452118938701,\n",
       "     -0.04704630941490211,\n",
       "     10.672943643516488],\n",
       "    [0.010976420404558415,\n",
       "     0.6804651667546268,\n",
       "     0.7326982155217115,\n",
       "     -1.774048271838853],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 405},\n",
       "  {'file_path': './images/frame_0616.jpg',\n",
       "   'transform_matrix': [[0.09433990032984889,\n",
       "     0.7287179486878397,\n",
       "     -0.6782847001561669,\n",
       "     -113.21264054387984],\n",
       "    [-0.995479884370928,\n",
       "     0.07654116710160715,\n",
       "     -0.05622499045413532,\n",
       "     9.355599421543575],\n",
       "    [0.010944542868385806,\n",
       "     0.6805230348775204,\n",
       "     0.7326449453742865,\n",
       "     -1.7500182321326143],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 406},\n",
       "  {'file_path': './images/frame_0617.jpg',\n",
       "   'transform_matrix': [[0.10788908560013656,\n",
       "     0.7274446873937191,\n",
       "     -0.6776312950203972,\n",
       "     -113.30397776434681],\n",
       "    [-0.9941051873852396,\n",
       "     0.0862862219868326,\n",
       "     -0.06564727190825859,\n",
       "     8.002812172227635],\n",
       "    [0.010715485155801197,\n",
       "     0.6807194096526801,\n",
       "     0.73246587886398,\n",
       "     -1.77501557327232],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 407},\n",
       "  {'file_path': './images/frame_0618.jpg',\n",
       "   'transform_matrix': [[0.1213118292941866,\n",
       "     0.7261186804676849,\n",
       "     -0.6767829060704518,\n",
       "     -113.38979001315346],\n",
       "    [-0.9925583688726306,\n",
       "     0.09598460301604719,\n",
       "     -0.07493223848754682,\n",
       "     6.677079274960976],\n",
       "    [0.0105510404321517,\n",
       "     0.6808367042541991,\n",
       "     0.7323592408689054,\n",
       "     -1.7459521451499092],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 408},\n",
       "  {'file_path': './images/frame_0619.jpg',\n",
       "   'transform_matrix': [[0.13460588058683454,\n",
       "     0.724732926883507,\n",
       "     -0.6757539800861763,\n",
       "     -113.45094277910063],\n",
       "    [-0.9908427075417813,\n",
       "     0.10572667940169912,\n",
       "     -0.08397974859430377,\n",
       "     5.3724631346382905],\n",
       "    [0.010582335409302488,\n",
       "     0.6808700712717191,\n",
       "     0.7323277683003214,\n",
       "     -1.708644452249214],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 409},\n",
       "  {'file_path': './images/frame_0620.jpg',\n",
       "   'transform_matrix': [[0.1478283625496681,\n",
       "     0.7231193164145934,\n",
       "     -0.6747186298405988,\n",
       "     -113.51835836253463],\n",
       "    [-0.9889577311037718,\n",
       "     0.11529326269782708,\n",
       "     -0.09311320887269267,\n",
       "     4.048360440498576],\n",
       "    [0.010458552288139342,\n",
       "     0.6810329784999997,\n",
       "     0.7321780527163152,\n",
       "     -1.7057238990878496],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 410},\n",
       "  {'file_path': './images/frame_0621.jpg',\n",
       "   'transform_matrix': [[0.1610624490189998,\n",
       "     0.7214162867456225,\n",
       "     -0.6735112684537354,\n",
       "     -113.5426110227832],\n",
       "    [-0.9868901667015934,\n",
       "     0.12486559177604573,\n",
       "     -0.10225645631508656,\n",
       "     2.7226484159379147],\n",
       "    [0.010328910092715153,\n",
       "     0.6811513232818208,\n",
       "     0.7320697974972886,\n",
       "     -1.6987008838525672],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 411},\n",
       "  {'file_path': './images/frame_0622.jpg',\n",
       "   'transform_matrix': [[0.1739571448136416,\n",
       "     0.7196149487279204,\n",
       "     -0.6722300479267482,\n",
       "     -113.58618695683433],\n",
       "    [-0.9846982066335569,\n",
       "     0.1343290405067903,\n",
       "     -0.11101869540389032,\n",
       "     1.4370282160176673],\n",
       "    [0.010409304536922586,\n",
       "     0.6812562179120552,\n",
       "     0.7319710458311995,\n",
       "     -1.6927376423831666],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 412},\n",
       "  {'file_path': './images/frame_0623.jpg',\n",
       "   'transform_matrix': [[0.1869136399296091,\n",
       "     0.7178281236245483,\n",
       "     -0.6706609248658555,\n",
       "     -113.58458667534501],\n",
       "    [-0.9823236335730069,\n",
       "     0.14364391889943864,\n",
       "     -0.12002792794652607,\n",
       "     0.12035835048389684],\n",
       "    [0.010176941200056166,\n",
       "     0.6812409335153545,\n",
       "     0.7319885384150076,\n",
       "     -1.6621073476722967],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 413},\n",
       "  {'file_path': './images/frame_0624.jpg',\n",
       "   'transform_matrix': [[0.20013521963774822,\n",
       "     0.7158579263843806,\n",
       "     -0.6689494174399175,\n",
       "     -113.57012161291252],\n",
       "    [-0.9797165799109304,\n",
       "     0.1532334361932726,\n",
       "     -0.12913147207412984,\n",
       "     -1.2115910358539477],\n",
       "    [0.010065630043857325,\n",
       "     0.681224590913347,\n",
       "     0.7320052867478235,\n",
       "     -1.6347030159548386],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 414},\n",
       "  {'file_path': './images/frame_0625.jpg',\n",
       "   'transform_matrix': [[0.2129021262759959,\n",
       "     0.7138015498821304,\n",
       "     -0.6672031414891784,\n",
       "     -113.52689000647396],\n",
       "    [-0.977021704899858,\n",
       "     0.16256065466371244,\n",
       "     -0.13784999713413135,\n",
       "     -2.5004025839455206],\n",
       "    [0.010063437868576216,\n",
       "     0.6812205083092947,\n",
       "     0.7320091162527224,\n",
       "     -1.6004641975239933],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 415},\n",
       "  {'file_path': './images/frame_0626.jpg',\n",
       "   'transform_matrix': [[0.22554193818711038,\n",
       "     0.7115727544697614,\n",
       "     -0.6654284703971707,\n",
       "     -113.46637953672145],\n",
       "    [-0.9741815594929436,\n",
       "     0.1717755410237921,\n",
       "     -0.14650410454959928,\n",
       "     -3.789761880996671],\n",
       "    [0.010056006299624148,\n",
       "     0.6812909647150035,\n",
       "     0.7319436440976872,\n",
       "     -1.5749069273512377],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 416},\n",
       "  {'file_path': './images/frame_0627.jpg',\n",
       "   'transform_matrix': [[0.23809665730110915,\n",
       "     0.7092927472207723,\n",
       "     -0.6634860816340066,\n",
       "     -113.39683785780532],\n",
       "    [-0.9711902071974363,\n",
       "     0.18088983074564857,\n",
       "     -0.15514009983434712,\n",
       "     -5.079394203596711],\n",
       "    [0.009978137393260058,\n",
       "     0.6813095242786644,\n",
       "     0.7319274341772831,\n",
       "     -1.5415474568371168],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 417},\n",
       "  {'file_path': './images/frame_0628.jpg',\n",
       "   'transform_matrix': [[0.25072617937491853,\n",
       "     0.7069177595532248,\n",
       "     -0.6613650007403669,\n",
       "     -113.30863880910485],\n",
       "    [-0.9680091212270496,\n",
       "     0.1899504322391815,\n",
       "     -0.1639425951770415,\n",
       "     -6.3981080881286445],\n",
       "    [0.009732635680603818,\n",
       "     0.6813120537025581,\n",
       "     0.7319283853508561,\n",
       "     -1.504671305267012],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 418},\n",
       "  {'file_path': './images/frame_0629.jpg',\n",
       "   'transform_matrix': [[0.26326530791363195,\n",
       "     0.70427452722004,\n",
       "     -0.6593093112933639,\n",
       "     -113.24570408914671],\n",
       "    [-0.9646743972853395,\n",
       "     0.1990743470821551,\n",
       "     -0.17254770805774364,\n",
       "     -7.673655437976949],\n",
       "    [0.00973061515564287,\n",
       "     0.6814446379881515,\n",
       "     0.7318049743516983,\n",
       "     -1.4676541866655004],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 419},\n",
       "  {'file_path': './images/frame_0630.jpg',\n",
       "   'transform_matrix': [[0.27565048152596516,\n",
       "     0.7015008207073066,\n",
       "     -0.657201194902656,\n",
       "     -113.15852785636278],\n",
       "    [-0.9612082971058513,\n",
       "     0.20809981525699953,\n",
       "     -0.18103335732641104,\n",
       "     -8.928948131363793],\n",
       "    [0.00976839850604564,\n",
       "     0.6816091735276001,\n",
       "     0.7316512235714836,\n",
       "     -1.470908130999764],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 420},\n",
       "  {'file_path': './images/frame_0631.jpg',\n",
       "   'transform_matrix': [[0.28803426625107775,\n",
       "     0.69867791840293,\n",
       "     -0.6548934476701931,\n",
       "     -113.02344621131353],\n",
       "    [-0.9575719912735856,\n",
       "     0.21699385233494908,\n",
       "     -0.18965639872458406,\n",
       "     -10.221550888047808],\n",
       "    [0.009599114206183073,\n",
       "     0.6817351644040279,\n",
       "     0.7315360706222692,\n",
       "     -1.4652986197476556],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 421},\n",
       "  {'file_path': './images/frame_0632.jpg',\n",
       "   'transform_matrix': [[0.30029044431795027,\n",
       "     0.6957211103567882,\n",
       "     -0.6525318273120828,\n",
       "     -112.88206631383004],\n",
       "    [-0.9537999875428913,\n",
       "     0.22586644303611728,\n",
       "     -0.19811596016826305,\n",
       "     -11.494957170503717],\n",
       "    [0.009551587015172886,\n",
       "     0.6818771784670097,\n",
       "     0.7314043209274617,\n",
       "     -1.4364044148573836],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 422},\n",
       "  {'file_path': './images/frame_0633.jpg',\n",
       "   'transform_matrix': [[0.3123796275491821,\n",
       "     0.6926714428091736,\n",
       "     -0.6500963317915985,\n",
       "     -112.73897911862566],\n",
       "    [-0.9499110407594475,\n",
       "     0.23452103351986361,\n",
       "     -0.2065645165077443,\n",
       "     -12.759580347500048],\n",
       "    [0.00937992193663925,\n",
       "     0.6820602298576225,\n",
       "     0.7312358442465944,\n",
       "     -1.4344062671563682],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 423},\n",
       "  {'file_path': './images/frame_0634.jpg',\n",
       "   'transform_matrix': [[0.3243086772904479,\n",
       "     0.6896070721296539,\n",
       "     -0.647507504128629,\n",
       "     -112.58010464802557],\n",
       "    [-0.9459057195529148,\n",
       "     0.24313289961330123,\n",
       "     -0.2148226311232386,\n",
       "     -14.011256889653346],\n",
       "    [0.00928717132407994,\n",
       "     0.682149894960334,\n",
       "     0.73115338285096,\n",
       "     -1.3904408558409094],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 424},\n",
       "  {'file_path': './images/frame_0635.jpg',\n",
       "   'transform_matrix': [[0.3362050948135031,\n",
       "     0.6864816341391372,\n",
       "     -0.6447550699382699,\n",
       "     -112.38663191937985],\n",
       "    [-0.9417431983909592,\n",
       "     0.25178882417545434,\n",
       "     -0.2229846100176167,\n",
       "     -15.258286980009801],\n",
       "    [0.009267281468148028,\n",
       "     0.6821622636953776,\n",
       "     0.7311420952757324,\n",
       "     -1.3576003696852523],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 425},\n",
       "  {'file_path': './images/frame_0636.jpg',\n",
       "   'transform_matrix': [[0.347975142170904,\n",
       "     0.6831481196841428,\n",
       "     -0.6420451284786445,\n",
       "     -112.21252723812825],\n",
       "    [-0.9374588554428048,\n",
       "     0.26025619624173246,\n",
       "     -0.23116575583258675,\n",
       "     -16.498322449235143],\n",
       "    [0.009175771520991133,\n",
       "     0.6823308280371075,\n",
       "     0.7309859412650763,\n",
       "     -1.344667098292799],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 426},\n",
       "  {'file_path': './images/frame_0637.jpg',\n",
       "   'transform_matrix': [[0.35961950053760794,\n",
       "     0.679832775285443,\n",
       "     -0.639140995775403,\n",
       "     -111.99960655653416],\n",
       "    [-0.9330543951367171,\n",
       "     0.26869755025335346,\n",
       "     -0.23918846586719347,\n",
       "     -17.714299472766488],\n",
       "    [0.009127461264578108,\n",
       "     0.6823701518498145,\n",
       "     0.7309498377558645,\n",
       "     -1.3109738082387508],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 427},\n",
       "  {'file_path': './images/frame_0638.jpg',\n",
       "   'transform_matrix': [[0.371202035981713,\n",
       "     0.6762564563131235,\n",
       "     -0.6363067293199465,\n",
       "     -111.78881745430948],\n",
       "    [-0.9285070964208041,\n",
       "     0.2770786552417276,\n",
       "     -0.24718816861986664,\n",
       "     -18.92274869134089],\n",
       "    [0.009144417927830837,\n",
       "     0.6825720651361674,\n",
       "     0.730761079639925,\n",
       "     -1.309215215262784],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 428},\n",
       "  {'file_path': './images/frame_0639.jpg',\n",
       "   'transform_matrix': [[0.3827757721565236,\n",
       "     0.6726245004855268,\n",
       "     -0.6332921834323971,\n",
       "     -111.55220322113232],\n",
       "    [-0.9237963338045728,\n",
       "     0.28543713224128314,\n",
       "     -0.25519791767783406,\n",
       "     -20.143642761622445],\n",
       "    [0.009112732806764341,\n",
       "     0.6827165772738112,\n",
       "     0.7306264662714625,\n",
       "     -1.2929734150328622],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 429},\n",
       "  {'file_path': './images/frame_0640.jpg',\n",
       "   'transform_matrix': [[0.3941552784515803,\n",
       "     0.6690440746093492,\n",
       "     -0.6300965344285563,\n",
       "     -111.30807053461814],\n",
       "    [-0.9190000840967446,\n",
       "     0.29361445650881807,\n",
       "     -0.26311479692181483,\n",
       "     -21.359260765491463],\n",
       "    [0.008970055681747809,\n",
       "     0.6827668541743594,\n",
       "     0.7305812486930632,\n",
       "     -1.2472003339044633],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 430},\n",
       "  {'file_path': './images/frame_0641.jpg',\n",
       "   'transform_matrix': [[0.4054012534511052,\n",
       "     0.6653091629993965,\n",
       "     -0.6269079209336211,\n",
       "     -111.06402098343119],\n",
       "    [-0.9140949890676372,\n",
       "     0.30175374633038177,\n",
       "     -0.2708782522407729,\n",
       "     -22.546932537653827],\n",
       "    [0.00895403047286298,\n",
       "     0.6828677721232876,\n",
       "     0.7304871190744358,\n",
       "     -1.2255045136103555],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 431},\n",
       "  {'file_path': './images/frame_0642.jpg',\n",
       "   'transform_matrix': [[0.41655307934110813,\n",
       "     0.6614167986317444,\n",
       "     -0.6237077445239676,\n",
       "     -110.78740001776549],\n",
       "    [-0.9090673979433955,\n",
       "     0.3097949624187322,\n",
       "     -0.2786100272000278,\n",
       "     -23.71755637920732],\n",
       "    [0.008944165017729155,\n",
       "     0.6830482411570289,\n",
       "     0.7303184936480965,\n",
       "     -1.2377321132320087],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 432},\n",
       "  {'file_path': './images/frame_0643.jpg',\n",
       "   'transform_matrix': [[0.42764731560577374,\n",
       "     0.6576225972463703,\n",
       "     -0.6202018163840815,\n",
       "     -110.48010573201739],\n",
       "    [-0.9039034453641152,\n",
       "     0.31773136658053375,\n",
       "     -0.28636574541964427,\n",
       "     -24.904775146022015],\n",
       "    [0.008736985410184105,\n",
       "     0.6830661009608109,\n",
       "     0.7303042974022113,\n",
       "     -1.2035226715296192],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 433},\n",
       "  {'file_path': './images/frame_0644.jpg',\n",
       "   'transform_matrix': [[0.43855092048559774,\n",
       "     0.6535859641332668,\n",
       "     -0.6168455865362281,\n",
       "     -110.18617925856853],\n",
       "    [-0.8986640456108551,\n",
       "     0.32558109148557896,\n",
       "     -0.29393857520473554,\n",
       "     -26.069715295499293],\n",
       "    [0.008719132271381448,\n",
       "     0.6832439830361093,\n",
       "     0.7301380940461789,\n",
       "     -1.1972661187697415],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 434},\n",
       "  {'file_path': './images/frame_0645.jpg',\n",
       "   'transform_matrix': [[0.44920786153814407,\n",
       "     0.6496343762429462,\n",
       "     -0.6133412380851021,\n",
       "     -109.86279035426179],\n",
       "    [-0.8933861734395212,\n",
       "     0.3332007907980619,\n",
       "     -0.301394057868824,\n",
       "     -27.229320708117676],\n",
       "    [0.00856984477207448,\n",
       "     0.6833391619210658,\n",
       "     0.7300507842236718,\n",
       "     -1.1866938501460655],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 435},\n",
       "  {'file_path': './images/frame_0646.jpg',\n",
       "   'transform_matrix': [[0.4597860202449912,\n",
       "     0.6455047996159528,\n",
       "     -0.6098527439144972,\n",
       "     -109.5461640482107],\n",
       "    [-0.8879877751394021,\n",
       "     0.34087673659835455,\n",
       "     -0.30867581967013624,\n",
       "     -28.369985469517705],\n",
       "    [0.008632890028664552,\n",
       "     0.6834666079032864,\n",
       "     0.729930728967433,\n",
       "     -1.1640137073769048],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 436},\n",
       "  {'file_path': './images/frame_0647.jpg',\n",
       "   'transform_matrix': [[0.4701542598795843,\n",
       "     0.6413815330812306,\n",
       "     -0.6062876387816681,\n",
       "     -109.21933370001095],\n",
       "    [-0.8825417633328726,\n",
       "     0.34838960407452657,\n",
       "     -0.3158238745663452,\n",
       "     -29.490544633560955],\n",
       "    [0.008660709577408169,\n",
       "     0.6835601018163399,\n",
       "     0.729842845628051,\n",
       "     -1.1443200972237988],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 437},\n",
       "  {'file_path': './images/frame_0648.jpg',\n",
       "   'transform_matrix': [[0.48042581395284084,\n",
       "     0.6371397613339685,\n",
       "     -0.6026972389309941,\n",
       "     -108.88662770095553],\n",
       "    [-0.8769934737094238,\n",
       "     0.3557150023356224,\n",
       "     -0.3230313981402523,\n",
       "     -30.598424090960155],\n",
       "    [0.00857230183955326,\n",
       "     0.6837541675490261,\n",
       "     0.7296620820629985,\n",
       "     -1.1466673089481287],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 438},\n",
       "  {'file_path': './images/frame_0649.jpg',\n",
       "   'transform_matrix': [[0.4906766608571861,\n",
       "     0.6328847030122822,\n",
       "     -0.5989101495075012,\n",
       "     -108.50873004015209],\n",
       "    [-0.8713021499248169,\n",
       "     0.36293020290823425,\n",
       "     -0.33032443347923857,\n",
       "     -31.745702086948512],\n",
       "    [0.008305301104350076,\n",
       "     0.6839141908968138,\n",
       "     0.729515182476364,\n",
       "     -1.14726205258442],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 439},\n",
       "  {'file_path': './images/frame_0650.jpg',\n",
       "   'transform_matrix': [[0.500658830883,\n",
       "     0.6285629437360539,\n",
       "     -0.5951885086430466,\n",
       "     -108.15992314804159],\n",
       "    [-0.8656045479143496,\n",
       "     0.3701438714980097,\n",
       "     -0.33722734323073417,\n",
       "     -32.84426132434166],\n",
       "    [0.008336767290864943,\n",
       "     0.6840337273514597,\n",
       "     0.7294027407110607,\n",
       "     -1.1107544137933556],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 440},\n",
       "  {'file_path': './images/frame_0651.jpg',\n",
       "   'transform_matrix': [[0.5105777440610406,\n",
       "     0.6242519365945205,\n",
       "     -0.5912866368585792,\n",
       "     -107.74991309173389],\n",
       "    [-0.8597943157216882,\n",
       "     0.3770751474375696,\n",
       "     -0.344337142692462,\n",
       "     -33.9742352377704],\n",
       "    [0.008006367604120284,\n",
       "     0.6841957708455424,\n",
       "     0.729254444782383,\n",
       "     -1.12881283701563],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 441},\n",
       "  {'file_path': './images/frame_0652.jpg',\n",
       "   'transform_matrix': [[0.5204502242219108,\n",
       "     0.6196527294343401,\n",
       "     -0.5875049438191439,\n",
       "     -107.35551923179192],\n",
       "    [-0.8538553084604393,\n",
       "     0.3840433848246528,\n",
       "     -0.35134283938391536,\n",
       "     -35.07915876326587],\n",
       "    [0.00791683783406732,\n",
       "     0.6845006745628497,\n",
       "     0.7289692381724437,\n",
       "     -1.157882245196562],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 442},\n",
       "  {'file_path': './images/frame_0653.jpg',\n",
       "   'transform_matrix': [[0.5301028008266422,\n",
       "     0.6152795291340998,\n",
       "     -0.5834570434781552,\n",
       "     -106.92724617969435],\n",
       "    [-0.8478973147433665,\n",
       "     0.39098464812378086,\n",
       "     -0.35805187973604014,\n",
       "     -36.16903090290722],\n",
       "    [0.007820754870077986,\n",
       "     0.6845159647225504,\n",
       "     0.7289559176200014,\n",
       "     -1.119928764279284],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 443},\n",
       "  {'file_path': './images/frame_0654.jpg',\n",
       "   'transform_matrix': [[0.5395872750541021,\n",
       "     0.6107389557165593,\n",
       "     -0.5795200605414236,\n",
       "     -106.5282026622723],\n",
       "    [-0.8418933419031583,\n",
       "     0.39779613072536063,\n",
       "     -0.36465578185333025,\n",
       "     -37.2154264511142],\n",
       "    [0.007821346355996649,\n",
       "     0.6846577001321014,\n",
       "     0.7288227906638219,\n",
       "     -1.1051205829652258],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 444},\n",
       "  {'file_path': './images/frame_0655.jpg',\n",
       "   'transform_matrix': [[0.5490540996797307,\n",
       "     0.606078516985721,\n",
       "     -0.5755071041032155,\n",
       "     -106.09266031764587],\n",
       "    [-0.8357510592787654,\n",
       "     0.4045036563498038,\n",
       "     -0.37134479788205105,\n",
       "     -38.28999398043018],\n",
       "    [0.0077306234743219964,\n",
       "     0.6848690555485981,\n",
       "     0.7286251534312203,\n",
       "     -1.0945820037348026],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 445},\n",
       "  {'file_path': './images/frame_0656.jpg',\n",
       "   'transform_matrix': [[0.5584699086740851,\n",
       "     0.6013207634360759,\n",
       "     -0.5714233986863104,\n",
       "     -105.64586142207354],\n",
       "    [-0.82948960704776,\n",
       "     0.4111600163572637,\n",
       "     -0.3780137996804449,\n",
       "     -39.36339083500839],\n",
       "    [0.007638907337569618,\n",
       "     0.685099102619285,\n",
       "     0.728409820557726,\n",
       "     -1.0992601516723548],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 446},\n",
       "  {'file_path': './images/frame_0657.jpg',\n",
       "   'transform_matrix': [[0.5676370326727888,\n",
       "     0.5965707477597914,\n",
       "     -0.5673548643095913,\n",
       "     -105.19878781506824],\n",
       "    [-0.8232424222328248,\n",
       "     0.4177973212356774,\n",
       "     -0.38434010017759457,\n",
       "     -40.408205905938715],\n",
       "    [0.007753281541557745,\n",
       "     0.6852362667617757,\n",
       "     0.7282795791038782,\n",
       "     -1.0721960236915586],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 447},\n",
       "  {'file_path': './images/frame_0658.jpg',\n",
       "   'transform_matrix': [[0.5767441718503273,\n",
       "     0.5917685870180495,\n",
       "     -0.5631838950603448,\n",
       "     -104.75488755298873],\n",
       "    [-0.8168880175653354,\n",
       "     0.4243100214722169,\n",
       "     -0.3907108552835758,\n",
       "     -41.42696908894665],\n",
       "    [0.007754159842086403,\n",
       "     0.6853983842240279,\n",
       "     0.7281269998484025,\n",
       "     -1.0749202767453225],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 448},\n",
       "  {'file_path': './images/frame_0659.jpg',\n",
       "   'transform_matrix': [[0.5858473428416657,\n",
       "     0.5867535268134659,\n",
       "     -0.5590198472839036,\n",
       "     -104.29204733317833],\n",
       "    [-0.8103838474627117,\n",
       "     0.4307827021274627,\n",
       "     -0.3971199860486675,\n",
       "     -42.462404999330246],\n",
       "    [0.0078045279736715135,\n",
       "     0.6856723432658787,\n",
       "     0.7278684819549388,\n",
       "     -1.10040763893053],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 449},\n",
       "  {'file_path': './images/frame_0660.jpg',\n",
       "   'transform_matrix': [[0.5949662125362339,\n",
       "     0.5818318201004627,\n",
       "     -0.5545150485414004,\n",
       "     -103.78314241413926],\n",
       "    [-0.8037140916708602,\n",
       "     0.437259607192007,\n",
       "     -0.40354391925535915,\n",
       "     -43.50674891079785],\n",
       "    [0.007672339276449642,\n",
       "     0.6857665557876634,\n",
       "     0.7277811251833566,\n",
       "     -1.0964588311700527],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 450},\n",
       "  {'file_path': './images/frame_0661.jpg',\n",
       "   'transform_matrix': [[0.6038837772876225,\n",
       "     0.5770021156757065,\n",
       "     -0.5499026659642519,\n",
       "     -103.26418326948858],\n",
       "    [-0.7970370669068585,\n",
       "     0.44362750935781486,\n",
       "     -0.40978841725638576,\n",
       "     -44.50051483344108],\n",
       "    [0.007503166354609771,\n",
       "     0.685757385265912,\n",
       "     0.7277915299369144,\n",
       "     -1.0736982088180873],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 451},\n",
       "  {'file_path': './images/frame_0662.jpg',\n",
       "   'transform_matrix': [[0.6127259515316595,\n",
       "     0.5719616155390919,\n",
       "     -0.5453685163900961,\n",
       "     -102.75976320487071],\n",
       "    [-0.7902592297667647,\n",
       "     0.450036050159268,\n",
       "     -0.41588207862984994,\n",
       "     -45.468821908909014],\n",
       "    [0.007566907430534235,\n",
       "     0.6858042460549197,\n",
       "     0.7277467128094642,\n",
       "     -1.0624687773565529],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 452},\n",
       "  {'file_path': './images/frame_0663.jpg',\n",
       "   'transform_matrix': [[0.621409746069429,\n",
       "     0.5668137857158391,\n",
       "     -0.5408993065371842,\n",
       "     -102.24425389443103],\n",
       "    [-0.783448722277535,\n",
       "     0.45625070902310305,\n",
       "     -0.4219518812348319,\n",
       "     -46.44126406474209],\n",
       "    [0.007617548925059919,\n",
       "     0.6859718819590164,\n",
       "     0.72758817342641,\n",
       "     -1.0863099278289992],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 453},\n",
       "  {'file_path': './images/frame_0664.jpg',\n",
       "   'transform_matrix': [[0.6301703372771694,\n",
       "     0.5615657658436398,\n",
       "     -0.5362175273603287,\n",
       "     -101.68941775261756],\n",
       "    [-0.7764194368868126,\n",
       "     0.4625287730392824,\n",
       "     -0.4280654063751717,\n",
       "     -47.42411586412362],\n",
       "    [0.007629157249888431,\n",
       "     0.6860838321540759,\n",
       "     0.7274824885977904,\n",
       "     -1.1003873838767217],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 454},\n",
       "  {'file_path': './images/frame_0665.jpg',\n",
       "   'transform_matrix': [[0.638747927987958,\n",
       "     0.5563651455831932,\n",
       "     -0.5314686343250019,\n",
       "     -101.13158953021515],\n",
       "    [-0.7693792182356645,\n",
       "     0.4686170085914695,\n",
       "     -0.4341125635199476,\n",
       "     -48.38919916836333],\n",
       "    [0.007530141975307118,\n",
       "     0.6861894228556535,\n",
       "     0.7273839240200851,\n",
       "     -1.1175126429291946],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 455},\n",
       "  {'file_path': './images/frame_0666.jpg',\n",
       "   'transform_matrix': [[0.64698188166143,\n",
       "     0.5514434355298287,\n",
       "     -0.5266161621265484,\n",
       "     -100.54241482615403],\n",
       "    [-0.762470286593973,\n",
       "     0.4745007993228753,\n",
       "     -0.4398727696769342,\n",
       "     -49.330874759937394],\n",
       "    [0.0073148385587225116,\n",
       "     0.6861188882788553,\n",
       "     0.72745265432456,\n",
       "     -1.08060644639491],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 456},\n",
       "  {'file_path': './images/frame_0667.jpg',\n",
       "   'transform_matrix': [[0.655196616646138,\n",
       "     0.5461946914655891,\n",
       "     -0.5219087588365073,\n",
       "     -99.99347384462472],\n",
       "    [-0.7554231391744474,\n",
       "     0.4803582537984998,\n",
       "     -0.4456364311941738,\n",
       "     -50.26336680751537],\n",
       "    [0.007298926994919022,\n",
       "     0.6862414349355961,\n",
       "     0.727337211094178,\n",
       "     -1.0868595241754846],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 457},\n",
       "  {'file_path': './images/frame_0668.jpg',\n",
       "   'transform_matrix': [[0.6634004801531416,\n",
       "     0.5408203780768244,\n",
       "     -0.5171200262892764,\n",
       "     -99.41333543666087],\n",
       "    [-0.7482283361924736,\n",
       "     0.4862573534030221,\n",
       "     -0.4513403850533774,\n",
       "     -51.19972151631751],\n",
       "    [0.007359337689217735,\n",
       "     0.686343285039148,\n",
       "     0.7272404933929676,\n",
       "     -1.085630188306619],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 458},\n",
       "  {'file_path': './images/frame_0669.jpg',\n",
       "   'transform_matrix': [[0.6713270483590548,\n",
       "     0.5357511092340629,\n",
       "     -0.5121432837556212,\n",
       "     -98.78605399863052],\n",
       "    [-0.7411259750619135,\n",
       "     0.49198946627005063,\n",
       "     -0.4568135879851198,\n",
       "     -52.09573753566809],\n",
       "    [0.0072307143524990795,\n",
       "     0.6862340082171547,\n",
       "     0.7273448994364163,\n",
       "     -1.0663061265131752],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 459},\n",
       "  {'file_path': './images/frame_0670.jpg',\n",
       "   'transform_matrix': [[0.679171280337039,\n",
       "     0.5304830855859819,\n",
       "     -0.5072613408022761,\n",
       "     -98.18340895284521],\n",
       "    [-0.7339447247425637,\n",
       "     0.49760486610081356,\n",
       "     -0.46229269760115604,\n",
       "     -52.99811623245231],\n",
       "    [0.007177254900707296,\n",
       "     0.6862777084679111,\n",
       "     0.7273041962426198,\n",
       "     -1.0617228095346034],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 460},\n",
       "  {'file_path': './images/frame_0671.jpg',\n",
       "   'transform_matrix': [[0.6869035739478373,\n",
       "     0.5251155051619995,\n",
       "     -0.5024113716230416,\n",
       "     -97.56169270261024],\n",
       "    [-0.7267143327218654,\n",
       "     0.5030119912142011,\n",
       "     -0.46783032748138326,\n",
       "     -53.907039106156546],\n",
       "    [0.007053985703273925,\n",
       "     0.6864638686290652,\n",
       "     0.7271296984393607,\n",
       "     -1.10050107693557],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 461},\n",
       "  {'file_path': './images/frame_0672.jpg',\n",
       "   'transform_matrix': [[0.6945734225510738,\n",
       "     0.5197377929225551,\n",
       "     -0.4974338019210987,\n",
       "     -96.94555216245394],\n",
       "    [-0.7193875648411219,\n",
       "     0.5085101884194818,\n",
       "     -0.47317958517411096,\n",
       "     -54.774580421677534],\n",
       "    [0.0070208430867146066,\n",
       "     0.6865056553893597,\n",
       "     0.7270905671790671,\n",
       "     -1.1045479786133143],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 462},\n",
       "  {'file_path': './images/frame_0673.jpg',\n",
       "   'transform_matrix': [[0.7021730487859671,\n",
       "     0.5143908456590086,\n",
       "     -0.4922957113979665,\n",
       "     -96.28774146945426],\n",
       "    [-0.7119719288444358,\n",
       "     0.5140586304718402,\n",
       "     -0.47837192327199735,\n",
       "     -55.63632331463105],\n",
       "    [0.006998721036989905,\n",
       "     0.6864005990233589,\n",
       "     0.7271899583769157,\n",
       "     -1.0838885855220846],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 463},\n",
       "  {'file_path': './images/frame_0674.jpg',\n",
       "   'transform_matrix': [[0.7096346977676475,\n",
       "     0.5088828838813909,\n",
       "     -0.48729539933881816,\n",
       "     -95.644927348429],\n",
       "    [-0.7045342757663619,\n",
       "     0.5194598093171067,\n",
       "     -0.4835214170795365,\n",
       "     -56.47061093443323],\n",
       "    [0.007074602079794505,\n",
       "     0.6864398859308759,\n",
       "     0.7271521388324582,\n",
       "     -1.1128225767295479],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 464},\n",
       "  {'file_path': './images/frame_0675.jpg',\n",
       "   'transform_matrix': [[0.7169802779892088,\n",
       "     0.5035344584010689,\n",
       "     -0.4820708767155084,\n",
       "     -94.97104909262397],\n",
       "    [-0.6970582446047178,\n",
       "     0.5248235039221586,\n",
       "     -0.48853873271160125,\n",
       "     -57.3048646477472],\n",
       "    [0.007006040472779295,\n",
       "     0.6863041154864293,\n",
       "     0.7272809474084164,\n",
       "     -1.0865959476157907],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 465},\n",
       "  {'file_path': './images/frame_0676.jpg',\n",
       "   'transform_matrix': [[0.7242644724116433,\n",
       "     0.4980342091622164,\n",
       "     -0.47686780191836153,\n",
       "     -94.29587685396983],\n",
       "    [-0.6894878167625816,\n",
       "     0.5300164521858574,\n",
       "     -0.4936487728621286,\n",
       "     -58.139274872115884],\n",
       "    [0.006893804338149366,\n",
       "     0.686326807662707,\n",
       "     0.7272606056602166,\n",
       "     -1.092848965233854],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 466},\n",
       "  {'file_path': './images/frame_0677.jpg',\n",
       "   'transform_matrix': [[0.7313221355232856,\n",
       "     0.492547019240151,\n",
       "     -0.4717683413830388,\n",
       "     -93.63050023852853],\n",
       "    [-0.6819962623939222,\n",
       "     0.5352168211290774,\n",
       "     -0.4984215609915019,\n",
       "     -58.92489447486612],\n",
       "    [0.007002297792980007,\n",
       "     0.6862509659141671,\n",
       "     0.7273311347711516,\n",
       "     -1.0957355452742195],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 467},\n",
       "  {'file_path': './images/frame_0678.jpg',\n",
       "   'transform_matrix': [[0.7384913194324043,\n",
       "     0.4869905213430876,\n",
       "     -0.4663376493968446,\n",
       "     -92.92334096107379],\n",
       "    [-0.6742287352031074,\n",
       "     0.540323594430031,\n",
       "     -0.5034540951552877,\n",
       "     -59.747121299754134],\n",
       "    [0.006795862668168609,\n",
       "     0.6862147225353002,\n",
       "     0.7273672874321447,\n",
       "     -1.0949147242818533],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 468},\n",
       "  {'file_path': './images/frame_0679.jpg',\n",
       "   'transform_matrix': [[0.7455522794534334,\n",
       "     0.4813119461074214,\n",
       "     -0.4609670369300568,\n",
       "     -92.20021493163026],\n",
       "    [-0.6664119746540288,\n",
       "     0.5455197225381483,\n",
       "     -0.5082354890792455,\n",
       "     -60.526408979405105],\n",
       "    [0.0068467977557281415,\n",
       "     0.6861100807131378,\n",
       "     0.7274655170551411,\n",
       "     -1.0994043083042464],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 469},\n",
       "  {'file_path': './images/frame_0680.jpg',\n",
       "   'transform_matrix': [[0.7524358832089001,\n",
       "     0.475662511633154,\n",
       "     -0.4556154263043364,\n",
       "     -91.4822726816445],\n",
       "    [-0.658629804300553,\n",
       "     0.5505518513336795,\n",
       "     -0.5129321981315595,\n",
       "     -61.293907389695434],\n",
       "    [0.006857298787263708,\n",
       "     0.6860304905905407,\n",
       "     0.7275404754606059,\n",
       "     -1.1087149383514063],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 470},\n",
       "  {'file_path': './images/frame_0681.jpg',\n",
       "   'transform_matrix': [[0.7592010936996795,\n",
       "     0.4700791994681455,\n",
       "     -0.45015469069265296,\n",
       "     -90.76399151678375],\n",
       "    [-0.6508206653489051,\n",
       "     0.5555210624786446,\n",
       "     -0.5175217973162158,\n",
       "     -62.04450647431543],\n",
       "    [0.006794179863605623,\n",
       "     0.6858730898424178,\n",
       "     0.7276894555715341,\n",
       "     -1.0897756781624774],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 471},\n",
       "  {'file_path': './images/frame_0682.jpg',\n",
       "   'transform_matrix': [[0.765831019331494,\n",
       "     0.46457050701233926,\n",
       "     -0.44460892236209437,\n",
       "     -90.00031969046157],\n",
       "    [-0.6430078081232165,\n",
       "     0.5603678586373455,\n",
       "     -0.5220429308962748,\n",
       "     -62.790984126038246],\n",
       "    [0.00661880066641462,\n",
       "     0.6856836785431705,\n",
       "     0.7278695518135405,\n",
       "     -1.0775624059551956],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 472},\n",
       "  {'file_path': './images/frame_0683.jpg',\n",
       "   'transform_matrix': [[0.7725166020302352,\n",
       "     0.45883677679806223,\n",
       "     -0.43896117350538477,\n",
       "     -89.24072093891137],\n",
       "    [-0.634960912481177,\n",
       "     0.5652954238030481,\n",
       "     -0.5265602752282053,\n",
       "     -63.53760621928298],\n",
       "    [0.006537523134199589,\n",
       "     0.685499741856186,\n",
       "     0.7280435184151922,\n",
       "     -1.0551948228684782],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 473},\n",
       "  {'file_path': './images/frame_0684.jpg',\n",
       "   'transform_matrix': [[0.7789533340644257,\n",
       "     0.4531093755408899,\n",
       "     -0.433501553799822,\n",
       "     -88.52363926623848],\n",
       "    [-0.6270476869235487,\n",
       "     0.570036827973156,\n",
       "     -0.5309135646017435,\n",
       "     -64.25990778585077],\n",
       "    [0.006549936926601086,\n",
       "     0.6853830378344996,\n",
       "     0.728153273545488,\n",
       "     -1.0556834176736054],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 474},\n",
       "  {'file_path': './images/frame_0685.jpg',\n",
       "   'transform_matrix': [[0.7853768273673761,\n",
       "     0.44747381121125285,\n",
       "     -0.4277270476769393,\n",
       "     -87.7320711540452],\n",
       "    [-0.618984953414691,\n",
       "     0.5748363417364345,\n",
       "     -0.5351829665313407,\n",
       "     -64.98070938050374],\n",
       "    [0.00639268961921394,\n",
       "     0.6850769069959585,\n",
       "     0.7284426985153213,\n",
       "     -1.0292507739098404],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 475},\n",
       "  {'file_path': './images/frame_0686.jpg',\n",
       "   'transform_matrix': [[0.791727945039795,\n",
       "     0.4417133570741774,\n",
       "     -0.42196702622992194,\n",
       "     -86.9471340020617],\n",
       "    [-0.610842595021508,\n",
       "     0.5794443561545081,\n",
       "     -0.5395512600560559,\n",
       "     -65.70701795721688],\n",
       "    [0.006179413439266579,\n",
       "     0.6849332436836074,\n",
       "     0.7285796226539683,\n",
       "     -1.0317696491385815],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 476},\n",
       "  {'file_path': './images/frame_0687.jpg',\n",
       "   'transform_matrix': [[0.7979304986818408,\n",
       "     0.43593815853697904,\n",
       "     -0.41625093538001373,\n",
       "     -86.16075507976295],\n",
       "    [-0.6027191913096186,\n",
       "     0.5839952606893796,\n",
       "     -0.5437638383705033,\n",
       "     -66.42543089369275],\n",
       "    [0.006041167141212519,\n",
       "     0.6847681778702418,\n",
       "     0.7287359239641207,\n",
       "     -1.0214952866115368],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 477},\n",
       "  {'file_path': './images/frame_0688.jpg',\n",
       "   'transform_matrix': [[0.8039424813342563,\n",
       "     0.43015964662443507,\n",
       "     -0.41065699205305173,\n",
       "     -85.37805887482442],\n",
       "    [-0.5946761062916917,\n",
       "     0.5885172883661586,\n",
       "     -0.5477296138606134,\n",
       "     -67.08073202379464],\n",
       "    [0.006067562267645443,\n",
       "     0.6845510059229224,\n",
       "     0.7289397128556265,\n",
       "     -1.031563211297687],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 478},\n",
       "  {'file_path': './images/frame_0689.jpg',\n",
       "   'transform_matrix': [[0.8100504836647087,\n",
       "     0.4242831741723424,\n",
       "     -0.4047246002268868,\n",
       "     -84.5659152084692],\n",
       "    [-0.5863308695233802,\n",
       "     0.5930102189701841,\n",
       "     -0.5518650121550479,\n",
       "     -67.76772155019106],\n",
       "    [0.005858784731364317,\n",
       "     0.6843410467823599,\n",
       "     0.7291385371315218,\n",
       "     -1.034298855901234],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 479},\n",
       "  {'file_path': './images/frame_0690.jpg',\n",
       "   'transform_matrix': [[0.8159282243206857,\n",
       "     0.4183254501639054,\n",
       "     -0.3990801304275352,\n",
       "     -83.76518709433545],\n",
       "    [-0.578122958926608,\n",
       "     0.597398783026066,\n",
       "     -0.5557774180379397,\n",
       "     -68.4396403200162],\n",
       "    [0.005914145655639082,\n",
       "     0.6841918676688149,\n",
       "     0.7292780752888589,\n",
       "     -1.0281364400130169],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 480},\n",
       "  {'file_path': './images/frame_0691.jpg',\n",
       "   'transform_matrix': [[0.8217357105308877,\n",
       "     0.41241070666569235,\n",
       "     -0.39327831247832806,\n",
       "     -82.95831973328733],\n",
       "    [-0.569839276829674,\n",
       "     0.6016764285039613,\n",
       "     -0.5597040950046298,\n",
       "     -69.10303841251181],\n",
       "    [0.005798329115484089,\n",
       "     0.6840342713711219,\n",
       "     0.7294268263295824,\n",
       "     -1.0283735903471292],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 481},\n",
       "  {'file_path': './images/frame_0692.jpg',\n",
       "   'transform_matrix': [[0.8274503277236084,\n",
       "     0.40650266138071234,\n",
       "     -0.3874035898652606,\n",
       "     -82.13320553904622],\n",
       "    [-0.5615098922036076,\n",
       "     0.6059815074986317,\n",
       "     -0.5634652194476415,\n",
       "     -69.73358531422998],\n",
       "    [0.005709300095998899,\n",
       "     0.6837704284773389,\n",
       "     0.7296748625465523,\n",
       "     -1.030946136624156],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 482},\n",
       "  {'file_path': './images/frame_0693.jpg',\n",
       "   'transform_matrix': [[0.8330517796870834,\n",
       "     0.4006494800027225,\n",
       "     -0.3814508179749142,\n",
       "     -81.31103059707438],\n",
       "    [-0.55316796875476,\n",
       "     0.6101245231722585,\n",
       "     -0.5672329896678764,\n",
       "     -70.37560329317446],\n",
       "    [0.0054708960797881494,\n",
       "     0.6835408256990744,\n",
       "     0.7298917788951399,\n",
       "     -1.0089685296087045],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 483},\n",
       "  {'file_path': './images/frame_0694.jpg',\n",
       "   'transform_matrix': [[0.8386163869762618,\n",
       "     0.39457537129184655,\n",
       "     -0.3755433821341843,\n",
       "     -80.46943200809082],\n",
       "    [-0.5446944131212018,\n",
       "     0.6144248676305912,\n",
       "     -0.5707802364760713,\n",
       "     -70.97199345658028],\n",
       "    [0.005527369123746926,\n",
       "     0.68322204180415,\n",
       "     0.730189762858627,\n",
       "     -1.004954770895859],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 484},\n",
       "  {'file_path': './images/frame_0695.jpg',\n",
       "   'transform_matrix': [[0.8440579084226216,\n",
       "     0.3885253279937438,\n",
       "     -0.36961373991855756,\n",
       "     -79.63466889545104],\n",
       "    [-0.5362246434200576,\n",
       "     0.618472327426993,\n",
       "     -0.5744171933325729,\n",
       "     -71.57894999251619],\n",
       "    [0.0054202415316419745,\n",
       "     0.6830373706572666,\n",
       "     0.7303633145684046,\n",
       "     -1.0304978654056534],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 485},\n",
       "  {'file_path': './images/frame_0696.jpg',\n",
       "   'transform_matrix': [[0.8493775973964078,\n",
       "     0.382385336828212,\n",
       "     -0.3637844845782741,\n",
       "     -78.78644261141915],\n",
       "    [-0.5277579159266172,\n",
       "     0.6224157498206017,\n",
       "     -0.5779880764791361,\n",
       "     -72.19566432963121],\n",
       "    [0.005411027434722759,\n",
       "     0.6829202651510886,\n",
       "     0.7304728826096611,\n",
       "     -1.048184626941861],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 486},\n",
       "  {'file_path': './images/frame_0697.jpg',\n",
       "   'transform_matrix': [[0.854577990264244,\n",
       "     0.3763376435461633,\n",
       "     -0.3578637123348029,\n",
       "     -77.94339457757297],\n",
       "    [-0.5192945246782074,\n",
       "     0.6264785510571058,\n",
       "     -0.5812553842371045,\n",
       "     -72.75238005077881],\n",
       "    [0.005445658377112648,\n",
       "     0.6825647244880959,\n",
       "     0.7308048588298586,\n",
       "     -1.0357739083234219],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 487},\n",
       "  {'file_path': './images/frame_0698.jpg',\n",
       "   'transform_matrix': [[0.859775655885835,\n",
       "     0.37020898777897304,\n",
       "     -0.35175435592718707,\n",
       "     -77.07382818489428],\n",
       "    [-0.5106448216072197,\n",
       "     0.6303542434032977,\n",
       "     -0.5847182175964648,\n",
       "     -73.33662412197701],\n",
       "    [0.005261911421983761,\n",
       "     0.6823480293743979,\n",
       "     0.7310085355842727,\n",
       "     -1.0393121016454292],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 488},\n",
       "  {'file_path': './images/frame_0699.jpg',\n",
       "   'transform_matrix': [[0.8648467788823583,\n",
       "     0.36399521459230033,\n",
       "     -0.3457564645971416,\n",
       "     -76.20820111642657],\n",
       "    [-0.5020083032116526,\n",
       "     0.6342341832507126,\n",
       "     -0.5879920614284336,\n",
       "     -73.8871082033548],\n",
       "    [0.005264272349210302,\n",
       "     0.6820956564516496,\n",
       "     0.7312440104961042,\n",
       "     -1.0510014625678292],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 489},\n",
       "  {'file_path': './images/frame_0700.jpg',\n",
       "   'transform_matrix': [[0.8698482185393913,\n",
       "     0.3578033384490522,\n",
       "     -0.3396186798433802,\n",
       "     -75.3274427435948],\n",
       "    [-0.4932931598871969,\n",
       "     0.6379719624584477,\n",
       "     -0.5913151727508955,\n",
       "     -74.44821284755105],\n",
       "    [0.00509265278138005,\n",
       "     0.6818860213493382,\n",
       "     0.7314407144642813,\n",
       "     -1.0521805514872746],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 490},\n",
       "  {'file_path': './images/frame_0701.jpg',\n",
       "   'transform_matrix': [[0.8747741980216399,\n",
       "     0.3515774834797952,\n",
       "     -0.33341172082818393,\n",
       "     -74.43283410168846],\n",
       "    [-0.4845055403709909,\n",
       "     0.6417336696097583,\n",
       "     -0.594501706169972,\n",
       "     -74.98994351057871],\n",
       "    [0.004948113318291351,\n",
       "     0.6815945792032152,\n",
       "     0.7317132947920116,\n",
       "     -1.0318221934964509],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 491},\n",
       "  {'file_path': './images/frame_0702.jpg',\n",
       "   'transform_matrix': [[0.8796086500104587,\n",
       "     0.34520744900049777,\n",
       "     -0.32729259078284534,\n",
       "     -73.54526733901844],\n",
       "    [-0.4756726232652363,\n",
       "     0.6453975718278442,\n",
       "     -0.5976600453055996,\n",
       "     -75.53511120480223],\n",
       "    [0.004917143759024694,\n",
       "     0.6813910708493995,\n",
       "     0.7319030197122851,\n",
       "     -1.0354277140314618],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 492},\n",
       "  {'file_path': './images/frame_0703.jpg',\n",
       "   'transform_matrix': [[0.8843113451289228,\n",
       "     0.3388182766701555,\n",
       "     -0.32124075126070334,\n",
       "     -72.67267510144278],\n",
       "    [-0.46687142511437496,\n",
       "     0.6489875552845809,\n",
       "     -0.6007047739925292,\n",
       "     -76.05400601241419],\n",
       "    [0.004951493506781987,\n",
       "     0.6811881740605962,\n",
       "     0.732091629669431,\n",
       "     -1.0261155576052516],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 493},\n",
       "  {'file_path': './images/frame_0704.jpg',\n",
       "   'transform_matrix': [[0.8889878055795706,\n",
       "     0.332466017162555,\n",
       "     -0.31490796903680807,\n",
       "     -71.77543308908747],\n",
       "    [-0.45790590183178814,\n",
       "     0.6525668805036936,\n",
       "     -0.6037206734387146,\n",
       "     -76.57282808592309],\n",
       "    [0.004781903223238591,\n",
       "     0.6808985342191198,\n",
       "     0.7323621505101269,\n",
       "     -1.0082451427563615],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 494},\n",
       "  {'file_path': './images/frame_0705.jpg',\n",
       "   'transform_matrix': [[0.8935915597274872,\n",
       "     0.3260180797023632,\n",
       "     -0.3085552399344083,\n",
       "     -70.83841538601142],\n",
       "    [-0.44885628747810885,\n",
       "     0.656179846956968,\n",
       "     -0.6065938028358839,\n",
       "     -77.07560482312142],\n",
       "    [0.004707183358021825,\n",
       "     0.680544061876021,\n",
       "     0.7326920378099658,\n",
       "     -1.0036728014887866],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 495},\n",
       "  {'file_path': './images/frame_0706.jpg',\n",
       "   'transform_matrix': [[0.8980218144511739,\n",
       "     0.3196428751638344,\n",
       "     -0.3022999390122645,\n",
       "     -69.93423520818284],\n",
       "    [-0.43992653442785623,\n",
       "     0.6596504354741537,\n",
       "     -0.6093652002576578,\n",
       "     -77.55704071372514],\n",
       "    [0.004633041778106883,\n",
       "     0.6802130073262027,\n",
       "     0.7329998632933881,\n",
       "     -1.0037367084378057],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 496},\n",
       "  {'file_path': './images/frame_0707.jpg',\n",
       "   'transform_matrix': [[0.902479011439957,\n",
       "     0.3131885480136654,\n",
       "     -0.29571027595173277,\n",
       "     -69.00085397357901],\n",
       "    [-0.43071104013911937,\n",
       "     0.6632242884771633,\n",
       "     -0.6120633489078057,\n",
       "     -78.03282705638362],\n",
       "    [0.004431005826656407,\n",
       "     0.6797400065959429,\n",
       "     0.7334397655024656,\n",
       "     -0.9752489345633345],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 497},\n",
       "  {'file_path': './images/frame_0708.jpg',\n",
       "   'transform_matrix': [[0.9068319255643799,\n",
       "     0.3063372319449806,\n",
       "     -0.28950536972824237,\n",
       "     -68.08829284089008],\n",
       "    [-0.42146647395312997,\n",
       "     0.6666582708332051,\n",
       "     -0.6147623616188589,\n",
       "     -78.49768686717287],\n",
       "    [0.004676549017677366,\n",
       "     0.6795029435211949,\n",
       "     0.7336578764215083,\n",
       "     -0.9847504035343743],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 498},\n",
       "  {'file_path': './images/frame_0709.jpg',\n",
       "   'transform_matrix': [[0.9111441126426612,\n",
       "     0.29966447312175193,\n",
       "     -0.2828738403339557,\n",
       "     -67.13416238321373],\n",
       "    [-0.41206325268153177,\n",
       "     0.6700333754899404,\n",
       "     -0.6174618624004827,\n",
       "     -78.95721385908718],\n",
       "    [0.004503530407746365,\n",
       "     0.6791586554540989,\n",
       "     0.7339776828593952,\n",
       "     -0.9690444678818593],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 499},\n",
       "  {'file_path': './images/frame_0710.jpg',\n",
       "   'transform_matrix': [[0.9154165473656131,\n",
       "     0.2927141184193044,\n",
       "     -0.27628063574421863,\n",
       "     -66.19021672196858],\n",
       "    [-0.4024830214979142,\n",
       "     0.6732927684606607,\n",
       "     -0.6202292038790891,\n",
       "     -79.43169067719903],\n",
       "    [0.004467909480921795,\n",
       "     0.6789663414460164,\n",
       "     0.7341558042869931,\n",
       "     -0.9803521791368868],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 500},\n",
       "  {'file_path': './images/frame_0711.jpg',\n",
       "   'transform_matrix': [[0.9195221762984195,\n",
       "     0.2858449019550793,\n",
       "     -0.26976222738128003,\n",
       "     -65.24517756850534],\n",
       "    [-0.3930123780229648,\n",
       "     0.6765531353367176,\n",
       "     -0.622749649367056,\n",
       "     -79.87633942345313],\n",
       "    [0.004498668264335424,\n",
       "     0.6786520073589617,\n",
       "     0.7344461960494446,\n",
       "     -0.9801802632117835],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 501},\n",
       "  {'file_path': './images/frame_0712.jpg',\n",
       "   'transform_matrix': [[0.9234871366969647,\n",
       "     0.27916537553776755,\n",
       "     -0.26313152881420143,\n",
       "     -64.2893129932046],\n",
       "    [-0.3836042766801709,\n",
       "     0.67982143554794,\n",
       "     -0.6250524575443417,\n",
       "     -80.29606126842874],\n",
       "    [0.004389449615223813,\n",
       "     0.6781662840855445,\n",
       "     0.7348953829367008,\n",
       "     -0.9382761774159251],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 502},\n",
       "  {'file_path': './images/frame_0713.jpg',\n",
       "   'transform_matrix': [[0.9273991840145257,\n",
       "     0.27222877769910153,\n",
       "     -0.2565584652309199,\n",
       "     -63.33542921478437],\n",
       "    [-0.3740474320064166,\n",
       "     0.6829097912039546,\n",
       "     -0.6274732948000069,\n",
       "     -80.72239810148146],\n",
       "    [0.004389999840220649,\n",
       "     0.6778832566675654,\n",
       "     0.7351564583346721,\n",
       "     -0.943549828409819],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 503},\n",
       "  {'file_path': './images/frame_0714.jpg',\n",
       "   'transform_matrix': [[0.9312597962232483,\n",
       "     0.2653209734136851,\n",
       "     -0.2497197889736587,\n",
       "     -62.35055492005059],\n",
       "    [-0.3643320148085187,\n",
       "     0.6859322773750356,\n",
       "     -0.6298881597876423,\n",
       "     -81.15712315892972],\n",
       "    [0.00416832385970293,\n",
       "     0.6775704331816079,\n",
       "     0.7354460776659897,\n",
       "     -0.937107323484618],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 504},\n",
       "  {'file_path': './images/frame_0715.jpg',\n",
       "   'transform_matrix': [[0.9350020614938942,\n",
       "     0.2582657512714904,\n",
       "     -0.2430430964301205,\n",
       "     -61.37999764105178],\n",
       "    [-0.35461754748997243,\n",
       "     0.6889543558020438,\n",
       "     -0.6321299634043527,\n",
       "     -81.5738630572067],\n",
       "    [0.00418808003330281,\n",
       "     0.6772301657055478,\n",
       "     0.7357593102666599,\n",
       "     -0.9372576684065691],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 505},\n",
       "  {'file_path': './images/frame_0716.jpg',\n",
       "   'transform_matrix': [[0.9385904851863386,\n",
       "     0.25131872724942206,\n",
       "     -0.23640388840161683,\n",
       "     -60.40612808384025],\n",
       "    [-0.3450084066331519,\n",
       "     0.6918226008496818,\n",
       "     -0.6343111920075474,\n",
       "     -81.96946131036962],\n",
       "    [0.004135271469583898,\n",
       "     0.676919778324812,\n",
       "     0.7360451842397723,\n",
       "     -0.9556911978659751],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 506},\n",
       "  {'file_path': './images/frame_0717.jpg',\n",
       "   'transform_matrix': [[0.9420947604370516,\n",
       "     0.24431379359663943,\n",
       "     -0.2297133705631277,\n",
       "     -59.42136828628523],\n",
       "    [-0.33532270704961004,\n",
       "     0.6945126406074947,\n",
       "     -0.6365617599049807,\n",
       "     -82.38186054773773],\n",
       "    [0.00401802115170681,\n",
       "     0.6767296079637889,\n",
       "     0.7362206824120068,\n",
       "     -0.9904763075958735],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 507},\n",
       "  {'file_path': './images/frame_0718.jpg',\n",
       "   'transform_matrix': [[0.945512881342364,\n",
       "     0.2371360958916735,\n",
       "     -0.2230960852209553,\n",
       "     -58.4464976984862],\n",
       "    [-0.3255583684424467,\n",
       "     0.6973114478583486,\n",
       "     -0.6385675323901031,\n",
       "     -82.72107674793803],\n",
       "    [0.00414004260278509,\n",
       "     0.676404624992281,\n",
       "     0.7365185967348677,\n",
       "     -1.023946935250162],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 508},\n",
       "  {'file_path': './images/frame_0719.jpg',\n",
       "   'transform_matrix': [[0.9488302193092467,\n",
       "     0.23001487395076647,\n",
       "     -0.21636629286231182,\n",
       "     -57.46417041397197],\n",
       "    [-0.31576021443009156,\n",
       "     0.6999248166419271,\n",
       "     -0.6406252711467347,\n",
       "     -83.10159821760445],\n",
       "    [0.004086796866655288,\n",
       "     0.6761644835468495,\n",
       "     0.7367393631951484,\n",
       "     -1.0355033161518696],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 509},\n",
       "  {'file_path': './images/frame_0720.jpg',\n",
       "   'transform_matrix': [[0.9521095942517265,\n",
       "     0.22261995970468582,\n",
       "     -0.20958929856959982,\n",
       "     -56.45226550422637],\n",
       "    [-0.30572888557855926,\n",
       "     0.7024515308198799,\n",
       "     -0.642722098088824,\n",
       "     -83.48182664078467],\n",
       "    [0.004143556045835154,\n",
       "     0.6760193787088441,\n",
       "     0.7368721941784773,\n",
       "     -1.0565929529215394],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 510},\n",
       "  {'file_path': './images/frame_0721.jpg',\n",
       "   'transform_matrix': [[0.9552622276000428,\n",
       "     0.21535226401126792,\n",
       "     -0.20272513141153797,\n",
       "     -55.4499754312555],\n",
       "    [-0.29573076354424005,\n",
       "     0.7051522998499257,\n",
       "     -0.6444404933815855,\n",
       "     -83.80288457262554],\n",
       "    [0.00417037338196146,\n",
       "     0.6755617191653045,\n",
       "     0.7372916462189663,\n",
       "     -1.018594726201125],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 511},\n",
       "  {'file_path': './images/frame_0722.jpg',\n",
       "   'transform_matrix': [[0.9583529205047225,\n",
       "     0.20790628932109734,\n",
       "     -0.19579237630919413,\n",
       "     -54.45770645860033],\n",
       "    [-0.285555037617246,\n",
       "     0.7077864756539842,\n",
       "     -0.6461397877957409,\n",
       "     -84.12995899943856],\n",
       "    [0.004242670324469386,\n",
       "     0.675139452070492,\n",
       "     0.7376779243046884,\n",
       "     -0.9852171395774201],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 512},\n",
       "  {'file_path': './images/frame_0723.jpg',\n",
       "   'transform_matrix': [[0.9613443314225011,\n",
       "     0.20052630925082385,\n",
       "     -0.18869625258617936,\n",
       "     -53.43592579867481],\n",
       "    [-0.27531809994300577,\n",
       "     0.7103001232100792,\n",
       "     -0.6478222586570481,\n",
       "     -84.47043963743674],\n",
       "    [0.004125564882213003,\n",
       "     0.6747317498576669,\n",
       "     0.7380515195082342,\n",
       "     -0.9637217577828114],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 513},\n",
       "  {'file_path': './images/frame_0724.jpg',\n",
       "   'transform_matrix': [[0.9641867574995929,\n",
       "     0.19322777717854395,\n",
       "     -0.18167807459641397,\n",
       "     -52.39968170058724],\n",
       "    [-0.2651937438179146,\n",
       "     0.712759781173764,\n",
       "     -0.6493425695124001,\n",
       "     -84.78825262057295],\n",
       "    [0.004021803359125555,\n",
       "     0.6742673953764685,\n",
       "     0.7384763399256429,\n",
       "     -0.964507082954046],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 514},\n",
       "  {'file_path': './images/frame_0725.jpg',\n",
       "   'transform_matrix': [[0.9669017085385863,\n",
       "     0.18589539489332088,\n",
       "     -0.17476838439093953,\n",
       "     -51.39641709756727],\n",
       "    [-0.255117425584994,\n",
       "     0.7151734840823463,\n",
       "     -0.6507242018154872,\n",
       "     -85.08086944292788],\n",
       "    [0.004023081909179954,\n",
       "     0.6737728028222675,\n",
       "     0.7389276182340039,\n",
       "     -0.9804039566441448],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 515},\n",
       "  {'file_path': './images/frame_0726.jpg',\n",
       "   'transform_matrix': [[0.969547168764727,\n",
       "     0.17848028977356495,\n",
       "     -0.16769935510504022,\n",
       "     -50.382205164614724],\n",
       "    [-0.24487258983792343,\n",
       "     0.7175683233669261,\n",
       "     -0.6520223278741663,\n",
       "     -85.34458953760095],\n",
       "    [0.003962611054622901,\n",
       "     0.6732313773605052,\n",
       "     0.7394212671075311,\n",
       "     -0.9821643663127959],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 516},\n",
       "  {'file_path': './images/frame_0727.jpg',\n",
       "   'transform_matrix': [[0.9721105930389243,\n",
       "     0.17097096553617386,\n",
       "     -0.1605301337604238,\n",
       "     -49.323066857154316],\n",
       "    [-0.23449230729525344,\n",
       "     0.7196491576963763,\n",
       "     -0.6535429960195769,\n",
       "     -85.64480235978327],\n",
       "    [0.003788498496704731,\n",
       "     0.6729591508929236,\n",
       "     0.7396699456572613,\n",
       "     -1.03818800475489],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 517},\n",
       "  {'file_path': './images/frame_0728.jpg',\n",
       "   'transform_matrix': [[0.9745195467080251,\n",
       "     0.16351452799798039,\n",
       "     -0.15354039278829235,\n",
       "     -48.311206905838596],\n",
       "    [-0.22427092186910072,\n",
       "     0.7218182003275162,\n",
       "     -0.6547373819173069,\n",
       "     -85.89514576964277],\n",
       "    [0.00376917603318329,\n",
       "     0.6724890220736272,\n",
       "     0.7400974993218714,\n",
       "     -1.0716465321103448],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 518},\n",
       "  {'file_path': './images/frame_0729.jpg',\n",
       "   'transform_matrix': [[0.9768425943081313,\n",
       "     0.155924056797778,\n",
       "     -0.14651359819853926,\n",
       "     -47.27500047337208],\n",
       "    [-0.2139266870488135,\n",
       "     0.7237118702028299,\n",
       "     -0.6561070808151985,\n",
       "     -86.15359031009338],\n",
       "    [0.003730752427957501,\n",
       "     0.6722565116376678,\n",
       "     0.7403088977224815,\n",
       "     -1.128836133084764],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 519},\n",
       "  {'file_path': './images/frame_0730.jpg',\n",
       "   'transform_matrix': [[0.9790665052336848,\n",
       "     0.14828524449180389,\n",
       "     -0.13942834932503917,\n",
       "     -46.221411031242496],\n",
       "    [-0.20350633991773112,\n",
       "     0.7257274064246603,\n",
       "     -0.6571947208989319,\n",
       "     -86.35689543851235],\n",
       "    [0.0037346944705112595,\n",
       "     0.6718118917004536,\n",
       "     0.740712382930831,\n",
       "     -1.139304457251956],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 520},\n",
       "  {'file_path': './images/frame_0731.jpg',\n",
       "   'transform_matrix': [[0.9811511814338394,\n",
       "     0.1405898352441144,\n",
       "     -0.13257774095606625,\n",
       "     -45.206790160213885],\n",
       "    [-0.19320300209878136,\n",
       "     0.7274090829826573,\n",
       "     -0.6584440947979928,\n",
       "     -86.57606467811316],\n",
       "    [0.0038677061676545992,\n",
       "     0.6716476190833721,\n",
       "     0.7408606593878758,\n",
       "     -1.160449554678782],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 521},\n",
       "  {'file_path': './images/frame_0732.jpg',\n",
       "   'transform_matrix': [[0.9831224929088114,\n",
       "     0.13296389136689832,\n",
       "     -0.1256613207368746,\n",
       "     -44.16175174982186],\n",
       "    [-0.18290590354159267,\n",
       "     0.7291764365820693,\n",
       "     -0.6594294160735545,\n",
       "     -86.78067563974219],\n",
       "    [0.003948972828169426,\n",
       "     0.6712840888372427,\n",
       "     0.7411896367917966,\n",
       "     -1.110139329552298],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 522},\n",
       "  {'file_path': './images/frame_0733.jpg',\n",
       "   'transform_matrix': [[0.984990264674156,\n",
       "     0.12538541026382943,\n",
       "     -0.11862831613955943,\n",
       "     -43.132197850198736],\n",
       "    [-0.1725650907924355,\n",
       "     0.7309795010656971,\n",
       "     -0.660219856155162,\n",
       "     -86.96311102512425],\n",
       "    [0.003932929815617497,\n",
       "     0.6707812370025832,\n",
       "     0.7416448369323081,\n",
       "     -1.0253400488901716],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 523},\n",
       "  {'file_path': './images/frame_0734.jpg',\n",
       "   'transform_matrix': [[0.9867560552104815,\n",
       "     0.11769647390639554,\n",
       "     -0.11162449343871755,\n",
       "     -42.10484851405642],\n",
       "    [-0.16216172550071362,\n",
       "     0.732749323273004,\n",
       "     -0.6608948509601099,\n",
       "     -87.14115196659154],\n",
       "    [0.004007778447014404,\n",
       "     0.6702432165064827,\n",
       "     0.74213069498503,\n",
       "     -0.9668624179976373],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 524},\n",
       "  {'file_path': './images/frame_0735.jpg',\n",
       "   'transform_matrix': [[0.988427073588599,\n",
       "     0.11019539429782269,\n",
       "     -0.10425399403680202,\n",
       "     -41.017097678087204],\n",
       "    [-0.151652525312702,\n",
       "     0.7344060853871813,\n",
       "     -0.6615506128124713,\n",
       "     -87.33074510896708],\n",
       "    [0.0036649370197098267,\n",
       "     0.6697049177225918,\n",
       "     0.7426182676280042,\n",
       "     -0.9389973357169049],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 525},\n",
       "  {'file_path': './images/frame_0736.jpg',\n",
       "   'transform_matrix': [[0.9899346953493041,\n",
       "     0.10269967153667828,\n",
       "     -0.09737595396163778,\n",
       "     -39.98523164110365],\n",
       "    [-0.14147610308883846,\n",
       "     0.7361809005010128,\n",
       "     -0.6618324516010938,\n",
       "     -87.46526782955492],\n",
       "    [0.003716342082876832,\n",
       "     0.6689472768490624,\n",
       "     0.7433005647769595,\n",
       "     -0.8718721171263814],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 526},\n",
       "  {'file_path': './images/frame_0737.jpg',\n",
       "   'transform_matrix': [[0.9913570506388111,\n",
       "     0.09516221689164608,\n",
       "     -0.09030697993502514,\n",
       "     -38.93905040206653],\n",
       "    [-0.13114137725440328,\n",
       "     0.7378431334953317,\n",
       "     -0.662109847023595,\n",
       "     -87.59189088759898],\n",
       "    [0.0036245441832050283,\n",
       "     0.6682302468685906,\n",
       "     0.7439456968417832,\n",
       "     -0.8394122593748313],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 527},\n",
       "  {'file_path': './images/frame_0738.jpg',\n",
       "   'transform_matrix': [[0.9926426120612152,\n",
       "     0.0877322366478071,\n",
       "     -0.08344878293337135,\n",
       "     -37.91091694892187],\n",
       "    [-0.12102828112384159,\n",
       "     0.739293175852732,\n",
       "     -0.6624181121510716,\n",
       "     -87.71098547461725],\n",
       "    [0.003577693180825937,\n",
       "     0.6676441078826013,\n",
       "     0.7444719909581214,\n",
       "     -0.8446205959234798],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 528},\n",
       "  {'file_path': './images/frame_0739.jpg',\n",
       "   'transform_matrix': [[0.9938438351963557,\n",
       "     0.08016289781033205,\n",
       "     -0.07647444708430036,\n",
       "     -36.85087856406447],\n",
       "    [-0.1107346445360904,\n",
       "     0.7405670261613124,\n",
       "     -0.6627958345237663,\n",
       "     -87.8458817422798],\n",
       "    [0.0035028191025085437,\n",
       "     0.667183924849243,\n",
       "     0.7448847834941286,\n",
       "     -0.8784643629365771],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 529},\n",
       "  {'file_path': './images/frame_0740.jpg',\n",
       "   'transform_matrix': [[0.9949138292622923,\n",
       "     0.07290167595507802,\n",
       "     -0.06951127955650858,\n",
       "     -35.78758873745836],\n",
       "    [-0.10067711659397306,\n",
       "     0.7419733143460349,\n",
       "     -0.6628270656760206,\n",
       "     -87.91535626883655],\n",
       "    [0.003254310520807988,\n",
       "     0.6664540092469253,\n",
       "     0.7455390419164735,\n",
       "     -0.8474381513018627],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 530},\n",
       "  {'file_path': './images/frame_0741.jpg',\n",
       "   'transform_matrix': [[0.9958642854664836,\n",
       "     0.06548680084275262,\n",
       "     -0.06297462860320592,\n",
       "     -34.78251559128965],\n",
       "    [-0.09079109988270759,\n",
       "     0.7429719539545617,\n",
       "     -0.6631362241794885,\n",
       "     -88.02608546607259],\n",
       "    [0.003361713018429622,\n",
       "     0.6661112178550384,\n",
       "     0.7458448527229101,\n",
       "     -0.8847722212715041],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 531},\n",
       "  {'file_path': './images/frame_0742.jpg',\n",
       "   'transform_matrix': [[0.9967240125219498,\n",
       "     0.05828807810021174,\n",
       "     -0.05606908964418569,\n",
       "     -33.70404442498049],\n",
       "    [-0.08082026367238934,\n",
       "     0.7439975449325235,\n",
       "     -0.6632765170834131,\n",
       "     -88.09305923559468],\n",
       "    [0.0030541516120813146,\n",
       "     0.665635150127877,\n",
       "     0.7462710761326403,\n",
       "     -0.886563982269747],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 532},\n",
       "  {'file_path': './images/frame_0743.jpg',\n",
       "   'transform_matrix': [[0.9974726190772577,\n",
       "     0.050911477404470544,\n",
       "     -0.049562038493689065,\n",
       "     -32.68010024832412],\n",
       "    [-0.07098181243480485,\n",
       "     0.7450008664659972,\n",
       "     -0.6632761802359433,\n",
       "     -88.14057371458439],\n",
       "    [0.0031553913586136995,\n",
       "     0.6651178319917512,\n",
       "     0.7467317544285675,\n",
       "     -0.8820220032341266],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 533},\n",
       "  {'file_path': './images/frame_0744.jpg',\n",
       "   'transform_matrix': [[0.9981369474286551,\n",
       "     0.04353875691839875,\n",
       "     -0.04274354715985656,\n",
       "     -31.59278514527],\n",
       "    [-0.06093899327777155,\n",
       "     0.7459815853940822,\n",
       "     -0.6631726120334158,\n",
       "     -88.18766810998858],\n",
       "    [0.0030121879254140574,\n",
       "     0.664541835326364,\n",
       "     0.7472449904984105,\n",
       "     -0.8236687273473129],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 534},\n",
       "  {'file_path': './images/frame_0745.jpg',\n",
       "   'transform_matrix': [[0.9986952632577953,\n",
       "     0.036146553789363094,\n",
       "     -0.03607211936656162,\n",
       "     -30.52993032692643],\n",
       "    [-0.05098011128556419,\n",
       "     0.7467505636511491,\n",
       "     -0.6631475129562069,\n",
       "     -88.22905047549379],\n",
       "    [0.0029663782217175362,\n",
       "     0.6641212406901648,\n",
       "     0.7476190060882628,\n",
       "     -0.8246632743607188],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 535},\n",
       "  {'file_path': './images/frame_0746.jpg',\n",
       "   'transform_matrix': [[0.9991545334959884,\n",
       "     0.028711713558425035,\n",
       "     -0.0294254260623825,\n",
       "     -29.46298238236195],\n",
       "    [-0.04100583791383809,\n",
       "     0.7474428863674455,\n",
       "     -0.6630593132410448,\n",
       "     -88.27968225592288],\n",
       "    [0.002956256314636134,\n",
       "     0.6637053330531862,\n",
       "     0.7479882963157654,\n",
       "     -0.8336037052880797],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 536},\n",
       "  {'file_path': './images/frame_0747.jpg',\n",
       "   'transform_matrix': [[0.9995105354022876,\n",
       "     0.021378596531056854,\n",
       "     -0.02283955407171071,\n",
       "     -28.41127174028131],\n",
       "    [-0.031147506587450604,\n",
       "     0.7481841970856772,\n",
       "     -0.6627595642951107,\n",
       "     -88.28661915136762],\n",
       "    [0.00291932410277358,\n",
       "     0.6631465621124961,\n",
       "     0.7484838773849176,\n",
       "     -0.7952811684691495],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 537},\n",
       "  {'file_path': './images/frame_0748.jpg',\n",
       "   'transform_matrix': [[0.9997757180109345,\n",
       "     0.013867874244545738,\n",
       "     -0.01600611569550215,\n",
       "     -27.34168956309178],\n",
       "    [-0.020992113480584332,\n",
       "     0.7488772196352445,\n",
       "     -0.6623762081196789,\n",
       "     -88.29816129065892],\n",
       "    [0.0028008654624249343,\n",
       "     0.6625636512632755,\n",
       "     0.7490003759527348,\n",
       "     -0.7860807833641116],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 538},\n",
       "  {'file_path': './images/frame_0749.jpg',\n",
       "   'transform_matrix': [[0.9999350974160154,\n",
       "     0.006343353204613074,\n",
       "     -0.009463763825532675,\n",
       "     -26.307528342968894],\n",
       "    [-0.01101981298286758,\n",
       "     0.7493696160085097,\n",
       "     -0.6620602256026874,\n",
       "     -88.31135888090311],\n",
       "    [0.002892175210210984,\n",
       "     0.6621215450907637,\n",
       "     0.7493908825500704,\n",
       "     -0.8112508554723249],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 539},\n",
       "  {'file_path': './images/frame_0750.jpg',\n",
       "   'transform_matrix': [[0.9999958216244635,\n",
       "     -0.0010128105086180989,\n",
       "     -0.002707572434482742,\n",
       "     -25.230674972619386],\n",
       "    [-0.0010323888065509248,\n",
       "     0.7497295881239373,\n",
       "     -0.6617435144108808,\n",
       "     -88.33360539495126],\n",
       "    [0.002700167951525684,\n",
       "     0.6617435446654429,\n",
       "     0.7497254098579349,\n",
       "     -0.831505438007338],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 540},\n",
       "  {'file_path': './images/frame_0751.jpg',\n",
       "   'transform_matrix': [[0.9999575726296911,\n",
       "     -0.00836583596465347,\n",
       "     0.00385561008773036,\n",
       "     -24.177699569528627],\n",
       "    [0.008824971319536516,\n",
       "     0.7500502249955945,\n",
       "     -0.6613219940885586,\n",
       "     -88.33931756567573],\n",
       "    [0.002640610108564974,\n",
       "     0.6613279615838655,\n",
       "     0.7500922305994002,\n",
       "     -0.8455364937525219],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 541},\n",
       "  {'file_path': './images/frame_0752.jpg',\n",
       "   'transform_matrix': [[0.9998169438068989,\n",
       "     -0.015958873719414134,\n",
       "     0.010554298945934338,\n",
       "     -23.10272794249359],\n",
       "    [0.01895149520883616,\n",
       "     0.7501818217386632,\n",
       "     -0.6609599648709519,\n",
       "     -88.3423758863435],\n",
       "    [0.0026305334025284515,\n",
       "     0.661038991801897,\n",
       "     0.7503469408290739,\n",
       "     -0.8636778089727252],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 542},\n",
       "  {'file_path': './images/frame_0753.jpg',\n",
       "   'transform_matrix': [[0.999573233083442,\n",
       "     -0.023532089998269695,\n",
       "     0.017308738932350673,\n",
       "     -21.99991340515219],\n",
       "    [0.029100258221723116,\n",
       "     0.7503100937222782,\n",
       "     -0.6604452575572749,\n",
       "     -88.32553432034125],\n",
       "    [0.0025547357092217237,\n",
       "     0.6606670901435756,\n",
       "     0.7506746760925644,\n",
       "     -0.861644611517699],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 543},\n",
       "  {'file_path': './images/frame_0754.jpg',\n",
       "   'transform_matrix': [[0.9992327886205181,\n",
       "     -0.031090430181635847,\n",
       "     0.023816366154047326,\n",
       "     -20.96439932593216],\n",
       "    [0.039074359990732374,\n",
       "     0.7502546046614255,\n",
       "     -0.6599933504025952,\n",
       "     -88.31250082243017],\n",
       "    [0.0026511388076592797,\n",
       "     0.6604176052585583,\n",
       "     0.7508938394524045,\n",
       "     -0.8858245755328382],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 544},\n",
       "  {'file_path': './images/frame_0755.jpg',\n",
       "   'transform_matrix': [[0.9987850437049334,\n",
       "     -0.038677954674086655,\n",
       "     0.030536081830575657,\n",
       "     -19.858894906228905],\n",
       "    [0.04921055313811459,\n",
       "     0.7501408411237988,\n",
       "     -0.6594444934472654,\n",
       "     -88.30810883548637],\n",
       "    [0.002599602118616195,\n",
       "     0.660145994686258,\n",
       "     0.7511328163304516,\n",
       "     -0.8717177034244579],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 545},\n",
       "  {'file_path': './images/frame_0756.jpg',\n",
       "   'transform_matrix': [[0.9982509244158373,\n",
       "     -0.046004349778845315,\n",
       "     0.03713073799902288,\n",
       "     -18.800710143116305],\n",
       "    [0.05906805962090785,\n",
       "     0.7499826153767041,\n",
       "     -0.6588148760959636,\n",
       "     -88.26798435280887],\n",
       "    [0.002460942004050999,\n",
       "     0.6598557997275954,\n",
       "     0.7513882267711599,\n",
       "     -0.8738594186475304],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 546},\n",
       "  {'file_path': './images/frame_0757.jpg',\n",
       "   'transform_matrix': [[0.99760431541746,\n",
       "     -0.053640163662327454,\n",
       "     0.04368481089279859,\n",
       "     -17.758961330001295],\n",
       "    [0.06913112205524552,\n",
       "     0.7497014327852283,\n",
       "     -0.6581554904755854,\n",
       "     -88.23400751954014],\n",
       "    [0.0025530029070869563,\n",
       "     0.6595987375079295,\n",
       "     0.7516135893224003,\n",
       "     -0.8897803532962497],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 547},\n",
       "  {'file_path': './images/frame_0758.jpg',\n",
       "   'transform_matrix': [[0.9968498074506716,\n",
       "     -0.0612213640137772,\n",
       "     0.05042227656355297,\n",
       "     -16.663731406065832],\n",
       "    [0.07927437123316239,\n",
       "     0.7494081717102277,\n",
       "     -0.6573453934116528,\n",
       "     -88.14430332132754],\n",
       "    [0.0024567155198746827,\n",
       "     0.6592718231217124,\n",
       "     0.7519006768095291,\n",
       "     -0.8767973307338607],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 548},\n",
       "  {'file_path': './images/frame_0759.jpg',\n",
       "   'transform_matrix': [[0.995990787017013,\n",
       "     -0.06877337237079519,\n",
       "     0.05720642822252592,\n",
       "     -15.573563707961391],\n",
       "    [0.0894261867218286,\n",
       "     0.7489883510505038,\n",
       "     -0.6565206829331731,\n",
       "     -88.09283278721627],\n",
       "    [0.0023041930526131902,\n",
       "     0.6590043044194744,\n",
       "     0.7521356376684867,\n",
       "     -0.8671777662029465],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 549},\n",
       "  {'file_path': './images/frame_0760.jpg',\n",
       "   'transform_matrix': [[0.9950300027149904,\n",
       "     -0.07645584768577487,\n",
       "     0.06379496102088256,\n",
       "     -14.501323193029739],\n",
       "    [0.0995471015713802,\n",
       "     0.7484647467891835,\n",
       "     -0.6556606571867346,\n",
       "     -88.00639615385356],\n",
       "    [0.0023808119925033417,\n",
       "     0.6587526289651169,\n",
       "     0.7523558370650177,\n",
       "     -0.8685310727109421],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 550},\n",
       "  {'file_path': './images/frame_0761.jpg',\n",
       "   'transform_matrix': [[0.9939793354412947,\n",
       "     -0.0838867450382837,\n",
       "     0.07048471268696646,\n",
       "     -13.423705574792397],\n",
       "    [0.10954554297259615,\n",
       "     0.7479158762855139,\n",
       "     -0.6546920008789713,\n",
       "     -87.92413880463505],\n",
       "    [0.00220334530233288,\n",
       "     0.6584716060749727,\n",
       "     0.7526023447096912,\n",
       "     -0.8526488400757443],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 551},\n",
       "  {'file_path': './images/frame_0762.jpg',\n",
       "   'transform_matrix': [[0.9928373068425507,\n",
       "     -0.0914359434292992,\n",
       "     0.07689961242311093,\n",
       "     -12.381207820182604],\n",
       "    [0.11945189822430058,\n",
       "     0.7472629139515775,\n",
       "     -0.6537043532386857,\n",
       "     -87.83674500334253],\n",
       "    [0.0023078458011782954,\n",
       "     0.6582078742174019,\n",
       "     0.7528326959995606,\n",
       "     -0.8576995826878206],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 552},\n",
       "  {'file_path': './images/frame_0763.jpg',\n",
       "   'transform_matrix': [[0.9916042671642268,\n",
       "     -0.09882123545058857,\n",
       "     0.08339868563542302,\n",
       "     -11.336113553806612],\n",
       "    [0.12929016597918355,\n",
       "     0.7465051169730422,\n",
       "     -0.6526976048019018,\n",
       "     -87.74559648206946],\n",
       "    [0.0022428381064945276,\n",
       "     0.6580003599976856,\n",
       "     0.7530142733840735,\n",
       "     -0.870068295311951],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 553},\n",
       "  {'file_path': './images/frame_0764.jpg',\n",
       "   'transform_matrix': [[0.9902651892875526,\n",
       "     -0.10632065769981672,\n",
       "     0.08983747899159897,\n",
       "     -10.31225619288807],\n",
       "    [0.13917469606170058,\n",
       "     0.7456613598906765,\n",
       "     -0.651628375949145,\n",
       "     -87.636092628514],\n",
       "    [0.0022932207527507713,\n",
       "     0.6577880008880258,\n",
       "     0.7531996329170068,\n",
       "     -0.8848167146403116],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 554},\n",
       "  {'file_path': './images/frame_0765.jpg',\n",
       "   'transform_matrix': [[0.9888013616792264,\n",
       "     -0.11380778832559454,\n",
       "     0.09653835744275079,\n",
       "     -9.229089522156668],\n",
       "    [0.14922240367076361,\n",
       "     0.7447404627237653,\n",
       "     -0.6504570065920665,\n",
       "     -87.52805309241654],\n",
       "    [0.002131052328623296,\n",
       "     0.6575784595760635,\n",
       "     0.7533830553692749,\n",
       "     -0.8781227834621673],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 555},\n",
       "  {'file_path': './images/frame_0766.jpg',\n",
       "   'transform_matrix': [[0.9873098649365357,\n",
       "     -0.1210488213315242,\n",
       "     0.1027930613088674,\n",
       "     -8.213102669556257],\n",
       "    [0.1587910737054023,\n",
       "     0.7437368923607016,\n",
       "     -0.6493387635534565,\n",
       "     -87.40140081437698],\n",
       "    [0.002150699998915081,\n",
       "     0.6574211875167205,\n",
       "     0.7535202430549691,\n",
       "     -0.9079082375193399],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 556},\n",
       "  {'file_path': './images/frame_0767.jpg',\n",
       "   'transform_matrix': [[0.9857054866966641,\n",
       "     -0.12836637835763193,\n",
       "     0.1091181304982712,\n",
       "     -7.176701425331932],\n",
       "    [0.16846368350364543,\n",
       "     0.7426493205781041,\n",
       "     -0.6481450254266122,\n",
       "     -87.26937839943594],\n",
       "    [0.0021635240872354667,\n",
       "     0.6572625499389309,\n",
       "     0.7536585829215364,\n",
       "     -0.9202413571929476],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 557},\n",
       "  {'file_path': './images/frame_0768.jpg',\n",
       "   'transform_matrix': [[0.9840436734171186,\n",
       "     -0.1354511114425624,\n",
       "     0.1153735030963254,\n",
       "     -6.153015008408141],\n",
       "    [0.17791519573611103,\n",
       "     0.7415788681639521,\n",
       "     -0.6468438493321655,\n",
       "     -87.13966309793082],\n",
       "    [0.0020571664795439835,\n",
       "     0.6570492970102368,\n",
       "     0.7538448045615417,\n",
       "     -0.9135495683798157],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 558},\n",
       "  {'file_path': './images/frame_0769.jpg',\n",
       "   'transform_matrix': [[0.9822957792279956,\n",
       "     -0.14259955291288545,\n",
       "     0.12149226156389592,\n",
       "     -5.143044149408991],\n",
       "    [0.18732441369324848,\n",
       "     0.740271919480328,\n",
       "     -0.6456833970789333,\n",
       "     -87.01135088929755],\n",
       "    [0.0021368540768176617,\n",
       "     0.6570105423339536,\n",
       "     0.7538783596288584,\n",
       "     -0.9465146406758564],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 559},\n",
       "  {'file_path': './images/frame_0770.jpg',\n",
       "   'transform_matrix': [[0.9804745892866924,\n",
       "     -0.14949853981442685,\n",
       "     0.12774884092016658,\n",
       "     -4.121758450831031],\n",
       "    [0.19663674394925715,\n",
       "     0.7391216010112523,\n",
       "     -0.6442307427060566,\n",
       "     -86.85463952462145],\n",
       "    [0.0018896275098738864,\n",
       "     0.6567719889824148,\n",
       "     0.7540868542787075,\n",
       "     -0.9396607615295475],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 560},\n",
       "  {'file_path': './images/frame_0771.jpg',\n",
       "   'transform_matrix': [[0.9785153007333667,\n",
       "     -0.15676922411723251,\n",
       "     0.13390749269689883,\n",
       "     -3.1175747788697596],\n",
       "    [0.20616478452774678,\n",
       "     0.7377907825087548,\n",
       "     -0.6427758885223892,\n",
       "     -86.69124437924283],\n",
       "    [0.0019717635042893387,\n",
       "     0.6565730512401496,\n",
       "     0.7542598627355714,\n",
       "     -0.942001083944328],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 561},\n",
       "  {'file_path': './images/frame_0772.jpg',\n",
       "   'transform_matrix': [[0.9765809826765588,\n",
       "     -0.16353718718811125,\n",
       "     0.13980405101815713,\n",
       "     -2.1421966795630896],\n",
       "    [0.2151415357316146,\n",
       "     0.7364640769141881,\n",
       "     -0.6413538672355341,\n",
       "     -86.53108285763011],\n",
       "    [0.001924546057965436,\n",
       "     0.6564116481458365,\n",
       "     0.7544004535397214,\n",
       "     -0.9296602437932069],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 562},\n",
       "  {'file_path': './images/frame_0773.jpg',\n",
       "   'transform_matrix': [[0.974546473564011,\n",
       "     -0.17048869330318997,\n",
       "     0.14557738945221296,\n",
       "     -1.2066543141994108],\n",
       "    [0.2241753917507635,\n",
       "     0.734901239661823,\n",
       "     -0.6400512180106429,\n",
       "     -86.3838934772627],\n",
       "    [0.002136491830586372,\n",
       "     0.6563945257231254,\n",
       "     0.754414781140568,\n",
       "     -0.9497109940295315],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 563},\n",
       "  {'file_path': './images/frame_0774.jpg',\n",
       "   'transform_matrix': [[0.9724429679797131,\n",
       "     -0.17710069093511124,\n",
       "     0.15162459990751156,\n",
       "     -0.22187058546391578],\n",
       "    [0.2331334595678921,\n",
       "     0.7334809145448583,\n",
       "     -0.638478298792014,\n",
       "     -86.20038965947592],\n",
       "    [0.0018611976554802486,\n",
       "     0.6562324993999797,\n",
       "     0.7545564542660429,\n",
       "     -0.9191514289354658],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 564},\n",
       "  {'file_path': './images/frame_0775.jpg',\n",
       "   'transform_matrix': [[0.9703569231264956,\n",
       "     -0.1836021824169646,\n",
       "     0.15715495649901706,\n",
       "     0.6937711240194528],\n",
       "    [0.24166872482598376,\n",
       "     0.7320057489142617,\n",
       "     -0.6369959269865497,\n",
       "     -86.01570503435073],\n",
       "    [0.0019155107577967572,\n",
       "     0.6560928456919787,\n",
       "     0.7546777515273247,\n",
       "     -0.9123794060022806],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 565},\n",
       "  {'file_path': './images/frame_0776.jpg',\n",
       "   'transform_matrix': [[0.9681419084802999,\n",
       "     -0.19014382934690688,\n",
       "     0.16293117935317689,\n",
       "     1.6333907209919363],\n",
       "    [0.25039561124331294,\n",
       "     0.7304347310178726,\n",
       "     -0.6354267397528498,\n",
       "     -85.84263593363515],\n",
       "    [0.0018118814007647937,\n",
       "     0.6559805087684715,\n",
       "     0.7547756548814005,\n",
       "     -0.9073400227198704],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 566},\n",
       "  {'file_path': './images/frame_0777.jpg',\n",
       "   'transform_matrix': [[0.9659121689060948,\n",
       "     -0.19649145172847202,\n",
       "     0.16853721059980023,\n",
       "     2.554027324034684],\n",
       "    [0.258864704398886,\n",
       "     0.7289781629372123,\n",
       "     -0.6337033239435979,\n",
       "     -85.63137776117608],\n",
       "    [0.0016573399172312906,\n",
       "     0.6557300872754922,\n",
       "     0.7549935800164622,\n",
       "     -0.8710273220613114],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 567},\n",
       "  {'file_path': './images/frame_0778.jpg',\n",
       "   'transform_matrix': [[0.9636741392038006,\n",
       "     -0.20273471840940058,\n",
       "     0.17387003014112276,\n",
       "     3.45556976842935],\n",
       "    [0.2670757338608509,\n",
       "     0.7274788924390344,\n",
       "     -0.6320166243370214,\n",
       "     -85.43487865241975],\n",
       "    [0.0016449354096204274,\n",
       "     0.6554945423168196,\n",
       "     0.7551981191583844,\n",
       "     -0.8526368002593563],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 568},\n",
       "  {'file_path': './images/frame_0779.jpg',\n",
       "   'transform_matrix': [[0.9613881089603825,\n",
       "     -0.2087460872423153,\n",
       "     0.17932644816257207,\n",
       "     4.354022701267071],\n",
       "    [0.2751921843756033,\n",
       "     0.7257522241703475,\n",
       "     -0.6305180177999499,\n",
       "     -85.2529521039042],\n",
       "    [0.001471600544964855,\n",
       "     0.6555217617843191,\n",
       "     0.7551748500969948,\n",
       "     -0.8786657339629831],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 569},\n",
       "  {'file_path': './images/frame_0780.jpg',\n",
       "   'transform_matrix': [[0.9591247775420404,\n",
       "     -0.21459048421133747,\n",
       "     0.18447380624596865,\n",
       "     5.2122001511666225],\n",
       "    [0.282980190439174,\n",
       "     0.7241570706899909,\n",
       "     -0.6289028134685839,\n",
       "     -85.05268372408307],\n",
       "    [0.001368548113982264,\n",
       "     0.6553987038861424,\n",
       "     0.755281845419592,\n",
       "     -0.8743255990315619],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 570},\n",
       "  {'file_path': './images/frame_0781.jpg',\n",
       "   'transform_matrix': [[0.9567872311715603,\n",
       "     -0.2205488883644756,\n",
       "     0.1895161790144931,\n",
       "     6.062781776291936],\n",
       "    [0.290785584218648,\n",
       "     0.7225467549145056,\n",
       "     -0.6271921005347062,\n",
       "     -84.84205340347164],\n",
       "    [0.0013922204131913295,\n",
       "     0.6551979661168916,\n",
       "     0.7554559463784832,\n",
       "     -0.8589292668034437],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 571},\n",
       "  {'file_path': './images/frame_0782.jpg',\n",
       "   'transform_matrix': [[0.9543960034042952,\n",
       "     -0.2263073797491606,\n",
       "     0.1947132213204276,\n",
       "     6.920387587646192],\n",
       "    [0.2985412892712631,\n",
       "     0.7209083727387496,\n",
       "     -0.6254312246086056,\n",
       "     -84.61868533012024],\n",
       "    [0.0011693101216527925,\n",
       "     0.6550389973018684,\n",
       "     0.7555941666844723,\n",
       "     -0.8487693888011115],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 572},\n",
       "  {'file_path': './images/frame_0783.jpg',\n",
       "   'transform_matrix': [[0.9520539974251973,\n",
       "     -0.23194000782348564,\n",
       "     0.1994919014836041,\n",
       "     7.73076825410845],\n",
       "    [0.3059278448343611,\n",
       "     0.7193248062683103,\n",
       "     -0.6236825930247379,\n",
       "     -84.4181335880483],\n",
       "    [0.001157472118739146,\n",
       "     0.6548096332965019,\n",
       "     0.7557929639791543,\n",
       "     -0.8233093516337108],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 573},\n",
       "  {'file_path': './images/frame_0784.jpg',\n",
       "   'transform_matrix': [[0.9496757983118899,\n",
       "     -0.2375073960497146,\n",
       "     0.20422075046958044,\n",
       "     8.538560357610436],\n",
       "    [0.3132324601354438,\n",
       "     0.717701864155196,\n",
       "     -0.6219239986571141,\n",
       "     -84.19408878449536],\n",
       "    [0.001141936150686369,\n",
       "     0.6545947379943109,\n",
       "     0.7559791167565326,\n",
       "     -0.804539481148528],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 574},\n",
       "  {'file_path': './images/frame_0785.jpg',\n",
       "   'transform_matrix': [[0.9473050855883549,\n",
       "     -0.24278868432185483,\n",
       "     0.20896585745930432,\n",
       "     9.355260455931584],\n",
       "    [0.3203313406453034,\n",
       "     0.7160449932498164,\n",
       "     -0.6202156075448706,\n",
       "     -83.98005150361267],\n",
       "    [0.0009523753578093508,\n",
       "     0.6544717124575615,\n",
       "     0.7560858883579594,\n",
       "     -0.7908801452198243],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 575},\n",
       "  {'file_path': './images/frame_0786.jpg',\n",
       "   'transform_matrix': [[0.9449886622791259,\n",
       "     -0.2479817900071901,\n",
       "     0.2133107123159502,\n",
       "     10.100753160000545],\n",
       "    [0.32710154710476813,\n",
       "     0.7144071702886085,\n",
       "     -0.6185684868483766,\n",
       "     -83.77805337999807],\n",
       "    [0.0010030182328140348,\n",
       "     0.6543144709274379,\n",
       "     0.7562219033388095,\n",
       "     -0.787481932633572],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 576},\n",
       "  {'file_path': './images/frame_0787.jpg',\n",
       "   'transform_matrix': [[0.942716602483521,\n",
       "     -0.2529526837869149,\n",
       "     0.21748642984545985,\n",
       "     10.843808620491652],\n",
       "    [0.33359312742033814,\n",
       "     0.7128382771829188,\n",
       "     -0.6169094065750711,\n",
       "     -83.56021308439598],\n",
       "    [0.001016238084855959,\n",
       "     0.6541227181102071,\n",
       "     0.7563877556599324,\n",
       "     -0.7815126843164693],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 577},\n",
       "  {'file_path': './images/frame_0788.jpg',\n",
       "   'transform_matrix': [[0.9404068938440538,\n",
       "     -0.2578210016382454,\n",
       "     0.2217277725609273,\n",
       "     11.585061064790464],\n",
       "    [0.34004986576792173,\n",
       "     0.7111157972422608,\n",
       "     -0.6153701420313812,\n",
       "     -83.37168749361228],\n",
       "    [0.0009812246413855603,\n",
       "     0.6540968231284691,\n",
       "     0.756410195047269,\n",
       "     -0.8117873832335898],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 578},\n",
       "  {'file_path': './images/frame_0789.jpg',\n",
       "   'transform_matrix': [[0.9380650288153258,\n",
       "     -0.2625867686762147,\n",
       "     0.22601369566883753,\n",
       "     12.332926760558733],\n",
       "    [0.346458410179533,\n",
       "     0.7095484569026708,\n",
       "     -0.613602116458955,\n",
       "     -83.12762729382263],\n",
       "    [0.0007561280131498459,\n",
       "     0.6539030327374409,\n",
       "     0.7565779880800161,\n",
       "     -0.8191201959479635],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 579},\n",
       "  {'file_path': './images/frame_0790.jpg',\n",
       "   'transform_matrix': [[0.9358012918202261,\n",
       "     -0.2671300719607057,\n",
       "     0.23003796834841048,\n",
       "     13.04059656790531],\n",
       "    [0.3525274657437533,\n",
       "     0.7080475807821007,\n",
       "     -0.6118766291050031,\n",
       "     -82.904145144814],\n",
       "    [0.0005728209867720328,\n",
       "     0.6536896419577741,\n",
       "     0.7567625280583297,\n",
       "     -0.7950332787096279],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 580},\n",
       "  {'file_path': './images/frame_0791.jpg',\n",
       "   'transform_matrix': [[0.9335595072470775,\n",
       "     -0.27157266867228624,\n",
       "     0.23391223152885038,\n",
       "     13.737273859798128],\n",
       "    [0.3584222193342796,\n",
       "     0.7066208367926854,\n",
       "     -0.6100987671663455,\n",
       "     -82.64307914591237],\n",
       "    [0.00039889357407563733,\n",
       "     0.6534028456018673,\n",
       "     0.7570102788227507,\n",
       "     -0.7714693759836598],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 581},\n",
       "  {'file_path': './images/frame_0792.jpg',\n",
       "   'transform_matrix': [[0.9314273191346052,\n",
       "     -0.27579105547125654,\n",
       "     0.23744987448253693,\n",
       "     14.367666960209512],\n",
       "    [0.3639271127759851,\n",
       "     0.7050394298998098,\n",
       "     -0.6086677738085748,\n",
       "     -82.4358741391475],\n",
       "    [0.0004536036350576462,\n",
       "     0.6533442400515989,\n",
       "     0.7570608286228664,\n",
       "     -0.804522278618256],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 582},\n",
       "  {'file_path': './images/frame_0793.jpg',\n",
       "   'transform_matrix': [[0.9292402793490864,\n",
       "     -0.2798456036901157,\n",
       "     0.24124456746328296,\n",
       "     15.059540238151346],\n",
       "    [0.36947592382793437,\n",
       "     0.7034431142386508,\n",
       "     -0.6071699323432632,\n",
       "     -82.20941755625688],\n",
       "    [0.00021200642955915137,\n",
       "     0.6533408169749868,\n",
       "     0.7570638889339066,\n",
       "     -0.8388608850266311],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 583},\n",
       "  {'file_path': './images/frame_0794.jpg',\n",
       "   'transform_matrix': [[0.9270963036296597,\n",
       "     -0.2839535615635865,\n",
       "     0.24466879382458348,\n",
       "     15.697657054492643],\n",
       "    [0.37482316123475135,\n",
       "     0.7019819276939191,\n",
       "     -0.6055815147386163,\n",
       "     -81.98051782400351],\n",
       "    [0.0002039563915744895,\n",
       "     0.6531399146174455,\n",
       "     0.7572372219689854,\n",
       "     -0.8219793022997441],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 584},\n",
       "  {'file_path': './images/frame_0795.jpg',\n",
       "   'transform_matrix': [[0.9250126056291338,\n",
       "     -0.28780811293949005,\n",
       "     0.24802856600281017,\n",
       "     16.318382766181244],\n",
       "    [0.3799364032882813,\n",
       "     0.70055036616262,\n",
       "     -0.6040509199775986,\n",
       "     -81.74534027630342],\n",
       "    [9.425266605729821e-05,\n",
       "     0.6529897967010118,\n",
       "     0.7573666988459463,\n",
       "     -0.8257695413798141],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 585},\n",
       "  {'file_path': './images/frame_0796.jpg',\n",
       "   'transform_matrix': [[0.9228521239793692,\n",
       "     -0.29170269175024,\n",
       "     0.25150247889917793,\n",
       "     16.94491639312405],\n",
       "    [0.3851544519182082,\n",
       "     0.6990613108356898,\n",
       "     -0.6024693617606389,\n",
       "     -81.48297432320459],\n",
       "    [-7.371805505724917e-05,\n",
       "     0.6528574295497842,\n",
       "     0.7574808058606481,\n",
       "     -0.8444345245652454],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 586},\n",
       "  {'file_path': './images/frame_0797.jpg',\n",
       "   'transform_matrix': [[0.9208539035646984,\n",
       "     -0.29530604745724487,\n",
       "     0.254602487467889,\n",
       "     17.526148617688584],\n",
       "    [0.38990773301772746,\n",
       "     0.697797741210274,\n",
       "     -0.6008745893236093,\n",
       "     -81.24167397274007],\n",
       "    [-0.00021914067095977336,\n",
       "     0.6525891898407595,\n",
       "     0.7577118854025898,\n",
       "     -0.8085746545514603],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 587},\n",
       "  {'file_path': './images/frame_0798.jpg',\n",
       "   'transform_matrix': [[0.9189140505254442,\n",
       "     -0.2987326308889575,\n",
       "     0.25759616260550827,\n",
       "     18.095814330707157],\n",
       "    [0.3944576674377921,\n",
       "     0.6964807076272714,\n",
       "     -0.5994312074813519,\n",
       "     -80.99926243859701],\n",
       "    [-0.0003410959657052722,\n",
       "     0.652436540320342,\n",
       "     0.7578432849266167,\n",
       "     -0.818846609483799],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 588},\n",
       "  {'file_path': './images/frame_0799.jpg',\n",
       "   'transform_matrix': [[0.9170258862975359,\n",
       "     -0.3021660394248259,\n",
       "     0.2603059900934538,\n",
       "     18.62214699496722],\n",
       "    [0.39882756599001007,\n",
       "     0.6952794927934712,\n",
       "     -0.5979322699999873,\n",
       "     -80.7773708896338],\n",
       "    [-0.000310590893087139,\n",
       "     0.6521365742842276,\n",
       "     0.7581014391320788,\n",
       "     -0.7744416334159611],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 589},\n",
       "  {'file_path': './images/frame_0800.jpg',\n",
       "   'transform_matrix': [[0.9152220502124795,\n",
       "     -0.30525886074469233,\n",
       "     0.26303160787577984,\n",
       "     19.150723820555235],\n",
       "    [0.40294968659695884,\n",
       "     0.6939607089179909,\n",
       "     -0.5966993250787638,\n",
       "     -80.57182100360201],\n",
       "    [-0.0003858448886449387,\n",
       "     0.6521008836176286,\n",
       "     0.7581321050508478,\n",
       "     -0.8078139616930088],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 590},\n",
       "  {'file_path': './images/frame_0801.jpg',\n",
       "   'transform_matrix': [[0.9134108417024183,\n",
       "     -0.30836171667923223,\n",
       "     0.2656947232203093,\n",
       "     19.68207228435414],\n",
       "    [0.4070384487922047,\n",
       "     0.6929036658840189,\n",
       "     -0.595150578433159,\n",
       "     -80.31975274347485],\n",
       "    [-0.0005791936771051118,\n",
       "     0.6517649587781816,\n",
       "     0.7584207954978289,\n",
       "     -0.8182386416324087],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 591},\n",
       "  {'file_path': './images/frame_0802.jpg',\n",
       "   'transform_matrix': [[0.9117053611822459,\n",
       "     -0.3111769469481053,\n",
       "     0.2682577903428093,\n",
       "     20.192373687441865],\n",
       "    [0.41084392055473007,\n",
       "     0.6917700462512036,\n",
       "     -0.5938530761500072,\n",
       "     -80.10146122689494],\n",
       "    [-0.0007793168605909588,\n",
       "     0.6516311155843185,\n",
       "     0.7585356167429234,\n",
       "     -0.8315557915525189],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 592},\n",
       "  {'file_path': './images/frame_0803.jpg',\n",
       "   'transform_matrix': [[0.9100846898095964,\n",
       "     -0.3139518617212908,\n",
       "     0.27051818034266417,\n",
       "     20.6818021552906],\n",
       "    [0.414421372451368,\n",
       "     0.6908409287369341,\n",
       "     -0.5924472442651874,\n",
       "     -79.85646572031425],\n",
       "    [-0.0008851156394476719,\n",
       "     0.6512856820962868,\n",
       "     0.7588321137555258,\n",
       "     -0.8238485962185994],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 593},\n",
       "  {'file_path': './images/frame_0804.jpg',\n",
       "   'transform_matrix': [[0.908487739898074,\n",
       "     -0.31654938483934597,\n",
       "     0.2728488838399764,\n",
       "     21.1672657108134],\n",
       "    [0.4179101049578144,\n",
       "     0.6898270624407095,\n",
       "     -0.5911765963724969,\n",
       "     -79.61946424621597],\n",
       "    [-0.00108195611642505,\n",
       "     0.6511029956022727,\n",
       "     0.7589886155198304,\n",
       "     -0.8374823855788583],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 594},\n",
       "  {'file_path': './images/frame_0805.jpg',\n",
       "   'transform_matrix': [[0.9069305852328878,\n",
       "     -0.31919186828940566,\n",
       "     0.2749426572706575,\n",
       "     21.622402549254275],\n",
       "    [0.42127874555781064,\n",
       "     0.6888014919586153,\n",
       "     -0.5899802735827893,\n",
       "     -79.40193311233627],\n",
       "    [-0.0010640067523099356,\n",
       "     0.6508986525516121,\n",
       "     0.7591638900765281,\n",
       "     -0.8395772326956193],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 595},\n",
       "  {'file_path': './images/frame_0806.jpg',\n",
       "   'transform_matrix': [[0.9055017519562258,\n",
       "     -0.32165074424806606,\n",
       "     0.2767803748983495,\n",
       "     22.015676975850837],\n",
       "    [0.4243414066371687,\n",
       "     0.6878630835068231,\n",
       "     -0.5888792312195041,\n",
       "     -79.1966953152385],\n",
       "    [-0.0009735591377706595,\n",
       "     0.650680549173825,\n",
       "     0.7593509564815566,\n",
       "     -0.8257030388554294],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 596},\n",
       "  {'file_path': './images/frame_0807.jpg',\n",
       "   'transform_matrix': [[0.9039928083622609,\n",
       "     -0.32402767484718564,\n",
       "     0.2789320138715509,\n",
       "     22.463155618021645],\n",
       "    [0.4275458401630716,\n",
       "     0.6870146355902352,\n",
       "     -0.5875503766010789,\n",
       "     -78.96205314366482],\n",
       "    [-0.0012477934787781535,\n",
       "     0.6503975372170031,\n",
       "     0.7595929742918185,\n",
       "     -0.7995775141309484],\n",
       "    [0.0, 0.0, 0.0, 1.0]],\n",
       "   'colmap_im_id': 597}],\n",
       " 'applied_transform': [[0.0, 1.0, 0.0, 0.0],\n",
       "  [1.0, 0.0, 0.0, 0.0],\n",
       "  [-0.0, -0.0, -1.0, -0.0]]}"
      ]
     },
     "execution_count": 37,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 38,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Save the updated data back to template.json\n",
    "with open('transforms_pix4d.json', 'w') as file:\n",
    "    json.dump(data, file, indent=4)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "nerfstudio2",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.8.19"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}
