File size: 1,049 Bytes
c29de8d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # -----------------------------------------------------------------------------
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA CORPORATION and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA CORPORATION is strictly prohibited.
# -----------------------------------------------------------------------------
# usage: tnt_download.sh <path_to_tnt>
echo "Download fixed poses for Courthouse"
gdown 10pcCwaQY6hqyiegJGdgmLp_HMFOnsmgq
gdown 19TT5aTz3z60eUVIDhFJ7EgGqpcqQnJEi
mv Courthouse_COLMAP_SfM.log ${1}/Courthouse/Courthouse_COLMAP_SfM.log
mv Courthouse_trans.log ${1}/Courthouse/Courthouse_trans.log
echo "Compute intrinsics, undistort images and generate json files. This may take a while"
python3 projects/neuralangelo/scripts/convert_tnt_to_json.py --tnt_path ${1}
|