kopia lustrzana https://github.com/OpenDroneMap/ODM
PoC ortho,point cloud and textured model alignment working
rodzic
9a77a4e611
commit
360ab3cc5f
|
|
@ -48,14 +48,16 @@ def transform_point_cloud(input_laz, a_matrix, output_laz):
|
|||
p = pdal.Pipeline(json.dumps(pipe))
|
||||
p.execute()
|
||||
|
||||
def transform_obj(input_obj, a_matrix, output_obj):
|
||||
def transform_obj(input_obj, a_matrix, geo_offset, output_obj):
|
||||
g_off = np.array([geo_offset[0], geo_offset[1], 0, 0])
|
||||
|
||||
with open(input_obj, 'r') as fin:
|
||||
with open(output_obj, 'w') as fout:
|
||||
lines = fin.readlines()
|
||||
for line in lines:
|
||||
if line.startswith("v "):
|
||||
v = np.fromstring(line.strip()[2:] + " 1", sep=' ', dtype=float)
|
||||
vt = v.dot(a_matrix)[:3]
|
||||
vt = (a_matrix.dot((v + g_off)) - g_off)[:3]
|
||||
fout.write("v " + " ".join(map(str, list(vt))) + '\n')
|
||||
else:
|
||||
fout.write(line)
|
||||
|
|
@ -31,142 +31,142 @@ class ODMGeoreferencingStage(types.ODM_Stage):
|
|||
gcp_gml_export_file = tree.path("odm_georeferencing", "ground_control_points.gml")
|
||||
gcp_geojson_export_file = tree.path("odm_georeferencing", "ground_control_points.geojson")
|
||||
|
||||
# if reconstruction.has_gcp() and (not io.file_exists(gcp_export_file) or self.rerun()):
|
||||
# octx = OSFMContext(tree.opensfm)
|
||||
# gcps = octx.ground_control_points(reconstruction.georef.proj4())
|
||||
if reconstruction.has_gcp() and (not io.file_exists(gcp_export_file) or self.rerun()):
|
||||
octx = OSFMContext(tree.opensfm)
|
||||
gcps = octx.ground_control_points(reconstruction.georef.proj4())
|
||||
|
||||
# if len(gcps):
|
||||
# gcp_schema = {
|
||||
# 'geometry': 'Point',
|
||||
# 'properties': OrderedDict([
|
||||
# ('id', 'str'),
|
||||
# ('observations_count', 'int'),
|
||||
# ('observations_list', 'str'),
|
||||
# ('error_x', 'float'),
|
||||
# ('error_y', 'float'),
|
||||
# ('error_z', 'float'),
|
||||
# ])
|
||||
# }
|
||||
if len(gcps):
|
||||
gcp_schema = {
|
||||
'geometry': 'Point',
|
||||
'properties': OrderedDict([
|
||||
('id', 'str'),
|
||||
('observations_count', 'int'),
|
||||
('observations_list', 'str'),
|
||||
('error_x', 'float'),
|
||||
('error_y', 'float'),
|
||||
('error_z', 'float'),
|
||||
])
|
||||
}
|
||||
|
||||
# # Write GeoPackage
|
||||
# with fiona.open(gcp_export_file, 'w', driver="GPKG",
|
||||
# crs=fiona.crs.from_string(reconstruction.georef.proj4()),
|
||||
# schema=gcp_schema) as f:
|
||||
# for gcp in gcps:
|
||||
# f.write({
|
||||
# 'geometry': {
|
||||
# 'type': 'Point',
|
||||
# 'coordinates': gcp['coordinates'],
|
||||
# },
|
||||
# 'properties': OrderedDict([
|
||||
# ('id', gcp['id']),
|
||||
# ('observations_count', len(gcp['observations'])),
|
||||
# ('observations_list', ",".join([obs['shot_id'] for obs in gcp['observations']])),
|
||||
# ('error_x', gcp['error'][0]),
|
||||
# ('error_y', gcp['error'][1]),
|
||||
# ('error_z', gcp['error'][2]),
|
||||
# ])
|
||||
# })
|
||||
# Write GeoPackage
|
||||
with fiona.open(gcp_export_file, 'w', driver="GPKG",
|
||||
crs=fiona.crs.from_string(reconstruction.georef.proj4()),
|
||||
schema=gcp_schema) as f:
|
||||
for gcp in gcps:
|
||||
f.write({
|
||||
'geometry': {
|
||||
'type': 'Point',
|
||||
'coordinates': gcp['coordinates'],
|
||||
},
|
||||
'properties': OrderedDict([
|
||||
('id', gcp['id']),
|
||||
('observations_count', len(gcp['observations'])),
|
||||
('observations_list', ",".join([obs['shot_id'] for obs in gcp['observations']])),
|
||||
('error_x', gcp['error'][0]),
|
||||
('error_y', gcp['error'][1]),
|
||||
('error_z', gcp['error'][2]),
|
||||
])
|
||||
})
|
||||
|
||||
# # Write GML
|
||||
# try:
|
||||
# system.run('ogr2ogr -of GML "{}" "{}"'.format(gcp_gml_export_file, gcp_export_file))
|
||||
# except Exception as e:
|
||||
# log.ODM_WARNING("Cannot generate ground control points GML file: %s" % str(e))
|
||||
# Write GML
|
||||
try:
|
||||
system.run('ogr2ogr -of GML "{}" "{}"'.format(gcp_gml_export_file, gcp_export_file))
|
||||
except Exception as e:
|
||||
log.ODM_WARNING("Cannot generate ground control points GML file: %s" % str(e))
|
||||
|
||||
# # Write GeoJSON
|
||||
# geojson = {
|
||||
# 'type': 'FeatureCollection',
|
||||
# 'features': []
|
||||
# }
|
||||
# Write GeoJSON
|
||||
geojson = {
|
||||
'type': 'FeatureCollection',
|
||||
'features': []
|
||||
}
|
||||
|
||||
# from_srs = CRS.from_proj4(reconstruction.georef.proj4())
|
||||
# to_srs = CRS.from_epsg(4326)
|
||||
# transformer = location.transformer(from_srs, to_srs)
|
||||
from_srs = CRS.from_proj4(reconstruction.georef.proj4())
|
||||
to_srs = CRS.from_epsg(4326)
|
||||
transformer = location.transformer(from_srs, to_srs)
|
||||
|
||||
# for gcp in gcps:
|
||||
# properties = gcp.copy()
|
||||
# del properties['coordinates']
|
||||
for gcp in gcps:
|
||||
properties = gcp.copy()
|
||||
del properties['coordinates']
|
||||
|
||||
# geojson['features'].append({
|
||||
# 'type': 'Feature',
|
||||
# 'geometry': {
|
||||
# 'type': 'Point',
|
||||
# 'coordinates': transformer.TransformPoint(*gcp['coordinates']),
|
||||
# },
|
||||
# 'properties': properties
|
||||
# })
|
||||
geojson['features'].append({
|
||||
'type': 'Feature',
|
||||
'geometry': {
|
||||
'type': 'Point',
|
||||
'coordinates': transformer.TransformPoint(*gcp['coordinates']),
|
||||
},
|
||||
'properties': properties
|
||||
})
|
||||
|
||||
# with open(gcp_geojson_export_file, 'w') as f:
|
||||
# f.write(json.dumps(geojson, indent=4))
|
||||
with open(gcp_geojson_export_file, 'w') as f:
|
||||
f.write(json.dumps(geojson, indent=4))
|
||||
|
||||
# else:
|
||||
# log.ODM_WARNING("GCPs could not be loaded for writing to %s" % gcp_export_file)
|
||||
else:
|
||||
log.ODM_WARNING("GCPs could not be loaded for writing to %s" % gcp_export_file)
|
||||
|
||||
if not io.file_exists(tree.odm_georeferencing_model_laz) or self.rerun():
|
||||
# cmd = ('pdal translate -i "%s" -o \"%s\"' % (tree.filtered_point_cloud, tree.odm_georeferencing_model_laz))
|
||||
# stages = ["ferry"]
|
||||
# params = [
|
||||
# '--filters.ferry.dimensions="views => UserData"',
|
||||
# '--writers.las.compression="lazip"',
|
||||
# ]
|
||||
cmd = ('pdal translate -i "%s" -o \"%s\"' % (tree.filtered_point_cloud, tree.odm_georeferencing_model_laz))
|
||||
stages = ["ferry"]
|
||||
params = [
|
||||
'--filters.ferry.dimensions="views => UserData"',
|
||||
'--writers.las.compression="lazip"',
|
||||
]
|
||||
|
||||
# if reconstruction.is_georeferenced():
|
||||
# log.ODM_INFO("Georeferencing point cloud")
|
||||
if reconstruction.is_georeferenced():
|
||||
log.ODM_INFO("Georeferencing point cloud")
|
||||
|
||||
# stages.append("transformation")
|
||||
# params += [
|
||||
# '--filters.transformation.matrix="1 0 0 %s 0 1 0 %s 0 0 1 0 0 0 0 1"' % reconstruction.georef.utm_offset(),
|
||||
# '--writers.las.offset_x=%s' % reconstruction.georef.utm_east_offset,
|
||||
# '--writers.las.offset_y=%s' % reconstruction.georef.utm_north_offset,
|
||||
# '--writers.las.scale_x=0.001',
|
||||
# '--writers.las.scale_y=0.001',
|
||||
# '--writers.las.scale_z=0.001',
|
||||
# '--writers.las.offset_z=0',
|
||||
# '--writers.las.a_srs="%s"' % reconstruction.georef.proj4()
|
||||
# ]
|
||||
stages.append("transformation")
|
||||
params += [
|
||||
'--filters.transformation.matrix="1 0 0 %s 0 1 0 %s 0 0 1 0 0 0 0 1"' % reconstruction.georef.utm_offset(),
|
||||
'--writers.las.offset_x=%s' % reconstruction.georef.utm_east_offset,
|
||||
'--writers.las.offset_y=%s' % reconstruction.georef.utm_north_offset,
|
||||
'--writers.las.scale_x=0.001',
|
||||
'--writers.las.scale_y=0.001',
|
||||
'--writers.las.scale_z=0.001',
|
||||
'--writers.las.offset_z=0',
|
||||
'--writers.las.a_srs="%s"' % reconstruction.georef.proj4()
|
||||
]
|
||||
|
||||
# if reconstruction.has_gcp() and io.file_exists(gcp_gml_export_file):
|
||||
# log.ODM_INFO("Embedding GCP info in point cloud")
|
||||
# params += [
|
||||
# '--writers.las.vlrs="{\\\"filename\\\": \\\"%s\\\", \\\"user_id\\\": \\\"ODM_GCP\\\", \\\"description\\\": \\\"Ground Control Points (GML)\\\"}"' % gcp_gml_export_file.replace(os.sep, "/")
|
||||
# ]
|
||||
if reconstruction.has_gcp() and io.file_exists(gcp_gml_export_file):
|
||||
log.ODM_INFO("Embedding GCP info in point cloud")
|
||||
params += [
|
||||
'--writers.las.vlrs="{\\\"filename\\\": \\\"%s\\\", \\\"user_id\\\": \\\"ODM_GCP\\\", \\\"description\\\": \\\"Ground Control Points (GML)\\\"}"' % gcp_gml_export_file.replace(os.sep, "/")
|
||||
]
|
||||
|
||||
# system.run(cmd + ' ' + ' '.join(stages) + ' ' + ' '.join(params))
|
||||
system.run(cmd + ' ' + ' '.join(stages) + ' ' + ' '.join(params))
|
||||
|
||||
# self.update_progress(50)
|
||||
self.update_progress(50)
|
||||
|
||||
# if args.crop > 0:
|
||||
# log.ODM_INFO("Calculating cropping area and generating bounds shapefile from point cloud")
|
||||
# cropper = Cropper(tree.odm_georeferencing, 'odm_georeferenced_model')
|
||||
if args.crop > 0:
|
||||
log.ODM_INFO("Calculating cropping area and generating bounds shapefile from point cloud")
|
||||
cropper = Cropper(tree.odm_georeferencing, 'odm_georeferenced_model')
|
||||
|
||||
# if args.fast_orthophoto:
|
||||
# decimation_step = 4
|
||||
# else:
|
||||
# decimation_step = 40
|
||||
if args.fast_orthophoto:
|
||||
decimation_step = 4
|
||||
else:
|
||||
decimation_step = 40
|
||||
|
||||
# # More aggressive decimation for large datasets
|
||||
# if not args.fast_orthophoto:
|
||||
# decimation_step *= int(len(reconstruction.photos) / 1000) + 1
|
||||
# decimation_step = min(decimation_step, 95)
|
||||
# More aggressive decimation for large datasets
|
||||
if not args.fast_orthophoto:
|
||||
decimation_step *= int(len(reconstruction.photos) / 1000) + 1
|
||||
decimation_step = min(decimation_step, 95)
|
||||
|
||||
# try:
|
||||
# cropper.create_bounds_gpkg(tree.odm_georeferencing_model_laz, args.crop,
|
||||
# decimation_step=decimation_step)
|
||||
# except:
|
||||
# log.ODM_WARNING("Cannot calculate crop bounds! We will skip cropping")
|
||||
# args.crop = 0
|
||||
try:
|
||||
cropper.create_bounds_gpkg(tree.odm_georeferencing_model_laz, args.crop,
|
||||
decimation_step=decimation_step)
|
||||
except:
|
||||
log.ODM_WARNING("Cannot calculate crop bounds! We will skip cropping")
|
||||
args.crop = 0
|
||||
|
||||
# if 'boundary' in outputs and args.crop == 0:
|
||||
# log.ODM_INFO("Using boundary JSON as cropping area")
|
||||
if 'boundary' in outputs and args.crop == 0:
|
||||
log.ODM_INFO("Using boundary JSON as cropping area")
|
||||
|
||||
# bounds_base, _ = os.path.splitext(tree.odm_georeferencing_model_laz)
|
||||
# bounds_json = bounds_base + ".bounds.geojson"
|
||||
# bounds_gpkg = bounds_base + ".bounds.gpkg"
|
||||
# export_to_bounds_files(outputs['boundary'], reconstruction.get_proj_srs(), bounds_json, bounds_gpkg)
|
||||
# else:
|
||||
# log.ODM_INFO("Converting point cloud (non-georeferenced)")
|
||||
# system.run(cmd + ' ' + ' '.join(stages) + ' ' + ' '.join(params))
|
||||
bounds_base, _ = os.path.splitext(tree.odm_georeferencing_model_laz)
|
||||
bounds_json = bounds_base + ".bounds.geojson"
|
||||
bounds_gpkg = bounds_base + ".bounds.gpkg"
|
||||
export_to_bounds_files(outputs['boundary'], reconstruction.get_proj_srs(), bounds_json, bounds_gpkg)
|
||||
else:
|
||||
log.ODM_INFO("Converting point cloud (non-georeferenced)")
|
||||
system.run(cmd + ' ' + ' '.join(stages) + ' ' + ' '.join(params))
|
||||
|
||||
|
||||
if tree.odm_align_file is not None:
|
||||
|
|
@ -180,8 +180,8 @@ class ODMGeoreferencingStage(types.ODM_Stage):
|
|||
|
||||
# Align point cloud
|
||||
unaligned_model = io.related_file_path(tree.odm_georeferencing_model_laz, postfix="_unaligned")
|
||||
if not os.path.isfile(unaligned_model):
|
||||
os.rename(tree.odm_georeferencing_model_laz, unaligned_model)
|
||||
os.rename(tree.odm_georeferencing_model_laz, unaligned_model)
|
||||
|
||||
try:
|
||||
transform_point_cloud(unaligned_model, a_matrix, tree.odm_georeferencing_model_laz)
|
||||
log.ODM_INFO("Transformed %s" % tree.odm_georeferencing_model_laz)
|
||||
|
|
@ -194,10 +194,9 @@ class ODMGeoreferencingStage(types.ODM_Stage):
|
|||
obj = os.path.join(texturing, "odm_textured_model_geo.obj")
|
||||
if os.path.isfile(obj):
|
||||
unaligned_obj = io.related_file_path(obj, postfix="_unaligned")
|
||||
if not os.path.isfile(unaligned_obj):
|
||||
os.rename(obj, unaligned_obj)
|
||||
os.rename(obj, unaligned_obj)
|
||||
try:
|
||||
transform_obj(unaligned_obj, a_matrix, obj)
|
||||
transform_obj(unaligned_obj, a_matrix, [reconstruction.georef.utm_east_offset, reconstruction.georef.utm_north_offset], obj)
|
||||
log.ODM_INFO("Transformed %s" % obj)
|
||||
except Exception as e:
|
||||
log.ODM_WARNING("Cannot transform textured model: %s" % str(e))
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue