File: geometry.py

package info (click to toggle)
python-sigima 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 25,608 kB
  • sloc: python: 35,251; makefile: 3
file content (660 lines) | stat: -rw-r--r-- 21,365 bytes parent folder | download
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
# Copyright (c) DataLab Platform Developers, BSD 3-Clause license, see LICENSE file.

"""
Geometry computation module
---------------------------

This module implements geometric transformations and manipulations for images,
such as rotations, flips, resizing, axis swapping, binning, and padding.

Main features include:

- Rotation by arbitrary or fixed angles
- Horizontal and vertical flipping
- Resizing and binning of images
- Axis swapping and zero padding

These functions are useful for preparing and augmenting image data.
"""

# pylint: disable=invalid-name  # Allows short reference names like x, y, ...

# Note:
# ----
# - All `guidata.dataset.DataSet` parameter classes must also be imported
#   in the `sigima.params` module.
# - All functions decorated by `computation_function` must be imported in the upper
#   level `sigima.proc.image` module.

from __future__ import annotations

import guidata.dataset as gds
import numpy as np
import scipy.ndimage as spi

from sigima.config import _
from sigima.enums import BorderMode, Interpolation2DMethod
from sigima.objects.image import ImageObj
from sigima.proc.decorator import computation_function
from sigima.proc.image.base import dst_1_to_1, restore_data_outside_roi
from sigima.proc.image.transformations import transformer

# NOTE: Only parameter classes DEFINED in this module should be included in __all__.
# Parameter classes imported from other modules (like sigima.proc.base) should NOT
# be re-exported to avoid Sphinx cross-reference conflicts. The sigima.params module
# serves as the central API point that imports and re-exports all parameter classes.
__all__ = [
    "Resampling2DParam",
    "ResizeParam",
    "RotateParam",
    "TranslateParam",
    "UniformCoordsParam",
    "XYZCalibrateParam",
    "calibration",
    "fliph",
    "flipv",
    "resampling",
    "resize",
    "rotate",
    "rotate90",
    "rotate270",
    "set_uniform_coords",
    "translate",
    "transpose",
]


class TranslateParam(gds.DataSet):
    """Translate parameters"""

    dx = gds.FloatItem(_("X translation"), default=0.0)
    dy = gds.FloatItem(_("Y translation"), default=0.0)


@computation_function()
def translate(src: ImageObj, p: TranslateParam) -> ImageObj:
    """Translate data with :py:func:`scipy.ndimage.shift`

    Args:
        src: input image object
        p: parameters

    Returns:
        Output image object
    """
    dst = dst_1_to_1(src, "translate", f"dx={p.dx}, dy={p.dy}")
    if src.is_uniform_coords:
        dst.set_uniform_coords(dst.dx, dst.dy, dst.x0 + p.dx, dst.y0 + p.dy)
    else:
        dst.set_coords(src.xcoords + p.dx, src.ycoords + p.dy)
    transformer.transform_roi(dst, "translate", dx=p.dx, dy=p.dy)
    return dst


class RotateParam(gds.DataSet):
    """Rotate parameters"""

    prop = gds.ValueProp(False)

    angle = gds.FloatItem(f"{_('Angle')} (°)", default=0.0)
    mode = gds.ChoiceItem(_("Mode"), BorderMode, default=BorderMode.CONSTANT)
    cval = gds.FloatItem(
        _("cval"),
        default=0.0,
        help=_(
            "Value used for points outside the "
            "boundaries of the input if mode is "
            "'constant'"
        ),
    )
    reshape = gds.BoolItem(
        _("Reshape the output array"),
        default=False,
        help=_(
            "Reshape the output array "
            "so that the input array is "
            "contained completely in the output"
        ),
    )
    prefilter = gds.BoolItem(_("Prefilter the input image"), default=True).set_prop(
        "display", store=prop
    )
    order = gds.IntItem(
        _("Order"),
        default=3,
        min=0,
        max=5,
        help=_("Spline interpolation order"),
    ).set_prop("display", active=prop)


@computation_function()
def rotate(src: ImageObj, p: RotateParam) -> ImageObj:
    """Rotate data with :py:func:`scipy.ndimage.rotate`

    Args:
        src: input image object
        p: parameters

    Returns:
        Output image object
    """
    dst = dst_1_to_1(src, "rotate", f"α={p.angle:.3f}°, mode='{p.mode}'")
    dst.data = spi.rotate(
        src.data,
        p.angle,
        reshape=p.reshape,
        order=p.order,
        mode=p.mode,
        cval=p.cval,
        prefilter=p.prefilter,
    )
    dst.roi = None  # Reset ROI as it may change after rotation
    return dst


