kopia lustrzana https://github.com/OpenDroneMap/ODM
118 wiersze
4.3 KiB
Python
118 wiersze
4.3 KiB
Python
import os
|
|
import sys
|
|
import shutil
|
|
from opendm.utils import double_quote
|
|
from opendm import io
|
|
from opendm import log
|
|
from opendm import system
|
|
from opendm import concurrency
|
|
|
|
|
|
def build(input_point_cloud_files, output_path, max_concurrency=8, rerun=False):
|
|
num_files = len(input_point_cloud_files)
|
|
if num_files == 0:
|
|
log.ODM_WARNING("No input point cloud files to process")
|
|
return
|
|
|
|
tmpdir = io.related_file_path(output_path, postfix="-tmp")
|
|
|
|
def dir_cleanup():
|
|
if io.dir_exists(output_path):
|
|
log.ODM_WARNING("Removing previous EPT directory: %s" % output_path)
|
|
shutil.rmtree(output_path)
|
|
|
|
if io.dir_exists(tmpdir):
|
|
log.ODM_WARNING("Removing previous EPT temp directory: %s" % tmpdir)
|
|
shutil.rmtree(tmpdir)
|
|
|
|
if rerun:
|
|
dir_cleanup()
|
|
|
|
# Attempt with entwine (faster, more memory hungry)
|
|
try:
|
|
build_entwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=max_concurrency)
|
|
except Exception as e:
|
|
log.ODM_WARNING("Cannot build EPT using entwine (%s), attempting with untwine..." % str(e))
|
|
dir_cleanup()
|
|
build_untwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=max_concurrency)
|
|
|
|
if os.path.exists(tmpdir):
|
|
shutil.rmtree(tmpdir)
|
|
|
|
|
|
def build_entwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=8, reproject=None):
|
|
kwargs = {
|
|
'threads': max_concurrency,
|
|
'tmpdir': tmpdir,
|
|
'all_inputs': "-i " + " ".join(map(double_quote, input_point_cloud_files)),
|
|
'outputdir': output_path,
|
|
'reproject': (" -r %s " % reproject) if reproject is not None else ""
|
|
}
|
|
|
|
system.run('entwine build --threads {threads} --tmp "{tmpdir}" {all_inputs} -o "{outputdir}" {reproject}'.format(**kwargs))
|
|
|
|
def build_untwine(input_point_cloud_files, tmpdir, output_path, max_concurrency=8, rerun=False):
|
|
kwargs = {
|
|
# 'threads': max_concurrency,
|
|
'tmpdir': tmpdir,
|
|
'files': "--files " + " ".join(map(double_quote, input_point_cloud_files)),
|
|
'outputdir': output_path
|
|
}
|
|
|
|
# Run untwine
|
|
system.run('untwine --temp_dir "{tmpdir}" {files} --output_dir "{outputdir}"'.format(**kwargs))
|
|
|
|
def build_copc(input_point_cloud_files, output_file, convert_rgb_8_to_16=False):
|
|
if len(input_point_cloud_files) == 0:
|
|
logger.ODM_WARNING("Cannot build COPC, no input files")
|
|
return
|
|
|
|
base_path, ext = os.path.splitext(output_file)
|
|
|
|
tmpdir = io.related_file_path(base_path, postfix="-tmp")
|
|
if os.path.exists(tmpdir):
|
|
log.ODM_WARNING("Removing previous directory %s" % tmpdir)
|
|
shutil.rmtree(tmpdir)
|
|
cleanup = [tmpdir]
|
|
|
|
if convert_rgb_8_to_16:
|
|
tmpdir16 = io.related_file_path(base_path, postfix="-tmp16")
|
|
if os.path.exists(tmpdir16):
|
|
log.ODM_WARNING("Removing previous directory %s" % tmpdir16)
|
|
shutil.rmtree(tmpdir16)
|
|
os.makedirs(tmpdir16, exist_ok=True)
|
|
cleanup.append(tmpdir16)
|
|
|
|
converted = []
|
|
ok = True
|
|
for f in input_point_cloud_files:
|
|
# Convert 8bit RGB to 16bit RGB (per COPC spec)
|
|
base = os.path.basename(f)
|
|
filename, ext = os.path.splitext(base)
|
|
out_16 = os.path.join(tmpdir16, "%s_16%s" % (filename, ext))
|
|
try:
|
|
system.run('pdal translate -i "{input}" -o "{output}" assign '
|
|
'--filters.assign.value="Red = Red / 255 * 65535" '
|
|
'--filters.assign.value="Green = Green / 255 * 65535" '
|
|
'--filters.assign.value="Blue = Blue / 255 * 65535" '.format(input=f, output=out_16))
|
|
|
|
converted.append(out_16)
|
|
except Exception as e:
|
|
log.ODM_WARNING("Cannot convert point cloud to 16bit RGB, COPC is not going to follow the official spec: %s" % str(e))
|
|
ok = False
|
|
break
|
|
if ok:
|
|
input_point_cloud_files = converted
|
|
|
|
kwargs = {
|
|
'tmpdir': tmpdir,
|
|
'files': "--files " + " ".join(map(double_quote, input_point_cloud_files)),
|
|
'output': output_file
|
|
}
|
|
|
|
# Run untwine
|
|
system.run('untwine --temp_dir "{tmpdir}" {files} -o "{output}" --single_file'.format(**kwargs))
|
|
|
|
for d in cleanup:
|
|
if os.path.exists(d):
|
|
shutil.rmtree(d) |