-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbasic_pixel_alignment_algorithm.py
291 lines (246 loc) · 11.5 KB
/
basic_pixel_alignment_algorithm.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# -*- coding: utf-8 -*-
"""
/***************************************************************************
Coregistration
A QGIS plugin processing
Image co-registration, projection and pixel alignment based on a target image
-------------------
copyright : (C) 2021-2024 by Xavier Corredor Llano, SMByC
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
"""
import os
import tempfile
from osgeo import gdal
from qgis.PyQt.QtGui import QIcon
from qgis.PyQt.QtCore import QCoreApplication
from qgis.core import (QgsProcessingAlgorithm, QgsProcessingParameterRasterDestination, QgsProcessingParameterRasterLayer,
QgsProcessingParameterNumber, QgsProcessingParameterDefinition, QgsProcessingParameterEnum, QgsProcessingUtils)
from Coregistration.utils.system_utils import get_raster_driver_name_by_extension
class CoregistrationAlgorithm(QgsProcessingAlgorithm):
"""
This algorithm compute a specific statistic using the time
series of all pixels across (the time) all raster in the specific band
"""
# Constants used to refer to parameters and outputs. They will be
# used when calling the algorithm from another algorithm, or when
# calling from the QGIS console.
IMG_REF = 'IMG_REF'
INPUT = 'INPUT'
NODATA = 'NODATA'
RESAMPLING = 'RESAMPLING'
OUTPUT = 'OUTPUT'
resampling_methods = (
('Nearest Neighbour', gdal.GRA_NearestNeighbour),
('Bilinear', gdal.GRA_Bilinear),
('Cubic', gdal.GRA_Cubic),
('Cubic Spline', gdal.GRA_CubicSpline),
('Lanczos Windowed Sinc', gdal.GRA_Lanczos),
('Average', gdal.GRA_Average),
('Mode', gdal.GRA_Mode),
('Maximum', gdal.GRA_Max),
('Minimum', gdal.GRA_Min),
('Median', gdal.GRA_Med),
('First Quartile', gdal.GRA_Q1),
('Third Quartile', gdal.GRA_Q3))
def __init__(self):
super().__init__()
def tr(self, string, context=''):
if context == '':
context = self.__class__.__name__
return QCoreApplication.translate(context, string)
def shortHelpString(self):
"""
Returns a localised short helper string for the algorithm. This string
should provide a basic description about what the algorithm does and the
parameters and outputs associated with it..
"""
html_help = '''
<p>This Qgis processing generates a new raster file base on the target image with all \
properties from the reference image. This process don't check the content of the pixel, this process adjusts \
the target image to the closest pixel alignment based on the reference image. The basic pixel alignment process include:</p>
<ul>
<li>- Reprojection (only if needed)</li>
<li>- Resampling (only if pixel sizes are different)</li>
<li>- Extent/bounds adjustment</li>
</ul>
<p>For a real image to image co-registration use the other two algorithms instead</p>'''
return html_help
def createInstance(self):
return CoregistrationAlgorithm()
def name(self):
"""
Returns the algorithm name, used for identifying the algorithm. This
string should be fixed for the algorithm, and must not be localised.
The name should be unique within each provider. Names should contain
lowercase alphanumeric characters only and no spaces or other
formatting characters.
"""
return 'Basic pixel alignment'
def displayName(self):
"""
Returns the translated algorithm name, which should be used for any
user-visible display of the algorithm name.
"""
return self.tr(self.name())
def group(self):
"""
Returns the name of the group this algorithm belongs to. This string
should be localised.
"""
return None
def groupId(self):
"""
Returns the unique ID of the group this algorithm belongs to. This
string should be fixed for the algorithm, and must not be localised.
The group id should be unique within each provider. Group id should
contain lowercase alphanumeric characters only and no spaces or other
formatting characters.
"""
return None
def icon(self):
return QIcon(":/plugins/Coregistration/icons/coregistration.svg")
def initAlgorithm(self, config=None):
"""
Here we define the inputs and output of the algorithm, along
with some other properties.
"""
self.addParameter(
QgsProcessingParameterRasterLayer(
self.IMG_REF,
self.tr('The REFERENCE image to use as based to co-register the target image')
)
)
self.addParameter(
QgsProcessingParameterRasterLayer(
self.INPUT,
self.tr('The TARGET image for co-register'),
)
)
parameter = \
QgsProcessingParameterNumber(
self.NODATA,
self.tr('Nodata value for output bands'),
type=QgsProcessingParameterNumber.Double,
defaultValue=None,
optional=True
)
parameter.setFlags(parameter.flags() | QgsProcessingParameterDefinition.FlagAdvanced)
self.addParameter(parameter)
parameter = \
QgsProcessingParameterEnum(
self.RESAMPLING,
self.tr('Resampling method to use'),
options=[i[0] for i in self.resampling_methods],
defaultValue=0,
optional=False
)
parameter.setFlags(parameter.flags() | QgsProcessingParameterDefinition.FlagAdvanced)
self.addParameter(parameter)
self.addParameter(
QgsProcessingParameterRasterDestination(
self.OUTPUT,
self.tr('Output raster file co-registered')
)
)
def processAlgorithm(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
def get_inputfilepath(layer):
return os.path.realpath(layer.source().split("|layername")[0])
img_ref = get_inputfilepath(self.parameterAsRasterLayer(parameters, self.IMG_REF, context))
file_in = get_inputfilepath(self.parameterAsRasterLayer(parameters, self.INPUT, context))
if self.NODATA in parameters and parameters[self.NODATA] is not None:
dst_nodata = self.parameterAsDouble(parameters, self.NODATA, context)
else:
dst_nodata = None
resampling_method = self.resampling_methods[self.parameterAsEnum(parameters, self.RESAMPLING, context)][1]
output_file = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
output_driver_name = get_raster_driver_name_by_extension(output_file)
# fix save and load ENVI files
if output_driver_name == "ENVI":
output_file_envi = output_file.replace(".hdr", ".dat")
if context.willLoadLayerOnCompletion(output_file):
layer_detail = context.LayerDetails(os.path.basename(output_file_envi), context.project(),
os.path.basename(output_file_envi), QgsProcessingUtils.LayerHint.Raster)
context.setLayersToLoadOnCompletion({output_file_envi: layer_detail})
output_file = output_file_envi
feedback.pushInfo("Image to image Co-Registration:")
feedback.pushInfo("\nProcessing file: " + file_in)
# extract some info from IMG_REF
gdal_img_ref = gdal.Open(img_ref, gdal.GA_ReadOnly)
min_x, x_res, x_skew, max_y, y_skew, y_res = gdal_img_ref.GetGeoTransform()
max_x = min_x + (gdal_img_ref.RasterXSize * x_res)
min_y = max_y + (gdal_img_ref.RasterYSize * y_res)
x_res = abs(float(x_res))
y_res = abs(float(y_res))
# projection
dst_crs = gdal_img_ref.GetProjection()
# extract some info from INPUT
gdal_input = gdal.Open(file_in, gdal.GA_ReadOnly)
src_crs = gdal_input.GetProjection()
gdal.Warp(output_file, file_in, srcSRS=src_crs, dstSRS=dst_crs, xRes=x_res, yRes=y_res,
resampleAlg=resampling_method, srcNodata=dst_nodata, dstNodata=dst_nodata,
outputBounds=(min_x, min_y, max_x, max_y), targetAlignedPixels=False, format=output_driver_name)
feedback.pushInfo("--> done\n")
del gdal_img_ref, gdal_input
return {self.OUTPUT: output_file}
def processAlgorithmRasterio(self, parameters, context, feedback):
"""
Here is where the processing itself takes place.
"""
import rasterio
from osgeo import gdal
from rasterio import shutil as rio_shutil
from rasterio.vrt import WarpedVRT
def get_inputfilepath(layer):
return os.path.realpath(layer.source().split("|layername")[0])
img_ref = get_inputfilepath(self.parameterAsRasterLayer(parameters, self.IMG_REF, context))
file_in = get_inputfilepath(self.parameterAsRasterLayer(parameters, self.INPUT, context))
output_file = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
feedback.pushInfo("Co-registration:")
feedback.pushInfo("\nProcessing file: " + file_in)
# extract some info
with rasterio.open(img_ref) as target:
dst_crs = target.crs
x_res, y_res = target.res
vrt_options = {
'crs': target.crs,
'transform': target.transform,
'height': target.height,
'width': target.width,
'nodata': target.nodata
}
with rasterio.open(file_in) as src:
src_crs = src.crs
# ----- reprojection
if src_crs != dst_crs:
feedback.pushInfo("--> reprojection is required, to CRS: {}".format(dst_crs))
# reproject
reprj_file_tmp = tempfile.NamedTemporaryFile(suffix=".tif", delete=True)
reprj_file = reprj_file_tmp.name
resample = gdal.GRA_NearestNeighbour
gdal.Warp(reprj_file, file_in, srcSRS=src_crs, dstSRS=dst_crs, xRes=x_res, yRes=y_res, resampleAlg=resample)
else:
reprj_file_tmp = False
reprj_file = file_in
# ----- set extent and align pixels based on PU
feedback.pushInfo("--> set extent and align pixels")
if target.nodata is not None:
feedback.pushInfo("--> nodata as: {}".format(target.nodata))
with rasterio.open(reprj_file) as src:
with WarpedVRT(src, **vrt_options) as vrt:
rio_shutil.copy(vrt, output_file, driver='GTiff')
feedback.pushInfo("--> done\n")
if reprj_file_tmp:
reprj_file_tmp.close()
return {self.OUTPUT: output_file}