@computation_function()
def rotate90(src: ImageObj) -> ImageObj:
    """Rotate data 90° with :py:func:`numpy.rot90`

    Args:
        src: input image object

    Returns:
        Output image object
    """
    dst = dst_1_to_1(src, "rotate90")
    dst.data = np.rot90(src.data)
    transformer.transform_roi(dst, "rotate", angle=-np.pi / 2, center=(dst.xc, dst.yc))
    return dst


@computation_function()
def rotate270(src: ImageObj) -> ImageObj:
    """Rotate data 270° with :py:func:`numpy.rot90`

    Args:
        src: input image object

    Returns:
        Output image object
    """
    dst = dst_1_to_1(src, "rotate270")
    dst.data = np.rot90(src.data, 3)
    transformer.transform_roi(dst, "rotate", angle=np.pi / 2, center=(dst.xc, dst.yc))
    return dst


@computation_function()
def fliph(src: ImageObj) -> ImageObj:
    """Flip data horizontally with :py:func:`numpy.fliplr`

    Args:
        src: input image object

    Returns:
        Output image object
    """
    dst = dst_1_to_1(src, "fliph")
    dst.data = np.fliplr(src.data)
    transformer.transform_roi(dst, "fliph", cx=dst.xc)
    return dst


@computation_function()
def flipv(src: ImageObj) -> ImageObj:
    """Flip data vertically with :py:func:`numpy.flipud`

    Args:
        src: input image object

    Returns:
        Output image object
    """
    dst = dst_1_to_1(src, "flipv")
    dst.data = np.flipud(src.data)
    transformer.transform_roi(dst, "flipv", cy=dst.yc)
    return dst


class ResizeParam(gds.DataSet):
    """Resize parameters"""

    prop = gds.ValueProp(False)

    zoom = gds.FloatItem(_("Zoom"), default=1.0)
    mode = gds.ChoiceItem(_("Mode"), BorderMode, default=BorderMode.CONSTANT)
    cval = gds.FloatItem(
        _("cval"),
        default=0.0,
        help=_(
            "Value used for points outside the "
            "boundaries of the input if mode is "
            "'constant'"
        ),
    )
    prefilter = gds.BoolItem(_("Prefilter the input image"), default=True).set_prop(
        "display", store=prop
    )
    order = gds.IntItem(
        _("Order"),
        default=3,
        min=0,
        max=5,
        help=_("Spline interpolation order"),
    ).set_prop("display", active=prop)


@computation_function()
def resize(src: ImageObj, p: ResizeParam) -> ImageObj:
    """Zooming function with :py:func:`scipy.ndimage.zoom`

    Args:
        src: input image object
        p: parameters

    Returns:
        Output image object

    Raises:
        ValueError: if source image has non-uniform coordinates
    """
    if not src.is_uniform_coords:
        raise ValueError("Source image must have uniform coordinates for resampling")
    mode = p.mode
    dst = dst_1_to_1(src, "resize", f"zoom={p.zoom:.3f}")
    dst.data = spi.zoom(
        src.data,
        p.zoom,
        order=p.order,
        mode=mode,
        cval=p.cval,
        prefilter=p.prefilter,
    )
    if not np.isnan(dst.dx) and not np.isnan(dst.dy):
        dst.set_uniform_coords(dst.dx / p.zoom, dst.dy / p.zoom, dst.x0, dst.y0)
    return dst


@computation_function()
def transpose(src: ImageObj) -> ImageObj:
    """Transpose image with :py:func:`numpy.transpose`.

    Args:
        src: Input image object.

    Returns:
        Output image object.
    """
    dst = dst_1_to_1(src, "transpose")
    dst.data = np.transpose(src.data)
    dst.xlabel = src.ylabel
    dst.ylabel = src.xlabel
    dst.xunit = src.yunit
    dst.yunit = src.xunit
    if src.is_uniform_coords:
        dst.set_uniform_coords(src.dy, src.dx, src.y0, src.x0)
    else:
        dst.set_coords(src.ycoords, src.xcoords)
    transformer.transform_roi(dst, "transpose")
    return dst


