You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your excellent work. May I ask if there is anything else that needs to be added to the following code besides the dataset path if I want to use my own dataset.
if name == 'main':
parser = ArgumentParser()
parser = ArgumentParser("Colmap converter")
parser.add_argument('--data_path', type=str, default=None, help='Path to dataset')
parser.add_argument("--no_gpu", action='store_true')
parser.add_argument("--camera", default="OPENCV", type=str)
parser.add_argument("--colmap_executable", default="", type=str)
parser.add_argument("--resize", action="store_true")
parser.add_argument("--magick_executable", default="", type=str)
args = parser.parse_args()
The text was updated successfully, but these errors were encountered:
You can refer to the Custom Dataset data processing instructions in the README. For data preprocessing, make sure the data paths are correct. When executing the command, you only need to provide the dataset path.
Thank you for your excellent work. May I ask if there is anything else that needs to be added to the following code besides the dataset path if I want to use my own dataset.
if name == 'main':
parser = ArgumentParser()
parser = ArgumentParser("Colmap converter")
parser.add_argument('--data_path', type=str, default=None, help='Path to dataset')
parser.add_argument("--no_gpu", action='store_true')
parser.add_argument("--camera", default="OPENCV", type=str)
parser.add_argument("--colmap_executable", default="", type=str)
parser.add_argument("--resize", action="store_true")
parser.add_argument("--magick_executable", default="", type=str)
args = parser.parse_args()
The text was updated successfully, but these errors were encountered: