mirror of
https://github.com/graphdeco-inria/gaussian-splatting
synced 2025-06-26 18:18:11 +00:00
Merge 92bb250843
into 54c035f783
This commit is contained in:
commit
eb0c7110c3
@ -10,6 +10,7 @@
|
||||
#
|
||||
|
||||
import os
|
||||
import sys
|
||||
import logging
|
||||
from argparse import ArgumentParser
|
||||
import shutil
|
||||
@ -27,6 +28,7 @@ args = parser.parse_args()
|
||||
colmap_command = '"{}"'.format(args.colmap_executable) if len(args.colmap_executable) > 0 else "colmap"
|
||||
magick_command = '"{}"'.format(args.magick_executable) if len(args.magick_executable) > 0 else "magick"
|
||||
use_gpu = 1 if not args.no_gpu else 0
|
||||
exit = lambda code: sys.exit(code if code <= 255 else 1)
|
||||
|
||||
if not args.skip_matching:
|
||||
os.makedirs(args.source_path + "/distorted/sparse", exist_ok=True)
|
||||
|
Loading…
Reference in New Issue
Block a user