class Resampling2DParam(gds.DataSet):
    """Resample parameters for 2D images"""

    # Output coordinate system
    xmin = gds.FloatItem(
        "X<sub>min</sub>",
        default=None,
        allow_none=True,
        help=_("Minimum X-coordinate of the output image"),
    )
    xmax = gds.FloatItem(
        "X<sub>max</sub>",
        default=None,
        allow_none=True,
        help=_("Maximum X-coordinate of the output image"),
    )
    ymin = gds.FloatItem(
        "Y<sub>min</sub>",
        default=None,
        allow_none=True,
        help=_("Minimum Y-coordinate of the output image"),
    )
    ymax = gds.FloatItem(
        "Y<sub>max</sub>",
        default=None,
        allow_none=True,
        help=_("Maximum Y-coordinate of the output image"),
    )

    # Mode selection
    _prop = gds.GetAttrProp("mode")
    _modes = (("dxy", _("Pixel size")), ("shape", _("Output shape")))
    mode = gds.ChoiceItem(_("Mode"), _modes, default="shape", radio=True).set_prop(
        "display", store=_prop
    )

    # Pixel size mode parameters
    dx = gds.FloatItem(
        "ΔX", default=None, allow_none=True, help=_("Pixel size in X direction")
    ).set_prop("display", active=gds.FuncProp(_prop, lambda x: x == "dxy"))
    dy = gds.FloatItem(
        "ΔY", default=None, allow_none=True, help=_("Pixel size in Y direction")
    ).set_prop("display", active=gds.FuncProp(_prop, lambda x: x == "dxy"))

    # Shape mode parameters
    width = gds.IntItem(
        _("Width"),
        default=None,
        allow_none=True,
        help=_("Output image width in pixels"),
    ).set_prop("display", active=gds.FuncProp(_prop, lambda x: x == "shape"))
    height = gds.IntItem(
        _("Height"),
        default=None,
        allow_none=True,
        help=_("Output image height in pixels"),
    ).set_prop("display", active=gds.FuncProp(_prop, lambda x: x == "shape"))

    # Interpolation parameters
    method = gds.ChoiceItem(
        _("Interpolation method"),
        Interpolation2DMethod,
        default=Interpolation2DMethod.LINEAR,
    )
    fill_value = gds.FloatItem(
        _("Fill value"),
        default=None,
        help=_(
            "Value to use for points outside the input image domain. "
            "If None, uses NaN for extrapolation."
        ),
        check=False,
    )

    def update_from_obj(self, obj: ImageObj) -> None:
        """Update parameters from an image object."""
        if self.xmin is None:
            self.xmin = obj.x0
        if self.xmax is None:
            self.xmax = obj.x0 + obj.width
        if self.ymin is None:
            self.ymin = obj.y0
        if self.ymax is None:
            self.ymax = obj.y0 + obj.height
        if self.dx is None:
            self.dx = obj.dx
        if self.dy is None:
            self.dy = obj.dy
        if self.width is None:
            self.width = obj.data.shape[1]
        if self.height is None:
            self.height = obj.data.shape[0]


@computation_function()
def resampling(src: ImageObj, p: Resampling2DParam) -> ImageObj:
    """Resample image to new coordinate grid using interpolation

    Args:
        src: source image
        p: resampling parameters

    Returns:
        Resampled image object

    Raises:
        ValueError: if source image has non-uniform coordinates
    """
    if not src.is_uniform_coords:
        raise ValueError("Source image must have uniform coordinates for resampling")

    # Set output range - use source image bounds if not specified
    output_xmin = p.xmin if p.xmin is not None else src.x0
    output_xmax = p.xmax if p.xmax is not None else src.x0 + src.width
    output_ymin = p.ymin if p.ymin is not None else src.y0
    output_ymax = p.ymax if p.ymax is not None else src.y0 + src.height

    # Calculate output grid dimensions and spacing
    output_width_phys = output_xmax - output_xmin
    output_height_phys = output_ymax - output_ymin

    # Determine output grid parameters
    method: Interpolation2DMethod = p.method
    if p.mode == "dxy":
        # Calculate dimensions from pixel sizes
        if p.dx is None or p.dy is None:
            raise ValueError("dx and dy must be specified in pixel size mode")
        output_width = int(np.ceil(output_width_phys / p.dx))
        output_height = int(np.ceil(output_height_phys / p.dy))
        output_dx = p.dx
        output_dy = p.dy
        fill_suffix = f", fill_value={p.fill_value}" if p.fill_value is not None else ""
        suffix = f"method={method.value}, dx={p.dx:.3f}, dy={p.dy:.3f}{fill_suffix}"
    else:
        # Use specified shape
        if p.width is None or p.height is None:
            raise ValueError("width and height must be specified in shape mode")
        output_width = p.width
        output_height = p.height
        output_dx = output_width_phys / p.width if p.width > 0 else src.dx
        output_dy = output_height_phys / p.height if p.height > 0 else src.dy
        fill_suffix = f", fill_value={p.fill_value}" if p.fill_value is not None else ""
        suffix = f"method={method.value}, size=({p.width}x{p.height}){fill_suffix}"

    # Create destination image
    dst = dst_1_to_1(src, "resample", suffix)

    # Output coordinates (physical) - ensure we sample pixel centers, not boundaries
    # For an image spanning [xmin, xmax], we want to sample at pixel centers
    # The pixel centers should be distributed within the range,
    # not including the exact endpoints
    if output_width > 1:
        out_x = np.linspace(
            output_xmin + output_dx / 2, output_xmax - output_dx / 2, output_width
        )
    else:
        out_x = np.array([(output_xmin + output_xmax) / 2])

    if output_height > 1:
        out_y = np.linspace(
            output_ymin + output_dy / 2, output_ymax - output_dy / 2, output_height
        )
    else:
        out_y = np.array([(output_ymin + output_ymax) / 2])

    # Create meshgrids
    out_X, out_Y = np.meshgrid(out_x, out_y, indexing="xy")

    # Convert interpolation method to scipy parameter
    if method == Interpolation2DMethod.LINEAR:
        order = 1
    elif method == Interpolation2DMethod.CUBIC:
        order = 3
    elif method == Interpolation2DMethod.NEAREST:
        order = 0
    else:
        order = 1  # fallback to linear

    # Convert physical coordinates to source image indices
    src_i = (out_X - src.x0) / src.dx
    src_j = (out_Y - src.y0) / src.dy

    # Perform interpolation using map_coordinates
    # Note: map_coordinates expects (j, i) order (row, col)
    coordinates = np.array([src_j.ravel(), src_i.ravel()])

    # Determine fill value for interpolation
    cval = p.fill_value if p.fill_value is not None else np.nan

    # For NaN fill values, we need to work with float data to preserve NaN
    # Convert to float if necessary to allow NaN representation
    if np.isnan(cval) and not np.issubdtype(src.data.dtype, np.floating):
        input_data = src.data.astype(np.float64)
    else:
        input_data = src.data

    # Interpolate
    resampled_data = spi.map_coordinates(
        input_data, coordinates, order=order, mode="constant", cval=cval, prefilter=True
    ).reshape(output_height, output_width)

    # Set output data and coordinate system
    dst.data = resampled_data
    dst.set_uniform_coords(output_dx, output_dy, output_xmin, output_ymin)

    return dst


class UniformCoordsParam(gds.DataSet):
    """Uniform coordinates parameters"""

    x0 = gds.FloatItem("X<sub>0</sub>", default=0.0, help=_("Origin X-axis coordinate"))
    y0 = gds.FloatItem("Y<sub>0</sub>", default=0.0, help=_("Origin Y-axis coordinate"))
    dx = gds.FloatItem("Δx", default=1.0, help=_("Pixel size along X-axis"))
    dy = gds.FloatItem("Δy", default=1.0, help=_("Pixel size along Y-axis"))

    def update_from_obj(self, obj: ImageObj) -> None:
        """Update default values from image object's non-uniform coordinates.

        This method extracts uniform coordinate approximations from non-uniform
        coordinate arrays, handling numerical precision issues that may arise
        from arrays created using linspace.

        Args:
            obj: Image object with non-uniform coordinates
        """
        if obj.is_uniform_coords:
            # Already uniform, just copy the values
            self.x0 = obj.x0
            self.y0 = obj.y0
            self.dx = obj.dx
            self.dy = obj.dy
        else:
            # Extract from non-uniform coordinates
            if obj.xcoords is not None and len(obj.xcoords) >= 2:
                self.x0 = float(obj.xcoords[0])
                # Calculate dx with rounding to handle numerical precision
                dx_raw = (obj.xcoords[-1] - obj.xcoords[0]) / (len(obj.xcoords) - 1)
                # Round to reasonable precision (12 decimal places)
                self.dx = float(np.round(dx_raw, 12))
            else:
                self.x0 = 0.0
                self.dx = 1.0

            if obj.ycoords is not None and len(obj.ycoords) >= 2:
                self.y0 = float(obj.ycoords[0])
                # Calculate dy with rounding to handle numerical precision
                dy_raw = (obj.ycoords[-1] - obj.ycoords[0]) / (len(obj.ycoords) - 1)
                # Round to reasonable precision (12 decimal places)
                self.dy = float(np.round(dy_raw, 12))
            else:
                self.y0 = 0.0
                self.dy = 1.0


@computation_function()
def set_uniform_coords(src: ImageObj, p: UniformCoordsParam) -> ImageObj:
    """Convert image to uniform coordinate system

    Args:
        src: input image object
        p: uniform coordinates parameters

    Returns:
        Output image object with uniform coordinates
    """
    dst = dst_1_to_1(src, "uniform_coords", f"dx={p.dx}, dy={p.dy}")
    dst.set_uniform_coords(p.dx, p.dy, p.x0, p.y0)
    return dst


class XYZCalibrateParam(gds.DataSet):
    """Image polynomial calibration parameters"""

    axes = (("x", _("X-axis")), ("y", _("Y-axis")), ("z", _("Z-axis")))
    axis = gds.ChoiceItem(_("Calibrate"), axes, default="z")
    a0 = gds.FloatItem("a<sub>0</sub>", default=0.0, help=_("Constant term"))
    a1 = gds.FloatItem("a<sub>1</sub>", default=1.0, help=_("Linear term"))
    a2 = gds.FloatItem("a<sub>2</sub>", default=0.0, help=_("Quadratic term"))
    a3 = gds.FloatItem("a<sub>3</sub>", default=0.0, help=_("Cubic term"))


@computation_function()
def calibration(src: ImageObj, p: XYZCalibrateParam) -> ImageObj:
    """Compute polynomial calibration

    Applies polynomial transformation: dst = a0 + a1*src + a2*src² + a3*src³

    Args:
        src: input image object
        p: calibration parameters

    Returns:
        Output image object
    """
    # Build polynomial description for metadata
    terms = []
    if p.a0 != 0.0:
        terms.append(f"{p.a0}")
    if p.a1 != 0.0:
        terms.append(f"{p.a1}*{p.axis}" if p.a1 != 1.0 else p.axis)
    if p.a2 != 0.0:
        terms.append(f"{p.a2}*{p.axis}²")
    if p.a3 != 0.0:
        terms.append(f"{p.a3}*{p.axis}³")
    poly_str = "+".join(terms) if terms else "0"

    dst = dst_1_to_1(src, "calibration", f"{p.axis}={poly_str}")

    shape = src.data.shape

    if p.axis == "z":
        # Apply polynomial to data values
        data = src.data.astype(float)
        dst.data = p.a0 + p.a1 * data + p.a2 * data**2 + p.a3 * data**3
        restore_data_outside_roi(dst, src)
    elif p.axis == "x":
        # For X-axis, polynomial calibration requires non-uniform coordinates
        # (unless it's linear but we don't special case that here)
        if src.is_uniform_coords:
            # Generate uniform coordinates array
            x_uniform = src.x0 + np.arange(src.data.shape[1]) * src.dx
            # Apply polynomial transformation
            x_new = p.a0 + p.a1 * x_uniform + p.a2 * x_uniform**2 + p.a3 * x_uniform**3
            # Set non-uniform coordinates
            ycoords = np.linspace(src.y0, src.y0 + src.dy * (shape[0] - 1), shape[0])
            dst.set_coords(x_new, ycoords)
        else:
            # Apply polynomial to existing non-uniform coordinates
            x_new = (
                p.a0
                + p.a1 * src.xcoords
                + p.a2 * src.xcoords**2
                + p.a3 * src.xcoords**3
            )
            dst.set_coords(x_new, dst.ycoords)
    elif p.axis == "y":
        # For Y-axis, polynomial calibration requires non-uniform coordinates
        if src.is_uniform_coords:
            # Generate uniform coordinates array
            y_uniform = src.y0 + np.arange(src.data.shape[0]) * src.dy
            # Apply polynomial transformation
            y_new = p.a0 + p.a1 * y_uniform + p.a2 * y_uniform**2 + p.a3 * y_uniform**3
            # Set non-uniform coordinates
            xcoords = np.linspace(src.x0, src.x0 + src.dx * (shape[1] - 1), shape[1])
            dst.set_coords(xcoords, y_new)
        else:
            # Apply polynomial to existing non-uniform coordinates
            y_new = (
                p.a0
                + p.a1 * src.ycoords
                + p.a2 * src.ycoords**2
                + p.a3 * src.ycoords**3
            )
            dst.set_coords(dst.xcoords, y_new)
    else:  # Should not happen
        raise ValueError(f"Unknown axis: {p.axis}")  # pragma: no cover
    return dst