Skip to content

vedo.volume

Volumes

core

Volume

Bases: VolumeAlgorithms, VolumeVisual, VolumeSlicingMixin

Class to describe dataset that are defined on "voxels", the 3D equivalent of 2D pixels.

Source code in vedo/volume/core.py
  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
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
class Volume(VolumeAlgorithms, VolumeVisual, VolumeSlicingMixin):
    """
    Class to describe dataset that are defined on "voxels",
    the 3D equivalent of 2D pixels.
    """

    def __init__(
        self,
        input_obj=None,
        dims=None,
        origin=None,
        spacing=None,
    ) -> None:
        """
        This class can be initialized with a numpy object, a `vtkImageData` or a list of 2D bmp files.

        Args:
            input_obj (str, vtkImageData, np.ndarray):
                input data can be a file name, a vtkImageData or a numpy object.
            origin (list):
                set volume origin coordinates
            spacing (list):
                voxel dimensions in x, y and z.
            dims (list):
                specify the dimensions of the volume.

        Note:
            If your input is an array ordered as ZYX you can permute it to XYZ with:
            `array = np.transpose(array, axes=[2, 1, 0])`.
            Alternatively you can also use the `Volume(zyx_array).permute_axes(2,1,0)` method.

        Examples:
            ```python
            from vedo import Volume
            vol = Volume("path/to/mydata/rec*.bmp")
            vol.show()
            ```

        Examples:
            - [numpy2volume1.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/numpy2volume1.py)

                ![](https://vedo.embl.es/images/volumetric/numpy2volume1.png)

            - [read_volume2.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/read_volume2.py)

                ![](https://vedo.embl.es/images/volumetric/read_volume2.png)

        .. note::
            if a `list` of values is used for `alphas` this is interpreted
            as a transfer function along the range of the scalar.
        """
        super().__init__()

        self.name = "Volume"
        self.filename = ""
        self.file_size = ""

        self.info = {}
        self.time = time.time()

        self.actor = vtki.vtkVolume()
        self.actor.retrieve_object = weak_ref_to(self)
        self.properties = self.actor.GetProperty()

        self.transform = None
        self.point_locator = None
        self.cell_locator = None
        self.line_locator = None

        ###################
        if isinstance(input_obj, (str, os.PathLike)):
            input_obj = os.fspath(input_obj)
            if "https://" in input_obj:
                input_obj = vedo.file_io.download(input_obj, verbose=False)  # fpath
            elif os.path.isfile(input_obj):
                self.filename = input_obj
            else:
                input_obj = sorted(glob.glob(input_obj))

        ###################
        inputtype = str(type(input_obj))

        # print('Volume inputtype', inputtype, c='b')

        if input_obj is None:
            img = vtki.vtkImageData()

        elif utils.is_sequence(input_obj):
            if isinstance(input_obj[0], str) and ".bmp" in input_obj[0].lower():
                # scan sequence of BMP files
                ima = vtki.new("ImageAppend")
                ima.SetAppendAxis(2)
                pb = utils.ProgressBar(0, len(input_obj))
                for i in pb.range():
                    f = input_obj[i]
                    if "_rec_spr" in f:  # OPT specific
                        continue
                    picr = vtki.new("BMPReader")
                    picr.SetFileName(f)
                    picr.Update()
                    mgf = vtki.new("ImageMagnitude")
                    mgf.SetInputData(picr.GetOutput())
                    mgf.Update()
                    ima.AddInputData(mgf.GetOutput())
                    pb.print("loading...")
                ima.Update()
                img = ima.GetOutput()

            else:
                if len(input_obj.shape) == 1:
                    varr = utils.numpy2vtk(input_obj)
                else:
                    varr = utils.numpy2vtk(input_obj.ravel(order="F"))
                varr.SetName("input_scalars")

                img = vtki.vtkImageData()
                if dims is not None:
                    img.SetDimensions(dims[2], dims[1], dims[0])
                else:
                    if len(input_obj.shape) == 1:
                        vedo.logger.error(
                            "must set dimensions (dims keyword) in Volume"
                        )
                        raise RuntimeError()
                    img.SetDimensions(input_obj.shape)
                img.GetPointData().AddArray(varr)
                img.GetPointData().SetActiveScalars(varr.GetName())

        elif isinstance(input_obj, vtki.vtkImageData):
            img = input_obj

        elif isinstance(input_obj, str):
            if "https://" in input_obj:
                input_obj = vedo.file_io.download(input_obj, verbose=False)
            img = vedo.file_io.loadImageData(input_obj)
            self.filename = str(input_obj)

        else:
            vedo.logger.error(f"cannot understand input type {inputtype}")
            return

        if dims is not None:
            img.SetDimensions(dims)

        if origin is not None:
            img.SetOrigin(origin)

        if spacing is not None:
            img.SetSpacing(spacing)

        self.dataset = img
        self.transform = None

        #####################################
        mapper = vtki.new("SmartVolumeMapper")
        mapper.SetInputData(img)
        self.actor.SetMapper(mapper)

        if img.GetPointData().GetScalars():
            if img.GetPointData().GetScalars().GetNumberOfComponents() == 1:
                self.properties.SetShade(True)
                self.properties.SetInterpolationType(1)
                self.cmap("RdBu_r")
                # make asigmoidal transfer function by default
                # xvalues = np.linspace(0, 1, 11)
                # sigmoid = np.clip(1/(1+np.exp(-20*(xvalues-0.5))), 0, 1)
                # print("Volume: setting sigmoidal transfer function", xvalues, sigmoid)
                # self.alpha(sigmoid)
                self.alpha(
                    [0.0, 0.001, 0.3, 0.5, 0.7, 0.8, 1.0]
                )  # we need to revert this..
                self.alpha_gradient(None)
                self.properties.SetScalarOpacityUnitDistance(1.0)

        self.pipeline = utils.OperationNode(
            "Volume", comment=f"dims={tuple(self.dimensions())}", c="#4cc9f0"
        )
        #######################################################################

    @property
    def mapper(self):
        """Return the underlying `vtkMapper` object."""
        return self.actor.GetMapper()

    @mapper.setter
    def mapper(self, mapper):
        """
        Set the underlying `vtkMapper` object.

        Args:
            mapper (str, vtkMapper):
                either 'gpu', 'opengl_gpu', 'fixed' or 'smart'
        """
        if isinstance(
            mapper, (vtki.get_class("Mapper"), vtki.get_class("ImageResliceMapper"))
        ):
            pass
        elif mapper is None:
            mapper = vtki.new("SmartVolumeMapper")
        elif "gpu" in mapper:
            mapper = vtki.new("GPUVolumeRayCastMapper")
        elif "opengl_gpu" in mapper:
            mapper = vtki.new("OpenGLGPUVolumeRayCastMapper")
        elif "smart" in mapper:
            mapper = vtki.new("SmartVolumeMapper")
        elif "fixed" in mapper:
            mapper = vtki.new("FixedPointVolumeRayCastMapper")
        else:
            print("Error unknown mapper type", [mapper])
            raise RuntimeError()
        mapper.SetInputData(self.dataset)
        self.actor.SetMapper(mapper)

    def c(self, *args, **kwargs) -> Self:
        """Deprecated. Use `Volume.cmap()` instead."""
        vedo.logger.warning("Volume.c() is deprecated, use Volume.cmap() instead")
        return self.cmap(*args, **kwargs)

    def _update(self, data, reset_locators=False):
        # reset_locators here is dummy
        self.dataset = data
        self.mapper.SetInputData(data)
        self.dataset.GetPointData().Modified()
        self.mapper.Modified()
        self.mapper.Update()
        return self

    def __str__(self):
        return summary_string(self, self._summary_rows(), color="cyan")

    def __repr__(self):
        return self.__str__()

    def __rich__(self):
        return summary_panel(self, self._summary_rows(), color="cyan")

    def _summary_rows(self):
        rows = [("name", str(self.name))]
        if self.filename:
            rows.append(("filename", str(self.filename)))
        rows.append(("dimensions", str(self.shape)))
        rows.append(("origin", utils.precision(self.origin(), 6)))
        rows.append(("center", utils.precision(self.center(), 6)))
        rows.append(("spacing", utils.precision(self.spacing(), 6)))
        rows.append(("bounds", format_bounds(self.bounds(), utils.precision)))
        rows.append(
            (
                "memory size",
                f"{int(self.dataset.GetActualMemorySize() / 1024 + 0.5)} MB",
            )
        )
        st = self.dataset.GetScalarTypeAsString()
        rows.append(("scalar size", f"{self.dataset.GetScalarSize()} bytes ({st})"))
        rows.append(("scalar range", str(self.dataset.GetScalarRange())))
        return rows

    def _repr_html_(self):
        """
        HTML representation of the Volume object for Jupyter Notebooks.

        Returns:
            HTML text with the image and some properties.
        """
        import io
        import base64
        from PIL import Image

        library_name = "vedo.volume.Volume"
        help_url = "https://vedo.embl.es/docs/vedo/volume.html"

        arr = self.thumbnail(azimuth=0, elevation=-60, zoom=1.4, axes=True)

        im = Image.fromarray(arr)
        buffered = io.BytesIO()
        im.save(buffered, format="PNG", quality=100)
        encoded = base64.b64encode(buffered.getvalue()).decode("utf-8")
        url = "data:image/png;base64," + encoded
        image = f"<img src='{url}'></img>"

        # statisitics
        bounds = "<br/>".join(
            [
                utils.precision(min_x, 4) + " ... " + utils.precision(max_x, 4)
                for min_x, max_x in zip(self.bounds()[::2], self.bounds()[1::2])
            ]
        )

        help_text = ""
        if self.name:
            help_text += f"<b> {self.name}: &nbsp&nbsp</b>"
        help_text += (
            '<b><a href="' + help_url + '" target="_blank">' + library_name + "</a></b>"
        )
        if self.filename:
            dots = ""
            if len(self.filename) > 30:
                dots = "..."
            help_text += f"<br/><code><i>({dots}{self.filename[-30:]})</i></code>"

        pdata = ""
        if self.dataset.GetPointData().GetScalars():
            if self.dataset.GetPointData().GetScalars().GetName():
                name = self.dataset.GetPointData().GetScalars().GetName()
                pdata = (
                    "<tr><td><b> point data array </b></td><td>" + name + "</td></tr>"
                )

        cdata = ""
        if self.dataset.GetCellData().GetScalars():
            if self.dataset.GetCellData().GetScalars().GetName():
                name = self.dataset.GetCellData().GetScalars().GetName()
                cdata = (
                    "<tr><td><b> voxel data array </b></td><td>" + name + "</td></tr>"
                )

        img = self.dataset

        allt = [
            "<table>",
            "<tr>",
            "<td>",
            image,
            "</td>",
            "<td style='text-align: center; vertical-align: center;'><br/>",
            help_text,
            "<table>",
            "<tr><td><b> bounds </b> <br/> (x/y/z) </td><td>"
            + str(bounds)
            + "</td></tr>",
            "<tr><td><b> dimensions </b></td><td>"
            + str(img.GetDimensions())
            + "</td></tr>",
            "<tr><td><b> voxel spacing </b></td><td>"
            + utils.precision(img.GetSpacing(), 3)
            + "</td></tr>",
            "<tr><td><b> in memory size </b></td><td>"
            + str(int(img.GetActualMemorySize() / 1024))
            + "MB</td></tr>",
            pdata,
            cdata,
            "<tr><td><b> scalar range </b></td><td>"
            + utils.precision(img.GetScalarRange(), 4)
            + "</td></tr>",
            "</table>",
            "</table>",
        ]
        return "\n".join(allt)

    def copy(self, deep=True) -> Volume:
        """Return a copy of the Volume. Alias of `clone()`."""
        return self.clone(deep=deep)

    def clone(self, deep=True) -> Volume:
        """Return a clone copy of the Volume. Alias of `copy()`."""
        if deep:
            newimg = vtki.vtkImageData()
            newimg.CopyStructure(self.dataset)
            newimg.CopyAttributes(self.dataset)
            newvol = Volume(newimg)
        else:
            newvol = Volume(self.dataset)

        prop = vtki.vtkVolumeProperty()
        prop.DeepCopy(self.properties)
        newvol.actor.SetProperty(prop)
        newvol.properties = prop

        newvol.pipeline = utils.OperationNode(
            "clone", parents=[self], c="#bbd0ff", shape="diamond"
        )
        return newvol

    def astype(self, dtype: str | int) -> Self:
        """
        Reset the type of the scalars array.

        Args:
            dtype (str):
                the type of the scalars array in
                `["int8", "uint8", "int16", "uint16", "int32", "uint32", "float32", "float64"]`
        """
        if dtype in [
            "int8",
            "uint8",
            "int16",
            "uint16",
            "int32",
            "uint32",
            "float32",
            "float64",
        ]:
            caster = vtki.new("ImageCast")
            caster.SetInputData(self.dataset)
            caster.SetOutputScalarType(int(vtki.array_types[dtype]))
            caster.ClampOverflowOn()
            caster.Update()
            self._update(caster.GetOutput())
            self.pipeline = utils.OperationNode(
                f"astype({dtype})", parents=[self], c="#4cc9f0"
            )
        else:
            vedo.logger.error(f"astype(): unknown type {dtype}")
            raise ValueError()
        return self

    def component_weight(self, i: int, weight: float) -> Self:
        """Set the scalar component weight in range [0,1]."""
        self.properties.SetComponentWeight(i, weight)
        return self

    def warp(
        self,
        source: vedo.Points | list,
        target: vedo.Points | list,
        sigma=1,
        mode="3d",
        fit=True,
    ) -> Self:
        """
        Warp volume scalars within a Volume by specifying
        source and target sets of points.

        Args:
            source (Points, list):
                the list of source points
            target (Points, list):
                the list of target points
            fit (bool):
                fit/adapt the old bounding box to the warped geometry
        """
        if isinstance(source, vedo.Points):
            source = source.coordinates
        if isinstance(target, vedo.Points):
            target = target.coordinates

        NLT = transformations.NonLinearTransform()
        NLT.source_points = source
        NLT.target_points = target
        NLT.sigma = sigma
        NLT.mode = mode

        self.apply_transform(NLT, fit=fit)
        self.pipeline = utils.OperationNode("warp", parents=[self], c="#4cc9f0")
        return self

    def apply_transform(
        self,
        T: transformations.LinearTransform | transformations.NonLinearTransform,
        fit=True,
        interpolation="cubic",
    ) -> Self:
        """
        Apply a transform to the scalars in the volume.

        Args:
            T (LinearTransform, NonLinearTransform):
                The transformation to be applied
            fit (bool):
                fit/adapt the old bounding box to the modified geometry
            interpolation (str):
                one of the following: "nearest", "linear", "cubic"
        """
        if utils.is_sequence(T):
            T = transformations.LinearTransform(T)

        TI = T.compute_inverse()

        reslice = vtki.new("ImageReslice")
        reslice.SetInputData(self.dataset)
        reslice.SetResliceTransform(TI.T)
        reslice.SetOutputDimensionality(3)
        if "lin" in interpolation.lower():
            reslice.SetInterpolationModeToLinear()
        elif "near" in interpolation.lower():
            reslice.SetInterpolationModeToNearestNeighbor()
        elif "cubic" in interpolation.lower():
            reslice.SetInterpolationModeToCubic()
        else:
            vedo.logger.error(
                f"in apply_transform: unknown interpolation mode {interpolation}"
            )
            raise ValueError()
        reslice.SetAutoCropOutput(fit)
        reslice.Update()
        self._update(reslice.GetOutput())
        self.transform = T
        self.pipeline = utils.OperationNode(
            "apply_transform", parents=[self], c="#4cc9f0"
        )
        return self

    def imagedata(self) -> vtki.vtkImageData:
        """
        DEPRECATED:
        Use `Volume.dataset` instead.

        Return the underlying `vtkImagaData` object.
        """
        print("Volume.imagedata() is deprecated, use Volume.dataset instead")
        return self.dataset

    def modified(self) -> Self:
        """
        Mark the object as modified.

        Examples:

        - [numpy2volume0.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/numpy2volume0.py)
        """
        scals = self.dataset.GetPointData().GetScalars()
        if scals:
            scals.Modified()
        return self

    def tonumpy(self) -> np.ndarray:
        """
        Get read-write access to voxels of a Volume object as a numpy array.

        When you set values in the output image, you don't want numpy to reallocate the array
        but instead set values in the existing array, so use the [:] operator.

        Examples:
            `arr[:] = arr*2 + 15`

        If the array is modified add a call to:
        `volume.modified()`
        when all your modifications are completed.
        """
        narray_shape = tuple(reversed(self.dataset.GetDimensions()))

        scals = self.dataset.GetPointData().GetScalars()
        comps = scals.GetNumberOfComponents()
        if comps == 1:
            narray = utils.vtk2numpy(scals).reshape(narray_shape)
            narray = np.transpose(narray, axes=[2, 1, 0])
        else:
            narray = utils.vtk2numpy(scals).reshape(*narray_shape, comps)
            narray = np.transpose(narray, axes=[2, 1, 0, 3])

        # narray = utils.vtk2numpy(self.dataset.GetPointData().GetScalars()).reshape(narray_shape)
        # narray = np.transpose(narray, axes=[2, 1, 0])
        return narray

    @property
    def shape(self) -> np.ndarray:
        """Return the nr. of voxels in the 3 dimensions."""
        return np.array(self.dataset.GetDimensions())

    def dimensions(self) -> np.ndarray:
        """Return the nr. of voxels in the 3 dimensions."""
        return np.array(self.dataset.GetDimensions())

    def scalar_range(self) -> np.ndarray:
        """Return the range of the scalar values."""
        return np.array(self.dataset.GetScalarRange())

    def spacing(self, s=None) -> Self | Iterable[float]:
        """Set/get the voxels size in the 3 dimensions."""
        if s is not None:
            self.dataset.SetSpacing(s)
            return self
        return np.array(self.dataset.GetSpacing())

    def origin(self, s=None) -> Self | Iterable[float]:
        """
        Set/get the origin of the volumetric dataset.

        The origin is the position in world coordinates of the point index (0,0,0).
        This point does not have to be part of the dataset, in other words,
        the dataset extent does not have to start at (0,0,0) and the origin
        can be outside of the dataset bounding box.
        The origin plus spacing determine the position in space of the points.
        """
        if s is not None:
            self.dataset.SetOrigin(s)
            return self
        return np.array(self.dataset.GetOrigin())

    def pos(self, p=None) -> Self | Iterable[float]:
        """Set/get the position of the volumetric dataset."""
        if p is not None:
            self.origin(p)
            return self
        return self.origin()

    def center(self) -> np.ndarray:
        """Get the center of the volumetric dataset."""
        # note that this does not have the set method like origin and spacing
        return np.array(self.dataset.GetCenter())

    def shift(self, dx=0, dy=0, dz=0) -> Self:
        """Shift the volumetric dataset by a vector. Same as `PointAlgorithms.shift()`."""
        if utils.is_sequence(dx):
            dx = utils.make3d(dx)
            dx, dy, dz = dx
        self.origin(self.origin() + np.array([dx, dy, dz]))
        return self

    def rotate_x(self, angle: float, rad=False, around=None) -> Self:
        """
        Rotate around x-axis. If angle is in radians set `rad=True`.

        Use `around` to define a pivoting point.
        """
        if angle == 0:
            return self
        LT = transformations.LinearTransform().rotate_x(angle, rad, around)
        return self.apply_transform(LT, fit=True, interpolation="linear")

    def rotate_y(self, angle: float, rad=False, around=None) -> Self:
        """
        Rotate around y-axis. If angle is in radians set `rad=True`.

        Use `around` to define a pivoting point.
        """
        if angle == 0:
            return self
        LT = transformations.LinearTransform().rotate_y(angle, rad, around)
        return self.apply_transform(LT, fit=True, interpolation="linear")

    def rotate_z(self, angle: float, rad=False, around=None) -> Self:
        """
        Rotate around z-axis. If angle is in radians set `rad=True`.

        Use `around` to define a pivoting point.
        """
        if angle == 0:
            return self
        LT = transformations.LinearTransform().rotate_z(angle, rad, around)
        return self.apply_transform(LT, fit=True, interpolation="linear")

    def get_cell_from_ijk(self, ijk: list) -> int:
        """
        Get the voxel id number at the given ijk coordinates.

        Args:
            ijk (list):
                the ijk coordinates of the voxel
        """
        return self.dataset.ComputeCellId(ijk)

    def get_point_from_ijk(self, ijk: list) -> int:
        """
        Get the point id number at the given ijk coordinates.

        Args:
            ijk (list):
                the ijk coordinates of the voxel
        """
        return self.dataset.ComputePointId(ijk)

    def permute_axes(self, x: int, y: int, z: int) -> Self:
        """
        Reorder the axes of the Volume by specifying
        the input axes which are supposed to become the new X, Y, and Z.
        """
        imp = vtki.new("ImagePermute")
        imp.SetFilteredAxes(x, y, z)
        imp.SetInputData(self.dataset)
        imp.Update()
        self._update(imp.GetOutput())
        self.pipeline = utils.OperationNode(
            f"permute_axes({(x, y, z)})", parents=[self], c="#4cc9f0"
        )
        return self

    def resample(self, new_spacing: list[float], interpolation=1) -> Self:
        """
        Resamples a `Volume` to be larger or smaller.

        This method modifies the spacing of the input.
        Linear interpolation is used to resample the data.

        Args:
            new_spacing (list):
                a list of 3 new spacings for the 3 axes
            interpolation (int):
                0=nearest_neighbor, 1=linear, 2=cubic
        """
        rsp = vtki.new("ImageResample")
        rsp.SetInputData(self.dataset)
        oldsp = self.spacing()
        for i in range(3):
            if oldsp[i] != new_spacing[i]:
                rsp.SetAxisOutputSpacing(i, new_spacing[i])
        rsp.InterpolateOn()
        rsp.SetInterpolationMode(interpolation)
        rsp.OptimizationOn()
        rsp.Update()
        self._update(rsp.GetOutput())
        self.pipeline = utils.OperationNode(
            "resample",
            comment=f"spacing: {tuple(new_spacing)}",
            parents=[self],
            c="#4cc9f0",
        )
        return self

    def threshold(
        self, above=None, below=None, replace=None, replace_value=None
    ) -> Self:
        """
        Binary or continuous volume thresholding.
        Find the voxels that contain a value above/below the input values
        and replace them with a new value (default is 0).
        """
        th = vtki.new("ImageThreshold")
        th.SetInputData(self.dataset)

        # sanity checks
        if above is not None and below is not None:
            if above == below:
                return self
            if above > below:
                vedo.logger.warning("in volume.threshold(), above > below, skip.")
                return self

        ## cases
        if below is not None and above is not None:
            th.ThresholdBetween(above, below)

        elif above is not None:
            th.ThresholdByUpper(above)

        elif below is not None:
            th.ThresholdByLower(below)

        ##
        if replace is not None:
            th.SetReplaceIn(True)
            th.SetInValue(replace)
        else:
            th.SetReplaceIn(False)

        if replace_value is not None:
            th.SetReplaceOut(True)
            th.SetOutValue(replace_value)
        else:
            th.SetReplaceOut(False)

        th.Update()
        self._update(th.GetOutput())
        self.pipeline = utils.OperationNode("threshold", parents=[self], c="#4cc9f0")
        return self

    def crop(
        self,
        left=None,
        right=None,
        back=None,
        front=None,
        bottom=None,
        top=None,
        VOI=(),
    ) -> Self:
        """
        Crop a `Volume` object.

        Args:
            left (float):
                fraction to crop from the left plane (negative x)
            right (float):
                fraction to crop from the right plane (positive x)
            back (float):
                fraction to crop from the back plane (negative y)
            front (float):
                fraction to crop from the front plane (positive y)
            bottom (float):
                fraction to crop from the bottom plane (negative z)
            top (float):
                fraction to crop from the top plane (positive z)
            VOI (list):
                extract Volume Of Interest expressed in voxel numbers

        Examples:
            `vol.crop(VOI=(xmin, xmax, ymin, ymax, zmin, zmax)) # all integers nrs`
        """
        extractVOI = vtki.new("ExtractVOI")
        extractVOI.SetInputData(self.dataset)

        if VOI:
            extractVOI.SetVOI(VOI)
        else:
            d = self.dataset.GetDimensions()
            bx0, bx1, by0, by1, bz0, bz1 = 0, d[0] - 1, 0, d[1] - 1, 0, d[2] - 1
            if left is not None:
                bx0 = int((d[0] - 1) * left)
            if right is not None:
                bx1 = int((d[0] - 1) * (1 - right))
            if back is not None:
                by0 = int((d[1] - 1) * back)
            if front is not None:
                by1 = int((d[1] - 1) * (1 - front))
            if bottom is not None:
                bz0 = int((d[2] - 1) * bottom)
            if top is not None:
                bz1 = int((d[2] - 1) * (1 - top))
            extractVOI.SetVOI(bx0, bx1, by0, by1, bz0, bz1)
        extractVOI.Update()
        self._update(extractVOI.GetOutput())

        self.pipeline = utils.OperationNode(
            "crop",
            parents=[self],
            c="#4cc9f0",
            comment=f"dims={tuple(self.dimensions())}",
        )
        return self

    def append(self, *volumes, axis="z", preserve_extents=False) -> Self:
        """
        Take the components from multiple inputs and merges them into one output.
        Except for the append axis, all inputs must have the same extent.
        All inputs must have the same number of scalar components.
        The output has the same origin and spacing as the first input.
        The origin and spacing of all other inputs are ignored.
        All inputs must have the same scalar type.

        Args:
            axis (int, str):
                axis expanded to hold the multiple images
            preserve_extents (bool):
                if True, the extent of the inputs is used to place
                the image in the output. The whole extent of the output is the union of the input
                whole extents. Any portion of the output not covered by the inputs is set to zero.
                The origin and spacing is taken from the first input.

        Examples:
            ```python
            from vedo import Volume, dataurl
            vol = Volume(dataurl+'embryo.tif')
            vol.append(vol, axis='x').show().close()
            ```
            ![](https://vedo.embl.es/images/feats/volume_append.png)
        """
        ima = vtki.new("ImageAppend")
        ima.SetInputData(self.dataset)
        # if not utils.is_sequence(volumes):
        #     volumes = [volumes]
        for volume in volumes:
            if isinstance(volume, vtki.vtkImageData):
                ima.AddInputData(volume)
            else:
                ima.AddInputData(volume.dataset)
        ima.SetPreserveExtents(preserve_extents)
        if axis == "x":
            axis = 0
        elif axis == "y":
            axis = 1
        elif axis == "z":
            axis = 2
        ima.SetAppendAxis(axis)
        ima.Update()
        self._update(ima.GetOutput())

        self.pipeline = utils.OperationNode(
            "append",
            parents=[self, *volumes],
            c="#4cc9f0",
            comment=f"dims={tuple(self.dimensions())}",
        )
        return self

    def pad(self, voxels=10, value=0) -> Self:
        """
        Add the specified number of voxels at the `Volume` borders.
        Voxels can be a list formatted as `[nx0, nx1, ny0, ny1, nz0, nz1]`.

        Args:
            voxels (int, list):
                number of voxels to be added (or a list of length 4)
            value (int):
                intensity value (gray-scale color) of the padding

        Examples:
            ```python
            from vedo import Volume, dataurl, show
            iso = Volume(dataurl+'embryo.tif').isosurface()
            vol = iso.binarize(spacing=(100, 100, 100)).pad(10)
            vol.dilate([15,15,15])
            show(iso, vol.isosurface(), N=2, axes=1)
            ```
            ![](https://vedo.embl.es/images/volumetric/volume_pad.png)
        """
        x0, x1, y0, y1, z0, z1 = self.dataset.GetExtent()
        pf = vtki.new("ImageConstantPad")
        pf.SetInputData(self.dataset)
        pf.SetConstant(value)
        if utils.is_sequence(voxels):
            pf.SetOutputWholeExtent(
                x0 - voxels[0],
                x1 + voxels[1],
                y0 - voxels[2],
                y1 + voxels[3],
                z0 - voxels[4],
                z1 + voxels[5],
            )
        else:
            pf.SetOutputWholeExtent(
                x0 - voxels,
                x1 + voxels,
                y0 - voxels,
                y1 + voxels,
                z0 - voxels,
                z1 + voxels,
            )
        pf.Update()
        self._update(pf.GetOutput())
        self.pipeline = utils.OperationNode(
            "pad", comment=f"{voxels} voxels", parents=[self], c="#f28482"
        )
        return self

    def resize(self, newdims: list[int] = (), newspacing: list[float] = ()) -> Self:
        """
        Increase or reduce the number of voxels of a Volume with interpolation.
        User must specify either the new desired dimensions or the new spacing in x, y and z.
        """
        rsz = vtki.new("ImageResize")
        rsz.SetInputData(self.dataset)
        if len(newdims):
            rsz.SetResizeMethodToOutputDimensions()
            rsz.SetOutputDimensions(newdims)
        elif len(newspacing) and len(newdims) == 0:
            rsz.SetResizeMethodToOutputSpacing()
            rsz.SetOutputSpacing(newspacing)
        else:
            raise TypeError
        rsz.Update()
        self.dataset = rsz.GetOutput()
        self._update(self.dataset)
        self.pipeline = utils.OperationNode(
            "resize",
            parents=[self],
            c="#4cc9f0",
            comment=f"dims={tuple(self.dimensions())}",
        )
        return self

    def normalize(self) -> Self:
        """Normalize that scalar components for each point."""
        norm = vtki.new("ImageNormalize")
        norm.SetInputData(self.dataset)
        norm.Update()
        self._update(norm.GetOutput())
        self.pipeline = utils.OperationNode("normalize", parents=[self], c="#4cc9f0")
        return self

    def mirror(self, axis="x") -> Self:
        """
        Mirror flip along one of the cartesian axes.
        """
        img = self.dataset

        ff = vtki.new("ImageFlip")
        ff.SetInputData(img)
        if axis.lower() == "x":
            ff.SetFilteredAxis(0)
        elif axis.lower() == "y":
            ff.SetFilteredAxis(1)
        elif axis.lower() == "z":
            ff.SetFilteredAxis(2)
        else:
            vedo.logger.error("mirror must be set to either x, y, z or n")
            raise RuntimeError()
        ff.Update()
        self._update(ff.GetOutput())
        self.pipeline = utils.OperationNode(
            f"mirror {axis}", parents=[self], c="#4cc9f0"
        )
        return self

    def operation(self, operation: str, volume2=None) -> Volume:
        """
        Perform operations with `Volume` objects.
        Keyword `volume2` can be a constant `float`.

        Possible operations are:
        ```
        and, or, xor, nand, nor, not,
        +, -, /, 1/x, sin, cos, exp, log,
        abs, **2, sqrt, min, max, atan, atan2, median,
        mag, dot, gradient, divergence, laplacian.
        ```

        Examples:
        ```py
        from vedo import Box, show
        vol1 = Box(size=(35,10, 5)).binarize()
        vol2 = Box(size=( 5,10,35)).binarize()
        vol = vol1.operation("xor", vol2)
        show([[vol1, vol2],
            ["vol1 xor vol2", vol]],
            N=2, axes=1, viewup="z",
        ).close()
        ```

        Note:
            For logic operations, the two volumes must have the same bounds.
            If they do not, a larger image is created to contain both and the
            volumes are resampled onto the larger image before the operation is
            performed. This can be slow and memory intensive.

        See also:
            - [volume_operations.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/volume_operations.py)
        """
        op = operation.lower()
        image1 = self.dataset

        if op in ["and", "or", "xor", "nand", "nor"]:
            if not np.allclose(image1.GetBounds(), volume2.dataset.GetBounds()):
                # create a larger image to contain both
                b1 = image1.GetBounds()
                b2 = volume2.dataset.GetBounds()
                b = [
                    min(b1[0], b2[0]),
                    max(b1[1], b2[1]),
                    min(b1[2], b2[2]),
                    max(b1[3], b2[3]),
                    min(b1[4], b2[4]),
                    max(b1[5], b2[5]),
                ]
                dims1 = image1.GetDimensions()
                dims2 = volume2.dataset.GetDimensions()
                dims = [
                    max(dims1[0], dims2[0]),
                    max(dims1[1], dims2[1]),
                    max(dims1[2], dims2[2]),
                ]

                image = vtki.vtkImageData()
                image.SetDimensions(dims)
                spacing = (
                    (b[1] - b[0]) / dims[0],
                    (b[3] - b[2]) / dims[1],
                    (b[5] - b[4]) / dims[2],
                )
                image.SetSpacing(spacing)
                image.SetOrigin((b[0], b[2], b[4]))
                image.AllocateScalars(vtki.VTK_UNSIGNED_CHAR, 1)
                image.GetPointData().GetScalars().FillComponent(0, 0)

                interp1 = vtki.new("ImageReslice")
                interp1.SetInputData(image1)
                interp1.SetOutputExtent(image.GetExtent())
                interp1.SetOutputOrigin(image.GetOrigin())
                interp1.SetOutputSpacing(image.GetSpacing())
                interp1.SetInterpolationModeToNearestNeighbor()
                interp1.Update()
                imageA = interp1.GetOutput()

                interp2 = vtki.new("ImageReslice")
                interp2.SetInputData(volume2.dataset)
                interp2.SetOutputExtent(image.GetExtent())
                interp2.SetOutputOrigin(image.GetOrigin())
                interp2.SetOutputSpacing(image.GetSpacing())
                interp2.SetInterpolationModeToNearestNeighbor()
                interp2.Update()
                imageB = interp2.GetOutput()

            else:
                imageA = image1
                imageB = volume2.dataset

            img_logic = vtki.new("ImageLogic")
            img_logic.SetInput1Data(imageA)
            img_logic.SetInput2Data(imageB)
            img_logic.SetOperation(["and", "or", "xor", "nand", "nor"].index(op))
            img_logic.Update()

            out_vol = Volume(img_logic.GetOutput())
            out_vol.pipeline = utils.OperationNode(
                "operation",
                comment=f"{op}",
                parents=[self, volume2],
                c="#4cc9f0",
                shape="cylinder",
            )
            return out_vol  ######################################################

        if volume2 and isinstance(volume2, Volume):
            # assert image1.GetScalarType() == volume2.dataset.GetScalarType(), "volumes have different scalar types"
            # make sure they have the same bounds:
            if not np.allclose(image1.GetBounds(), volume2.dataset.GetBounds()):
                raise ValueError("volumes have different bounds")
            # make sure they have the same spacing:
            if not np.allclose(image1.GetSpacing(), volume2.dataset.GetSpacing()):
                raise ValueError("volumes have different spacing")
            # make sure they have the same origin:
            if not np.allclose(image1.GetOrigin(), volume2.dataset.GetOrigin()):
                raise ValueError("volumes have different origin")

        mf = None
        if op in ["median"]:
            mf = vtki.new("ImageMedian3D")
            mf.SetInputData(image1)
        elif op in ["mag"]:
            mf = vtki.new("ImageMagnitude")
            mf.SetInputData(image1)
        elif op in ["dot"]:
            mf = vtki.new("ImageDotProduct")
            mf.SetInput1Data(image1)
            mf.SetInput2Data(volume2.dataset)
        elif op in ["grad", "gradient"]:
            mf = vtki.new("ImageGradient")
            mf.SetDimensionality(3)
            mf.SetInputData(image1)
        elif op in ["div", "divergence"]:
            mf = vtki.new("ImageDivergence")
            mf.SetInputData(image1)
        elif op in ["laplacian"]:
            mf = vtki.new("ImageLaplacian")
            mf.SetDimensionality(3)
            mf.SetInputData(image1)
        elif op in ["not"]:
            mf = vtki.new("ImageLogic")
            mf.SetInput1Data(image1)
            mf.SetOperation(4)

        if mf is not None:
            mf.Update()
            vol = Volume(mf.GetOutput())
            vol.pipeline = utils.OperationNode(
                "operation",
                comment=f"{op}",
                parents=[self],
                c="#4cc9f0",
                shape="cylinder",
            )
            return vol  ######################################################

        mat = vtki.new("ImageMathematics")
        mat.SetInput1Data(image1)

        K = None

        if utils.is_number(volume2):
            K = volume2
            mat.SetConstantK(K)
            mat.SetConstantC(K)

        elif volume2 is not None:  # assume image2 is a constant value
            mat.SetInput2Data(volume2.dataset)

        # ###########################
        if op in ["+", "add", "plus"]:
            if K:
                mat.SetOperationToAddConstant()
            else:
                mat.SetOperationToAdd()

        elif op in ["-", "subtract", "minus"]:
            if K:
                mat.SetConstantC(-float(K))
                mat.SetOperationToAddConstant()
            else:
                mat.SetOperationToSubtract()

        elif op in ["*", "multiply", "times"]:
            if K:
                mat.SetOperationToMultiplyByK()
            else:
                mat.SetOperationToMultiply()

        elif op in ["/", "divide"]:
            if K:
                mat.SetConstantK(1.0 / K)
                mat.SetOperationToMultiplyByK()
            else:
                mat.SetOperationToDivide()

        elif op in ["1/x", "invert"]:
            mat.SetOperationToInvert()
        elif op in ["sin"]:
            mat.SetOperationToSin()
        elif op in ["cos"]:
            mat.SetOperationToCos()
        elif op in ["exp"]:
            mat.SetOperationToExp()
        elif op in ["log"]:
            mat.SetOperationToLog()
        elif op in ["abs"]:
            mat.SetOperationToAbsoluteValue()
        elif op in ["**2", "square"]:
            mat.SetOperationToSquare()
        elif op in ["sqrt", "sqr"]:
            mat.SetOperationToSquareRoot()
        elif op in ["min"]:
            mat.SetOperationToMin()
        elif op in ["max"]:
            mat.SetOperationToMax()
        elif op in ["atan"]:
            mat.SetOperationToATAN()
        elif op in ["atan2"]:
            mat.SetOperationToATAN2()
        else:
            vedo.logger.error(f"unknown operation {operation}")
            raise RuntimeError()
        mat.Update()

        self._update(mat.GetOutput())

        self.pipeline = utils.OperationNode(
            "operation",
            comment=f"{op}",
            parents=[self, volume2],
            shape="cylinder",
            c="#4cc9f0",
        )
        return self

    def frequency_pass_filter(self, low_cutoff=None, high_cutoff=None, order=1) -> Self:
        """
        Low-pass and high-pass filtering become trivial in the frequency domain.
        A portion of the pixels/voxels are simply masked or attenuated.
        This function applies a high pass Butterworth filter that attenuates the
        frequency domain image.

        The gradual attenuation of the filter is important.
        A simple high-pass filter would simply mask a set of pixels in the frequency domain,
        but the abrupt transition would cause a ringing effect in the spatial domain.

        Args:
            low_cutoff (list):
                the cutoff frequencies for x, y and z
            high_cutoff (list):
                the cutoff frequencies for x, y and z
            order (int):
                order determines sharpness of the cutoff curve
        """
        # https://lorensen.github.io/VTKExamples/site/Cxx/ImageProcessing/IdealHighPass
        fft = vtki.new("ImageFFT")
        fft.SetInputData(self.dataset)
        fft.Update()
        out = fft.GetOutput()

        if high_cutoff:
            blp = vtki.new("ImageButterworthLowPass")
            blp.SetInputData(out)
            blp.SetCutOff(high_cutoff)
            blp.SetOrder(order)
            blp.Update()
            out = blp.GetOutput()

        if low_cutoff:
            bhp = vtki.new("ImageButterworthHighPass")
            bhp.SetInputData(out)
            bhp.SetCutOff(low_cutoff)
            bhp.SetOrder(order)
            bhp.Update()
            out = bhp.GetOutput()

        rfft = vtki.new("ImageRFFT")
        rfft.SetInputData(out)
        rfft.Update()

        ecomp = vtki.new("ImageExtractComponents")
        ecomp.SetInputData(rfft.GetOutput())
        ecomp.SetComponents(0)
        ecomp.Update()
        self._update(ecomp.GetOutput())
        self.pipeline = utils.OperationNode(
            "frequency_pass_filter", parents=[self], c="#4cc9f0"
        )
        return self

    @property
    def ncomponents(self) -> int:
        """
        Return the number of components in the volume.
        This is the number of scalar values per voxel.
        """
        scals = self.dataset.GetPointData().GetScalars()
        if scals:
            return scals.GetNumberOfComponents()
        return 1

    def extract_components(self, components: list) -> Self:
        """
        Extract one or more components from a multi-component volume.

        Args:
            components (int, list):
                the component(s) to extract
        """
        if not utils.is_sequence(components):
            components = [components]
        ecomp = vtki.new("ImageExtractComponents")
        ecomp.SetInputData(self.dataset)
        ecomp.SetComponents(*components)
        ecomp.Update()
        v = Volume(ecomp.GetOutput())
        self.pipeline = utils.OperationNode(
            "extract_components",
            parents=[self],
            c="#4cc9f0",
            comment=f"components={components}",
        )
        return v

    def smooth_gaussian(self, sigma=(2, 2, 2), radius=None) -> Self:
        """
        Performs a convolution of the input Volume with a gaussian.

        Args:
            sigma (float, list):
                standard deviation(s) in voxel units.
                A list can be given to smooth in the three direction differently.
            radius (float, list):
                radius factor(s) determine how far out the gaussian
                kernel will go before being clamped to zero. A list can be given too.
        """
        gsf = vtki.new("ImageGaussianSmooth")
        gsf.SetDimensionality(3)
        gsf.SetInputData(self.dataset)
        if utils.is_sequence(sigma):
            gsf.SetStandardDeviations(sigma)
        else:
            gsf.SetStandardDeviation(sigma)
        if radius is not None:
            if utils.is_sequence(radius):
                gsf.SetRadiusFactors(radius)
            else:
                gsf.SetRadiusFactor(radius)
        gsf.Update()
        self._update(gsf.GetOutput())
        self.pipeline = utils.OperationNode(
            "smooth_gaussian", parents=[self], c="#4cc9f0"
        )
        return self

    def smooth_median(self, neighbours=(2, 2, 2)) -> Self:
        """
        Median filter that replaces each pixel with the median value
        from a rectangular neighborhood around that pixel.
        """
        imgm = vtki.new("ImageMedian3D")
        imgm.SetInputData(self.dataset)
        if utils.is_sequence(neighbours):
            imgm.SetKernelSize(neighbours[0], neighbours[1], neighbours[2])
        else:
            imgm.SetKernelSize(neighbours, neighbours, neighbours)
        imgm.Update()
        self._update(imgm.GetOutput())
        self.pipeline = utils.OperationNode(
            "smooth_median", parents=[self], c="#4cc9f0"
        )
        return self

    def erode(self, neighbours=(2, 2, 2)) -> Self:
        """
        Replace a voxel with the minimum over an ellipsoidal neighborhood of voxels.
        If `neighbours` of an axis is 1, no processing is done on that axis.

        Examples:
            - [erode_dilate.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/erode_dilate.py)

                ![](https://vedo.embl.es/images/volumetric/erode_dilate.png)
        """
        ver = vtki.new("ImageContinuousErode3D")
        ver.SetInputData(self.dataset)
        ver.SetKernelSize(neighbours[0], neighbours[1], neighbours[2])
        ver.Update()
        self._update(ver.GetOutput())
        self.pipeline = utils.OperationNode("erode", parents=[self], c="#4cc9f0")
        return self

    def dilate(self, neighbours=(2, 2, 2)) -> Self:
        """
        Replace a voxel with the maximum over an ellipsoidal neighborhood of voxels.
        If `neighbours` of an axis is 1, no processing is done on that axis.

        Check also `erode()` and `pad()`.

        Examples:
            - [erode_dilate.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/erode_dilate.py)
        """
        ver = vtki.new("ImageContinuousDilate3D")
        ver.SetInputData(self.dataset)
        ver.SetKernelSize(neighbours[0], neighbours[1], neighbours[2])
        ver.Update()
        self._update(ver.GetOutput())
        self.pipeline = utils.OperationNode("dilate", parents=[self], c="#4cc9f0")
        return self

    def magnitude(self) -> Self:
        """Colapses components with magnitude function."""
        imgm = vtki.new("ImageMagnitude")
        imgm.SetInputData(self.dataset)
        imgm.Update()
        self._update(imgm.GetOutput())
        self.pipeline = utils.OperationNode("magnitude", parents=[self], c="#4cc9f0")
        return self

    def topoints(self) -> vedo.Points:
        """
        Extract all image voxels as points.
        This function takes an input `Volume` and creates an `Mesh`
        that contains the points and the point attributes.

        Examples:
            - [vol2points.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/vol2points.py)
        """
        v2p = vtki.new("ImageToPoints")
        v2p.SetInputData(self.dataset)
        v2p.Update()
        mpts = vedo.Points(v2p.GetOutput())
        mpts.pipeline = utils.OperationNode(
            "topoints", parents=[self], c="#4cc9f0:#e9c46a"
        )
        return mpts

    def euclidean_distance(self, anisotropy=False, max_distance=None) -> Volume:
        """
        Implementation of the Euclidean DT (Distance Transform) using Saito's algorithm.
        The distance map produced contains the square of the Euclidean distance values.
        The algorithm has a O(n^(D+1)) complexity over n x n x...x n images in D dimensions.

        Check out also: https://en.wikipedia.org/wiki/Distance_transform

        Args:
            anisotropy : bool
                used to define whether Spacing should be used in the
                computation of the distances.
            max_distance : bool
                any distance bigger than max_distance will not be
                computed but set to this specified value instead.

        Examples:
            - [euclidian_dist.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/euclidian_dist.py)
        """
        euv = vtki.new("ImageEuclideanDistance")
        euv.SetInputData(self.dataset)
        euv.SetConsiderAnisotropy(anisotropy)
        if max_distance is not None:
            euv.InitializeOn()
            euv.SetMaximumDistance(max_distance)
        euv.SetAlgorithmToSaito()
        euv.Update()
        vol = Volume(euv.GetOutput())
        vol.pipeline = utils.OperationNode(
            "euclidean_distance", parents=[self], c="#4cc9f0"
        )
        return vol

    def correlation_with(self, vol2: Volume, dim=2) -> Volume:
        """
        Find the correlation between two volumetric data sets.
        Keyword `dim` determines whether the correlation will be 3D, 2D or 1D.
        The default is a 2D Correlation.

        The output size will match the size of the first input.
        The second input is considered the correlation kernel.
        """
        imc = vtki.new("ImageCorrelation")
        imc.SetInput1Data(self.dataset)
        imc.SetInput2Data(vol2.dataset)
        imc.SetDimensionality(dim)
        imc.Update()
        vol = Volume(imc.GetOutput())

        vol.pipeline = utils.OperationNode(
            "correlation_with", parents=[self, vol2], c="#4cc9f0"
        )
        return vol

    def scale_voxels(self, scale=1) -> Self:
        """Scale the voxel content by factor `scale`."""
        rsl = vtki.new("ImageReslice")
        rsl.SetInputData(self.dataset)
        rsl.SetScalarScale(scale)
        rsl.Update()
        self._update(rsl.GetOutput())
        self.pipeline = utils.OperationNode(
            "scale_voxels", comment=f"scale={scale}", parents=[self], c="#4cc9f0"
        )
        return self

mapper property writable

Return the underlying vtkMapper object.

ncomponents property

Return the number of components in the volume. This is the number of scalar values per voxel.

shape property

Return the nr. of voxels in the 3 dimensions.

append(*volumes, axis='z', preserve_extents=False)

Take the components from multiple inputs and merges them into one output. Except for the append axis, all inputs must have the same extent. All inputs must have the same number of scalar components. The output has the same origin and spacing as the first input. The origin and spacing of all other inputs are ignored. All inputs must have the same scalar type.

Parameters:

Name Type Description Default
axis (int, str)

axis expanded to hold the multiple images

'z'
preserve_extents bool

if True, the extent of the inputs is used to place the image in the output. The whole extent of the output is the union of the input whole extents. Any portion of the output not covered by the inputs is set to zero. The origin and spacing is taken from the first input.

False

Examples:

from vedo import Volume, dataurl
vol = Volume(dataurl+'embryo.tif')
vol.append(vol, axis='x').show().close()

Source code in vedo/volume/core.py
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
def append(self, *volumes, axis="z", preserve_extents=False) -> Self:
    """
    Take the components from multiple inputs and merges them into one output.
    Except for the append axis, all inputs must have the same extent.
    All inputs must have the same number of scalar components.
    The output has the same origin and spacing as the first input.
    The origin and spacing of all other inputs are ignored.
    All inputs must have the same scalar type.

    Args:
        axis (int, str):
            axis expanded to hold the multiple images
        preserve_extents (bool):
            if True, the extent of the inputs is used to place
            the image in the output. The whole extent of the output is the union of the input
            whole extents. Any portion of the output not covered by the inputs is set to zero.
            The origin and spacing is taken from the first input.

    Examples:
        ```python
        from vedo import Volume, dataurl
        vol = Volume(dataurl+'embryo.tif')
        vol.append(vol, axis='x').show().close()
        ```
        ![](https://vedo.embl.es/images/feats/volume_append.png)
    """
    ima = vtki.new("ImageAppend")
    ima.SetInputData(self.dataset)
    # if not utils.is_sequence(volumes):
    #     volumes = [volumes]
    for volume in volumes:
        if isinstance(volume, vtki.vtkImageData):
            ima.AddInputData(volume)
        else:
            ima.AddInputData(volume.dataset)
    ima.SetPreserveExtents(preserve_extents)
    if axis == "x":
        axis = 0
    elif axis == "y":
        axis = 1
    elif axis == "z":
        axis = 2
    ima.SetAppendAxis(axis)
    ima.Update()
    self._update(ima.GetOutput())

    self.pipeline = utils.OperationNode(
        "append",
        parents=[self, *volumes],
        c="#4cc9f0",
        comment=f"dims={tuple(self.dimensions())}",
    )
    return self

apply_transform(T, fit=True, interpolation='cubic')

Apply a transform to the scalars in the volume.

Parameters:

Name Type Description Default
T (LinearTransform, NonLinearTransform)

The transformation to be applied

required
fit bool

fit/adapt the old bounding box to the modified geometry

True
interpolation str

one of the following: "nearest", "linear", "cubic"

'cubic'
Source code in vedo/volume/core.py
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
def apply_transform(
    self,
    T: transformations.LinearTransform | transformations.NonLinearTransform,
    fit=True,
    interpolation="cubic",
) -> Self:
    """
    Apply a transform to the scalars in the volume.

    Args:
        T (LinearTransform, NonLinearTransform):
            The transformation to be applied
        fit (bool):
            fit/adapt the old bounding box to the modified geometry
        interpolation (str):
            one of the following: "nearest", "linear", "cubic"
    """
    if utils.is_sequence(T):
        T = transformations.LinearTransform(T)

    TI = T.compute_inverse()

    reslice = vtki.new("ImageReslice")
    reslice.SetInputData(self.dataset)
    reslice.SetResliceTransform(TI.T)
    reslice.SetOutputDimensionality(3)
    if "lin" in interpolation.lower():
        reslice.SetInterpolationModeToLinear()
    elif "near" in interpolation.lower():
        reslice.SetInterpolationModeToNearestNeighbor()
    elif "cubic" in interpolation.lower():
        reslice.SetInterpolationModeToCubic()
    else:
        vedo.logger.error(
            f"in apply_transform: unknown interpolation mode {interpolation}"
        )
        raise ValueError()
    reslice.SetAutoCropOutput(fit)
    reslice.Update()
    self._update(reslice.GetOutput())
    self.transform = T
    self.pipeline = utils.OperationNode(
        "apply_transform", parents=[self], c="#4cc9f0"
    )
    return self

astype(dtype)

Reset the type of the scalars array.

Parameters:

Name Type Description Default
dtype str

the type of the scalars array in ["int8", "uint8", "int16", "uint16", "int32", "uint32", "float32", "float64"]

required
Source code in vedo/volume/core.py
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
def astype(self, dtype: str | int) -> Self:
    """
    Reset the type of the scalars array.

    Args:
        dtype (str):
            the type of the scalars array in
            `["int8", "uint8", "int16", "uint16", "int32", "uint32", "float32", "float64"]`
    """
    if dtype in [
        "int8",
        "uint8",
        "int16",
        "uint16",
        "int32",
        "uint32",
        "float32",
        "float64",
    ]:
        caster = vtki.new("ImageCast")
        caster.SetInputData(self.dataset)
        caster.SetOutputScalarType(int(vtki.array_types[dtype]))
        caster.ClampOverflowOn()
        caster.Update()
        self._update(caster.GetOutput())
        self.pipeline = utils.OperationNode(
            f"astype({dtype})", parents=[self], c="#4cc9f0"
        )
    else:
        vedo.logger.error(f"astype(): unknown type {dtype}")
        raise ValueError()
    return self

c(*args, **kwargs)

Deprecated. Use Volume.cmap() instead.

Source code in vedo/volume/core.py
250
251
252
253
def c(self, *args, **kwargs) -> Self:
    """Deprecated. Use `Volume.cmap()` instead."""
    vedo.logger.warning("Volume.c() is deprecated, use Volume.cmap() instead")
    return self.cmap(*args, **kwargs)

center()

Get the center of the volumetric dataset.

Source code in vedo/volume/core.py
622
623
624
625
def center(self) -> np.ndarray:
    """Get the center of the volumetric dataset."""
    # note that this does not have the set method like origin and spacing
    return np.array(self.dataset.GetCenter())

clone(deep=True)

Return a clone copy of the Volume. Alias of copy().

Source code in vedo/volume/core.py
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
def clone(self, deep=True) -> Volume:
    """Return a clone copy of the Volume. Alias of `copy()`."""
    if deep:
        newimg = vtki.vtkImageData()
        newimg.CopyStructure(self.dataset)
        newimg.CopyAttributes(self.dataset)
        newvol = Volume(newimg)
    else:
        newvol = Volume(self.dataset)

    prop = vtki.vtkVolumeProperty()
    prop.DeepCopy(self.properties)
    newvol.actor.SetProperty(prop)
    newvol.properties = prop

    newvol.pipeline = utils.OperationNode(
        "clone", parents=[self], c="#bbd0ff", shape="diamond"
    )
    return newvol

component_weight(i, weight)

Set the scalar component weight in range [0,1].

Source code in vedo/volume/core.py
442
443
444
445
def component_weight(self, i: int, weight: float) -> Self:
    """Set the scalar component weight in range [0,1]."""
    self.properties.SetComponentWeight(i, weight)
    return self

copy(deep=True)

Return a copy of the Volume. Alias of clone().

Source code in vedo/volume/core.py
385
386
387
def copy(self, deep=True) -> Volume:
    """Return a copy of the Volume. Alias of `clone()`."""
    return self.clone(deep=deep)

correlation_with(vol2, dim=2)

Find the correlation between two volumetric data sets. Keyword dim determines whether the correlation will be 3D, 2D or 1D. The default is a 2D Correlation.

The output size will match the size of the first input. The second input is considered the correlation kernel.

Source code in vedo/volume/core.py
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
def correlation_with(self, vol2: Volume, dim=2) -> Volume:
    """
    Find the correlation between two volumetric data sets.
    Keyword `dim` determines whether the correlation will be 3D, 2D or 1D.
    The default is a 2D Correlation.

    The output size will match the size of the first input.
    The second input is considered the correlation kernel.
    """
    imc = vtki.new("ImageCorrelation")
    imc.SetInput1Data(self.dataset)
    imc.SetInput2Data(vol2.dataset)
    imc.SetDimensionality(dim)
    imc.Update()
    vol = Volume(imc.GetOutput())

    vol.pipeline = utils.OperationNode(
        "correlation_with", parents=[self, vol2], c="#4cc9f0"
    )
    return vol

crop(left=None, right=None, back=None, front=None, bottom=None, top=None, VOI=())

Crop a Volume object.

Parameters:

Name Type Description Default
left float

fraction to crop from the left plane (negative x)

None
right float

fraction to crop from the right plane (positive x)

None
back float

fraction to crop from the back plane (negative y)

None
front float

fraction to crop from the front plane (positive y)

None
bottom float

fraction to crop from the bottom plane (negative z)

None
top float

fraction to crop from the top plane (positive z)

None
VOI list

extract Volume Of Interest expressed in voxel numbers

()

Examples:

vol.crop(VOI=(xmin, xmax, ymin, ymax, zmin, zmax)) # all integers nrs

Source code in vedo/volume/core.py
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
def crop(
    self,
    left=None,
    right=None,
    back=None,
    front=None,
    bottom=None,
    top=None,
    VOI=(),
) -> Self:
    """
    Crop a `Volume` object.

    Args:
        left (float):
            fraction to crop from the left plane (negative x)
        right (float):
            fraction to crop from the right plane (positive x)
        back (float):
            fraction to crop from the back plane (negative y)
        front (float):
            fraction to crop from the front plane (positive y)
        bottom (float):
            fraction to crop from the bottom plane (negative z)
        top (float):
            fraction to crop from the top plane (positive z)
        VOI (list):
            extract Volume Of Interest expressed in voxel numbers

    Examples:
        `vol.crop(VOI=(xmin, xmax, ymin, ymax, zmin, zmax)) # all integers nrs`
    """
    extractVOI = vtki.new("ExtractVOI")
    extractVOI.SetInputData(self.dataset)

    if VOI:
        extractVOI.SetVOI(VOI)
    else:
        d = self.dataset.GetDimensions()
        bx0, bx1, by0, by1, bz0, bz1 = 0, d[0] - 1, 0, d[1] - 1, 0, d[2] - 1
        if left is not None:
            bx0 = int((d[0] - 1) * left)
        if right is not None:
            bx1 = int((d[0] - 1) * (1 - right))
        if back is not None:
            by0 = int((d[1] - 1) * back)
        if front is not None:
            by1 = int((d[1] - 1) * (1 - front))
        if bottom is not None:
            bz0 = int((d[2] - 1) * bottom)
        if top is not None:
            bz1 = int((d[2] - 1) * (1 - top))
        extractVOI.SetVOI(bx0, bx1, by0, by1, bz0, bz1)
    extractVOI.Update()
    self._update(extractVOI.GetOutput())

    self.pipeline = utils.OperationNode(
        "crop",
        parents=[self],
        c="#4cc9f0",
        comment=f"dims={tuple(self.dimensions())}",
    )
    return self

dilate(neighbours=(2, 2, 2))

Replace a voxel with the maximum over an ellipsoidal neighborhood of voxels. If neighbours of an axis is 1, no processing is done on that axis.

Check also erode() and pad().

Examples:

Source code in vedo/volume/core.py
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
def dilate(self, neighbours=(2, 2, 2)) -> Self:
    """
    Replace a voxel with the maximum over an ellipsoidal neighborhood of voxels.
    If `neighbours` of an axis is 1, no processing is done on that axis.

    Check also `erode()` and `pad()`.

    Examples:
        - [erode_dilate.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/erode_dilate.py)
    """
    ver = vtki.new("ImageContinuousDilate3D")
    ver.SetInputData(self.dataset)
    ver.SetKernelSize(neighbours[0], neighbours[1], neighbours[2])
    ver.Update()
    self._update(ver.GetOutput())
    self.pipeline = utils.OperationNode("dilate", parents=[self], c="#4cc9f0")
    return self

dimensions()

Return the nr. of voxels in the 3 dimensions.

Source code in vedo/volume/core.py
585
586
587
def dimensions(self) -> np.ndarray:
    """Return the nr. of voxels in the 3 dimensions."""
    return np.array(self.dataset.GetDimensions())

erode(neighbours=(2, 2, 2))

Replace a voxel with the minimum over an ellipsoidal neighborhood of voxels. If neighbours of an axis is 1, no processing is done on that axis.

Examples:

Source code in vedo/volume/core.py
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
def erode(self, neighbours=(2, 2, 2)) -> Self:
    """
    Replace a voxel with the minimum over an ellipsoidal neighborhood of voxels.
    If `neighbours` of an axis is 1, no processing is done on that axis.

    Examples:
        - [erode_dilate.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/erode_dilate.py)

            ![](https://vedo.embl.es/images/volumetric/erode_dilate.png)
    """
    ver = vtki.new("ImageContinuousErode3D")
    ver.SetInputData(self.dataset)
    ver.SetKernelSize(neighbours[0], neighbours[1], neighbours[2])
    ver.Update()
    self._update(ver.GetOutput())
    self.pipeline = utils.OperationNode("erode", parents=[self], c="#4cc9f0")
    return self

euclidean_distance(anisotropy=False, max_distance=None)

Implementation of the Euclidean DT (Distance Transform) using Saito's algorithm. The distance map produced contains the square of the Euclidean distance values. The algorithm has a O(n^(D+1)) complexity over n x n x...x n images in D dimensions.

Check out also: https://en.wikipedia.org/wiki/Distance_transform

Parameters:

Name Type Description Default
anisotropy

bool used to define whether Spacing should be used in the computation of the distances.

required
max_distance

bool any distance bigger than max_distance will not be computed but set to this specified value instead.

required

Examples:

Source code in vedo/volume/core.py
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
def euclidean_distance(self, anisotropy=False, max_distance=None) -> Volume:
    """
    Implementation of the Euclidean DT (Distance Transform) using Saito's algorithm.
    The distance map produced contains the square of the Euclidean distance values.
    The algorithm has a O(n^(D+1)) complexity over n x n x...x n images in D dimensions.

    Check out also: https://en.wikipedia.org/wiki/Distance_transform

    Args:
        anisotropy : bool
            used to define whether Spacing should be used in the
            computation of the distances.
        max_distance : bool
            any distance bigger than max_distance will not be
            computed but set to this specified value instead.

    Examples:
        - [euclidian_dist.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/euclidian_dist.py)
    """
    euv = vtki.new("ImageEuclideanDistance")
    euv.SetInputData(self.dataset)
    euv.SetConsiderAnisotropy(anisotropy)
    if max_distance is not None:
        euv.InitializeOn()
        euv.SetMaximumDistance(max_distance)
    euv.SetAlgorithmToSaito()
    euv.Update()
    vol = Volume(euv.GetOutput())
    vol.pipeline = utils.OperationNode(
        "euclidean_distance", parents=[self], c="#4cc9f0"
    )
    return vol

extract_components(components)

Extract one or more components from a multi-component volume.

Parameters:

Name Type Description Default
components (int, list)

the component(s) to extract

required
Source code in vedo/volume/core.py
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
def extract_components(self, components: list) -> Self:
    """
    Extract one or more components from a multi-component volume.

    Args:
        components (int, list):
            the component(s) to extract
    """
    if not utils.is_sequence(components):
        components = [components]
    ecomp = vtki.new("ImageExtractComponents")
    ecomp.SetInputData(self.dataset)
    ecomp.SetComponents(*components)
    ecomp.Update()
    v = Volume(ecomp.GetOutput())
    self.pipeline = utils.OperationNode(
        "extract_components",
        parents=[self],
        c="#4cc9f0",
        comment=f"components={components}",
    )
    return v

frequency_pass_filter(low_cutoff=None, high_cutoff=None, order=1)

Low-pass and high-pass filtering become trivial in the frequency domain. A portion of the pixels/voxels are simply masked or attenuated. This function applies a high pass Butterworth filter that attenuates the frequency domain image.

The gradual attenuation of the filter is important. A simple high-pass filter would simply mask a set of pixels in the frequency domain, but the abrupt transition would cause a ringing effect in the spatial domain.

Parameters:

Name Type Description Default
low_cutoff list

the cutoff frequencies for x, y and z

None
high_cutoff list

the cutoff frequencies for x, y and z

None
order int

order determines sharpness of the cutoff curve

1
Source code in vedo/volume/core.py
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
def frequency_pass_filter(self, low_cutoff=None, high_cutoff=None, order=1) -> Self:
    """
    Low-pass and high-pass filtering become trivial in the frequency domain.
    A portion of the pixels/voxels are simply masked or attenuated.
    This function applies a high pass Butterworth filter that attenuates the
    frequency domain image.

    The gradual attenuation of the filter is important.
    A simple high-pass filter would simply mask a set of pixels in the frequency domain,
    but the abrupt transition would cause a ringing effect in the spatial domain.

    Args:
        low_cutoff (list):
            the cutoff frequencies for x, y and z
        high_cutoff (list):
            the cutoff frequencies for x, y and z
        order (int):
            order determines sharpness of the cutoff curve
    """
    # https://lorensen.github.io/VTKExamples/site/Cxx/ImageProcessing/IdealHighPass
    fft = vtki.new("ImageFFT")
    fft.SetInputData(self.dataset)
    fft.Update()
    out = fft.GetOutput()

    if high_cutoff:
        blp = vtki.new("ImageButterworthLowPass")
        blp.SetInputData(out)
        blp.SetCutOff(high_cutoff)
        blp.SetOrder(order)
        blp.Update()
        out = blp.GetOutput()

    if low_cutoff:
        bhp = vtki.new("ImageButterworthHighPass")
        bhp.SetInputData(out)
        bhp.SetCutOff(low_cutoff)
        bhp.SetOrder(order)
        bhp.Update()
        out = bhp.GetOutput()

    rfft = vtki.new("ImageRFFT")
    rfft.SetInputData(out)
    rfft.Update()

    ecomp = vtki.new("ImageExtractComponents")
    ecomp.SetInputData(rfft.GetOutput())
    ecomp.SetComponents(0)
    ecomp.Update()
    self._update(ecomp.GetOutput())
    self.pipeline = utils.OperationNode(
        "frequency_pass_filter", parents=[self], c="#4cc9f0"
    )
    return self

get_cell_from_ijk(ijk)

Get the voxel id number at the given ijk coordinates.

Parameters:

Name Type Description Default
ijk list

the ijk coordinates of the voxel

required
Source code in vedo/volume/core.py
668
669
670
671
672
673
674
675
676
def get_cell_from_ijk(self, ijk: list) -> int:
    """
    Get the voxel id number at the given ijk coordinates.

    Args:
        ijk (list):
            the ijk coordinates of the voxel
    """
    return self.dataset.ComputeCellId(ijk)

get_point_from_ijk(ijk)

Get the point id number at the given ijk coordinates.

Parameters:

Name Type Description Default
ijk list

the ijk coordinates of the voxel

required
Source code in vedo/volume/core.py
678
679
680
681
682
683
684
685
686
def get_point_from_ijk(self, ijk: list) -> int:
    """
    Get the point id number at the given ijk coordinates.

    Args:
        ijk (list):
            the ijk coordinates of the voxel
    """
    return self.dataset.ComputePointId(ijk)

imagedata()

DEPRECATED: Use Volume.dataset instead.

Return the underlying vtkImagaData object.

Source code in vedo/volume/core.py
528
529
530
531
532
533
534
535
536
def imagedata(self) -> vtki.vtkImageData:
    """
    DEPRECATED:
    Use `Volume.dataset` instead.

    Return the underlying `vtkImagaData` object.
    """
    print("Volume.imagedata() is deprecated, use Volume.dataset instead")
    return self.dataset

magnitude()

Colapses components with magnitude function.

Source code in vedo/volume/core.py
1422
1423
1424
1425
1426
1427
1428
1429
def magnitude(self) -> Self:
    """Colapses components with magnitude function."""
    imgm = vtki.new("ImageMagnitude")
    imgm.SetInputData(self.dataset)
    imgm.Update()
    self._update(imgm.GetOutput())
    self.pipeline = utils.OperationNode("magnitude", parents=[self], c="#4cc9f0")
    return self

mirror(axis='x')

Mirror flip along one of the cartesian axes.

Source code in vedo/volume/core.py
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
def mirror(self, axis="x") -> Self:
    """
    Mirror flip along one of the cartesian axes.
    """
    img = self.dataset

    ff = vtki.new("ImageFlip")
    ff.SetInputData(img)
    if axis.lower() == "x":
        ff.SetFilteredAxis(0)
    elif axis.lower() == "y":
        ff.SetFilteredAxis(1)
    elif axis.lower() == "z":
        ff.SetFilteredAxis(2)
    else:
        vedo.logger.error("mirror must be set to either x, y, z or n")
        raise RuntimeError()
    ff.Update()
    self._update(ff.GetOutput())
    self.pipeline = utils.OperationNode(
        f"mirror {axis}", parents=[self], c="#4cc9f0"
    )
    return self

modified()

Mark the object as modified.

Examples:

Source code in vedo/volume/core.py
538
539
540
541
542
543
544
545
546
547
548
549
def modified(self) -> Self:
    """
    Mark the object as modified.

    Examples:

    - [numpy2volume0.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/numpy2volume0.py)
    """
    scals = self.dataset.GetPointData().GetScalars()
    if scals:
        scals.Modified()
    return self

normalize()

Normalize that scalar components for each point.

Source code in vedo/volume/core.py
976
977
978
979
980
981
982
983
def normalize(self) -> Self:
    """Normalize that scalar components for each point."""
    norm = vtki.new("ImageNormalize")
    norm.SetInputData(self.dataset)
    norm.Update()
    self._update(norm.GetOutput())
    self.pipeline = utils.OperationNode("normalize", parents=[self], c="#4cc9f0")
    return self

operation(operation, volume2=None)

Perform operations with Volume objects. Keyword volume2 can be a constant float.

Possible operations are:

and, or, xor, nand, nor, not,
+, -, /, 1/x, sin, cos, exp, log,
abs, **2, sqrt, min, max, atan, atan2, median,
mag, dot, gradient, divergence, laplacian.

Examples:

from vedo import Box, show
vol1 = Box(size=(35,10, 5)).binarize()
vol2 = Box(size=( 5,10,35)).binarize()
vol = vol1.operation("xor", vol2)
show([[vol1, vol2],
    ["vol1 xor vol2", vol]],
    N=2, axes=1, viewup="z",
).close()

Note

For logic operations, the two volumes must have the same bounds. If they do not, a larger image is created to contain both and the volumes are resampled onto the larger image before the operation is performed. This can be slow and memory intensive.

See also
Source code in vedo/volume/core.py
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
def operation(self, operation: str, volume2=None) -> Volume:
    """
    Perform operations with `Volume` objects.
    Keyword `volume2` can be a constant `float`.

    Possible operations are:
    ```
    and, or, xor, nand, nor, not,
    +, -, /, 1/x, sin, cos, exp, log,
    abs, **2, sqrt, min, max, atan, atan2, median,
    mag, dot, gradient, divergence, laplacian.
    ```

    Examples:
    ```py
    from vedo import Box, show
    vol1 = Box(size=(35,10, 5)).binarize()
    vol2 = Box(size=( 5,10,35)).binarize()
    vol = vol1.operation("xor", vol2)
    show([[vol1, vol2],
        ["vol1 xor vol2", vol]],
        N=2, axes=1, viewup="z",
    ).close()
    ```

    Note:
        For logic operations, the two volumes must have the same bounds.
        If they do not, a larger image is created to contain both and the
        volumes are resampled onto the larger image before the operation is
        performed. This can be slow and memory intensive.

    See also:
        - [volume_operations.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/volume_operations.py)
    """
    op = operation.lower()
    image1 = self.dataset

    if op in ["and", "or", "xor", "nand", "nor"]:
        if not np.allclose(image1.GetBounds(), volume2.dataset.GetBounds()):
            # create a larger image to contain both
            b1 = image1.GetBounds()
            b2 = volume2.dataset.GetBounds()
            b = [
                min(b1[0], b2[0]),
                max(b1[1], b2[1]),
                min(b1[2], b2[2]),
                max(b1[3], b2[3]),
                min(b1[4], b2[4]),
                max(b1[5], b2[5]),
            ]
            dims1 = image1.GetDimensions()
            dims2 = volume2.dataset.GetDimensions()
            dims = [
                max(dims1[0], dims2[0]),
                max(dims1[1], dims2[1]),
                max(dims1[2], dims2[2]),
            ]

            image = vtki.vtkImageData()
            image.SetDimensions(dims)
            spacing = (
                (b[1] - b[0]) / dims[0],
                (b[3] - b[2]) / dims[1],
                (b[5] - b[4]) / dims[2],
            )
            image.SetSpacing(spacing)
            image.SetOrigin((b[0], b[2], b[4]))
            image.AllocateScalars(vtki.VTK_UNSIGNED_CHAR, 1)
            image.GetPointData().GetScalars().FillComponent(0, 0)

            interp1 = vtki.new("ImageReslice")
            interp1.SetInputData(image1)
            interp1.SetOutputExtent(image.GetExtent())
            interp1.SetOutputOrigin(image.GetOrigin())
            interp1.SetOutputSpacing(image.GetSpacing())
            interp1.SetInterpolationModeToNearestNeighbor()
            interp1.Update()
            imageA = interp1.GetOutput()

            interp2 = vtki.new("ImageReslice")
            interp2.SetInputData(volume2.dataset)
            interp2.SetOutputExtent(image.GetExtent())
            interp2.SetOutputOrigin(image.GetOrigin())
            interp2.SetOutputSpacing(image.GetSpacing())
            interp2.SetInterpolationModeToNearestNeighbor()
            interp2.Update()
            imageB = interp2.GetOutput()

        else:
            imageA = image1
            imageB = volume2.dataset

        img_logic = vtki.new("ImageLogic")
        img_logic.SetInput1Data(imageA)
        img_logic.SetInput2Data(imageB)
        img_logic.SetOperation(["and", "or", "xor", "nand", "nor"].index(op))
        img_logic.Update()

        out_vol = Volume(img_logic.GetOutput())
        out_vol.pipeline = utils.OperationNode(
            "operation",
            comment=f"{op}",
            parents=[self, volume2],
            c="#4cc9f0",
            shape="cylinder",
        )
        return out_vol  ######################################################

    if volume2 and isinstance(volume2, Volume):
        # assert image1.GetScalarType() == volume2.dataset.GetScalarType(), "volumes have different scalar types"
        # make sure they have the same bounds:
        if not np.allclose(image1.GetBounds(), volume2.dataset.GetBounds()):
            raise ValueError("volumes have different bounds")
        # make sure they have the same spacing:
        if not np.allclose(image1.GetSpacing(), volume2.dataset.GetSpacing()):
            raise ValueError("volumes have different spacing")
        # make sure they have the same origin:
        if not np.allclose(image1.GetOrigin(), volume2.dataset.GetOrigin()):
            raise ValueError("volumes have different origin")

    mf = None
    if op in ["median"]:
        mf = vtki.new("ImageMedian3D")
        mf.SetInputData(image1)
    elif op in ["mag"]:
        mf = vtki.new("ImageMagnitude")
        mf.SetInputData(image1)
    elif op in ["dot"]:
        mf = vtki.new("ImageDotProduct")
        mf.SetInput1Data(image1)
        mf.SetInput2Data(volume2.dataset)
    elif op in ["grad", "gradient"]:
        mf = vtki.new("ImageGradient")
        mf.SetDimensionality(3)
        mf.SetInputData(image1)
    elif op in ["div", "divergence"]:
        mf = vtki.new("ImageDivergence")
        mf.SetInputData(image1)
    elif op in ["laplacian"]:
        mf = vtki.new("ImageLaplacian")
        mf.SetDimensionality(3)
        mf.SetInputData(image1)
    elif op in ["not"]:
        mf = vtki.new("ImageLogic")
        mf.SetInput1Data(image1)
        mf.SetOperation(4)

    if mf is not None:
        mf.Update()
        vol = Volume(mf.GetOutput())
        vol.pipeline = utils.OperationNode(
            "operation",
            comment=f"{op}",
            parents=[self],
            c="#4cc9f0",
            shape="cylinder",
        )
        return vol  ######################################################

    mat = vtki.new("ImageMathematics")
    mat.SetInput1Data(image1)

    K = None

    if utils.is_number(volume2):
        K = volume2
        mat.SetConstantK(K)
        mat.SetConstantC(K)

    elif volume2 is not None:  # assume image2 is a constant value
        mat.SetInput2Data(volume2.dataset)

    # ###########################
    if op in ["+", "add", "plus"]:
        if K:
            mat.SetOperationToAddConstant()
        else:
            mat.SetOperationToAdd()

    elif op in ["-", "subtract", "minus"]:
        if K:
            mat.SetConstantC(-float(K))
            mat.SetOperationToAddConstant()
        else:
            mat.SetOperationToSubtract()

    elif op in ["*", "multiply", "times"]:
        if K:
            mat.SetOperationToMultiplyByK()
        else:
            mat.SetOperationToMultiply()

    elif op in ["/", "divide"]:
        if K:
            mat.SetConstantK(1.0 / K)
            mat.SetOperationToMultiplyByK()
        else:
            mat.SetOperationToDivide()

    elif op in ["1/x", "invert"]:
        mat.SetOperationToInvert()
    elif op in ["sin"]:
        mat.SetOperationToSin()
    elif op in ["cos"]:
        mat.SetOperationToCos()
    elif op in ["exp"]:
        mat.SetOperationToExp()
    elif op in ["log"]:
        mat.SetOperationToLog()
    elif op in ["abs"]:
        mat.SetOperationToAbsoluteValue()
    elif op in ["**2", "square"]:
        mat.SetOperationToSquare()
    elif op in ["sqrt", "sqr"]:
        mat.SetOperationToSquareRoot()
    elif op in ["min"]:
        mat.SetOperationToMin()
    elif op in ["max"]:
        mat.SetOperationToMax()
    elif op in ["atan"]:
        mat.SetOperationToATAN()
    elif op in ["atan2"]:
        mat.SetOperationToATAN2()
    else:
        vedo.logger.error(f"unknown operation {operation}")
        raise RuntimeError()
    mat.Update()

    self._update(mat.GetOutput())

    self.pipeline = utils.OperationNode(
        "operation",
        comment=f"{op}",
        parents=[self, volume2],
        shape="cylinder",
        c="#4cc9f0",
    )
    return self

origin(s=None)

Set/get the origin of the volumetric dataset.

The origin is the position in world coordinates of the point index (0,0,0). This point does not have to be part of the dataset, in other words, the dataset extent does not have to start at (0,0,0) and the origin can be outside of the dataset bounding box. The origin plus spacing determine the position in space of the points.

Source code in vedo/volume/core.py
600
601
602
603
604
605
606
607
608
609
610
611
612
613
def origin(self, s=None) -> Self | Iterable[float]:
    """
    Set/get the origin of the volumetric dataset.

    The origin is the position in world coordinates of the point index (0,0,0).
    This point does not have to be part of the dataset, in other words,
    the dataset extent does not have to start at (0,0,0) and the origin
    can be outside of the dataset bounding box.
    The origin plus spacing determine the position in space of the points.
    """
    if s is not None:
        self.dataset.SetOrigin(s)
        return self
    return np.array(self.dataset.GetOrigin())

pad(voxels=10, value=0)

Add the specified number of voxels at the Volume borders. Voxels can be a list formatted as [nx0, nx1, ny0, ny1, nz0, nz1].

Parameters:

Name Type Description Default
voxels (int, list)

number of voxels to be added (or a list of length 4)

10
value int

intensity value (gray-scale color) of the padding

0

Examples:

from vedo import Volume, dataurl, show
iso = Volume(dataurl+'embryo.tif').isosurface()
vol = iso.binarize(spacing=(100, 100, 100)).pad(10)
vol.dilate([15,15,15])
show(iso, vol.isosurface(), N=2, axes=1)

Source code in vedo/volume/core.py
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
def pad(self, voxels=10, value=0) -> Self:
    """
    Add the specified number of voxels at the `Volume` borders.
    Voxels can be a list formatted as `[nx0, nx1, ny0, ny1, nz0, nz1]`.

    Args:
        voxels (int, list):
            number of voxels to be added (or a list of length 4)
        value (int):
            intensity value (gray-scale color) of the padding

    Examples:
        ```python
        from vedo import Volume, dataurl, show
        iso = Volume(dataurl+'embryo.tif').isosurface()
        vol = iso.binarize(spacing=(100, 100, 100)).pad(10)
        vol.dilate([15,15,15])
        show(iso, vol.isosurface(), N=2, axes=1)
        ```
        ![](https://vedo.embl.es/images/volumetric/volume_pad.png)
    """
    x0, x1, y0, y1, z0, z1 = self.dataset.GetExtent()
    pf = vtki.new("ImageConstantPad")
    pf.SetInputData(self.dataset)
    pf.SetConstant(value)
    if utils.is_sequence(voxels):
        pf.SetOutputWholeExtent(
            x0 - voxels[0],
            x1 + voxels[1],
            y0 - voxels[2],
            y1 + voxels[3],
            z0 - voxels[4],
            z1 + voxels[5],
        )
    else:
        pf.SetOutputWholeExtent(
            x0 - voxels,
            x1 + voxels,
            y0 - voxels,
            y1 + voxels,
            z0 - voxels,
            z1 + voxels,
        )
    pf.Update()
    self._update(pf.GetOutput())
    self.pipeline = utils.OperationNode(
        "pad", comment=f"{voxels} voxels", parents=[self], c="#f28482"
    )
    return self

permute_axes(x, y, z)

Reorder the axes of the Volume by specifying the input axes which are supposed to become the new X, Y, and Z.

Source code in vedo/volume/core.py
688
689
690
691
692
693
694
695
696
697
698
699
700
701
def permute_axes(self, x: int, y: int, z: int) -> Self:
    """
    Reorder the axes of the Volume by specifying
    the input axes which are supposed to become the new X, Y, and Z.
    """
    imp = vtki.new("ImagePermute")
    imp.SetFilteredAxes(x, y, z)
    imp.SetInputData(self.dataset)
    imp.Update()
    self._update(imp.GetOutput())
    self.pipeline = utils.OperationNode(
        f"permute_axes({(x, y, z)})", parents=[self], c="#4cc9f0"
    )
    return self

pos(p=None)

Set/get the position of the volumetric dataset.

Source code in vedo/volume/core.py
615
616
617
618
619
620
def pos(self, p=None) -> Self | Iterable[float]:
    """Set/get the position of the volumetric dataset."""
    if p is not None:
        self.origin(p)
        return self
    return self.origin()

resample(new_spacing, interpolation=1)

Resamples a Volume to be larger or smaller.

This method modifies the spacing of the input. Linear interpolation is used to resample the data.

Parameters:

Name Type Description Default
new_spacing list

a list of 3 new spacings for the 3 axes

required
interpolation int

0=nearest_neighbor, 1=linear, 2=cubic

1
Source code in vedo/volume/core.py
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
def resample(self, new_spacing: list[float], interpolation=1) -> Self:
    """
    Resamples a `Volume` to be larger or smaller.

    This method modifies the spacing of the input.
    Linear interpolation is used to resample the data.

    Args:
        new_spacing (list):
            a list of 3 new spacings for the 3 axes
        interpolation (int):
            0=nearest_neighbor, 1=linear, 2=cubic
    """
    rsp = vtki.new("ImageResample")
    rsp.SetInputData(self.dataset)
    oldsp = self.spacing()
    for i in range(3):
        if oldsp[i] != new_spacing[i]:
            rsp.SetAxisOutputSpacing(i, new_spacing[i])
    rsp.InterpolateOn()
    rsp.SetInterpolationMode(interpolation)
    rsp.OptimizationOn()
    rsp.Update()
    self._update(rsp.GetOutput())
    self.pipeline = utils.OperationNode(
        "resample",
        comment=f"spacing: {tuple(new_spacing)}",
        parents=[self],
        c="#4cc9f0",
    )
    return self

resize(newdims=(), newspacing=())

Increase or reduce the number of voxels of a Volume with interpolation. User must specify either the new desired dimensions or the new spacing in x, y and z.

Source code in vedo/volume/core.py
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
def resize(self, newdims: list[int] = (), newspacing: list[float] = ()) -> Self:
    """
    Increase or reduce the number of voxels of a Volume with interpolation.
    User must specify either the new desired dimensions or the new spacing in x, y and z.
    """
    rsz = vtki.new("ImageResize")
    rsz.SetInputData(self.dataset)
    if len(newdims):
        rsz.SetResizeMethodToOutputDimensions()
        rsz.SetOutputDimensions(newdims)
    elif len(newspacing) and len(newdims) == 0:
        rsz.SetResizeMethodToOutputSpacing()
        rsz.SetOutputSpacing(newspacing)
    else:
        raise TypeError
    rsz.Update()
    self.dataset = rsz.GetOutput()
    self._update(self.dataset)
    self.pipeline = utils.OperationNode(
        "resize",
        parents=[self],
        c="#4cc9f0",
        comment=f"dims={tuple(self.dimensions())}",
    )
    return self

rotate_x(angle, rad=False, around=None)

Rotate around x-axis. If angle is in radians set rad=True.

Use around to define a pivoting point.

Source code in vedo/volume/core.py
635
636
637
638
639
640
641
642
643
644
def rotate_x(self, angle: float, rad=False, around=None) -> Self:
    """
    Rotate around x-axis. If angle is in radians set `rad=True`.

    Use `around` to define a pivoting point.
    """
    if angle == 0:
        return self
    LT = transformations.LinearTransform().rotate_x(angle, rad, around)
    return self.apply_transform(LT, fit=True, interpolation="linear")

rotate_y(angle, rad=False, around=None)

Rotate around y-axis. If angle is in radians set rad=True.

Use around to define a pivoting point.

Source code in vedo/volume/core.py
646
647
648
649
650
651
652
653
654
655
def rotate_y(self, angle: float, rad=False, around=None) -> Self:
    """
    Rotate around y-axis. If angle is in radians set `rad=True`.

    Use `around` to define a pivoting point.
    """
    if angle == 0:
        return self
    LT = transformations.LinearTransform().rotate_y(angle, rad, around)
    return self.apply_transform(LT, fit=True, interpolation="linear")

rotate_z(angle, rad=False, around=None)

Rotate around z-axis. If angle is in radians set rad=True.

Use around to define a pivoting point.

Source code in vedo/volume/core.py
657
658
659
660
661
662
663
664
665
666
def rotate_z(self, angle: float, rad=False, around=None) -> Self:
    """
    Rotate around z-axis. If angle is in radians set `rad=True`.

    Use `around` to define a pivoting point.
    """
    if angle == 0:
        return self
    LT = transformations.LinearTransform().rotate_z(angle, rad, around)
    return self.apply_transform(LT, fit=True, interpolation="linear")

scalar_range()

Return the range of the scalar values.

Source code in vedo/volume/core.py
589
590
591
def scalar_range(self) -> np.ndarray:
    """Return the range of the scalar values."""
    return np.array(self.dataset.GetScalarRange())

scale_voxels(scale=1)

Scale the voxel content by factor scale.

Source code in vedo/volume/core.py
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
def scale_voxels(self, scale=1) -> Self:
    """Scale the voxel content by factor `scale`."""
    rsl = vtki.new("ImageReslice")
    rsl.SetInputData(self.dataset)
    rsl.SetScalarScale(scale)
    rsl.Update()
    self._update(rsl.GetOutput())
    self.pipeline = utils.OperationNode(
        "scale_voxels", comment=f"scale={scale}", parents=[self], c="#4cc9f0"
    )
    return self

shift(dx=0, dy=0, dz=0)

Shift the volumetric dataset by a vector. Same as PointAlgorithms.shift().

Source code in vedo/volume/core.py
627
628
629
630
631
632
633
def shift(self, dx=0, dy=0, dz=0) -> Self:
    """Shift the volumetric dataset by a vector. Same as `PointAlgorithms.shift()`."""
    if utils.is_sequence(dx):
        dx = utils.make3d(dx)
        dx, dy, dz = dx
    self.origin(self.origin() + np.array([dx, dy, dz]))
    return self

smooth_gaussian(sigma=(2, 2, 2), radius=None)

Performs a convolution of the input Volume with a gaussian.

Parameters:

Name Type Description Default
sigma (float, list)

standard deviation(s) in voxel units. A list can be given to smooth in the three direction differently.

(2, 2, 2)
radius (float, list)

radius factor(s) determine how far out the gaussian kernel will go before being clamped to zero. A list can be given too.

None
Source code in vedo/volume/core.py
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
def smooth_gaussian(self, sigma=(2, 2, 2), radius=None) -> Self:
    """
    Performs a convolution of the input Volume with a gaussian.

    Args:
        sigma (float, list):
            standard deviation(s) in voxel units.
            A list can be given to smooth in the three direction differently.
        radius (float, list):
            radius factor(s) determine how far out the gaussian
            kernel will go before being clamped to zero. A list can be given too.
    """
    gsf = vtki.new("ImageGaussianSmooth")
    gsf.SetDimensionality(3)
    gsf.SetInputData(self.dataset)
    if utils.is_sequence(sigma):
        gsf.SetStandardDeviations(sigma)
    else:
        gsf.SetStandardDeviation(sigma)
    if radius is not None:
        if utils.is_sequence(radius):
            gsf.SetRadiusFactors(radius)
        else:
            gsf.SetRadiusFactor(radius)
    gsf.Update()
    self._update(gsf.GetOutput())
    self.pipeline = utils.OperationNode(
        "smooth_gaussian", parents=[self], c="#4cc9f0"
    )
    return self

smooth_median(neighbours=(2, 2, 2))

Median filter that replaces each pixel with the median value from a rectangular neighborhood around that pixel.

Source code in vedo/volume/core.py
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
def smooth_median(self, neighbours=(2, 2, 2)) -> Self:
    """
    Median filter that replaces each pixel with the median value
    from a rectangular neighborhood around that pixel.
    """
    imgm = vtki.new("ImageMedian3D")
    imgm.SetInputData(self.dataset)
    if utils.is_sequence(neighbours):
        imgm.SetKernelSize(neighbours[0], neighbours[1], neighbours[2])
    else:
        imgm.SetKernelSize(neighbours, neighbours, neighbours)
    imgm.Update()
    self._update(imgm.GetOutput())
    self.pipeline = utils.OperationNode(
        "smooth_median", parents=[self], c="#4cc9f0"
    )
    return self

spacing(s=None)

Set/get the voxels size in the 3 dimensions.

Source code in vedo/volume/core.py
593
594
595
596
597
598
def spacing(self, s=None) -> Self | Iterable[float]:
    """Set/get the voxels size in the 3 dimensions."""
    if s is not None:
        self.dataset.SetSpacing(s)
        return self
    return np.array(self.dataset.GetSpacing())

threshold(above=None, below=None, replace=None, replace_value=None)

Binary or continuous volume thresholding. Find the voxels that contain a value above/below the input values and replace them with a new value (default is 0).

Source code in vedo/volume/core.py
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
def threshold(
    self, above=None, below=None, replace=None, replace_value=None
) -> Self:
    """
    Binary or continuous volume thresholding.
    Find the voxels that contain a value above/below the input values
    and replace them with a new value (default is 0).
    """
    th = vtki.new("ImageThreshold")
    th.SetInputData(self.dataset)

    # sanity checks
    if above is not None and below is not None:
        if above == below:
            return self
        if above > below:
            vedo.logger.warning("in volume.threshold(), above > below, skip.")
            return self

    ## cases
    if below is not None and above is not None:
        th.ThresholdBetween(above, below)

    elif above is not None:
        th.ThresholdByUpper(above)

    elif below is not None:
        th.ThresholdByLower(below)

    ##
    if replace is not None:
        th.SetReplaceIn(True)
        th.SetInValue(replace)
    else:
        th.SetReplaceIn(False)

    if replace_value is not None:
        th.SetReplaceOut(True)
        th.SetOutValue(replace_value)
    else:
        th.SetReplaceOut(False)

    th.Update()
    self._update(th.GetOutput())
    self.pipeline = utils.OperationNode("threshold", parents=[self], c="#4cc9f0")
    return self

tonumpy()

Get read-write access to voxels of a Volume object as a numpy array.

When you set values in the output image, you don't want numpy to reallocate the array but instead set values in the existing array, so use the [:] operator.

Examples:

arr[:] = arr*2 + 15

If the array is modified add a call to: volume.modified() when all your modifications are completed.

Source code in vedo/volume/core.py
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
def tonumpy(self) -> np.ndarray:
    """
    Get read-write access to voxels of a Volume object as a numpy array.

    When you set values in the output image, you don't want numpy to reallocate the array
    but instead set values in the existing array, so use the [:] operator.

    Examples:
        `arr[:] = arr*2 + 15`

    If the array is modified add a call to:
    `volume.modified()`
    when all your modifications are completed.
    """
    narray_shape = tuple(reversed(self.dataset.GetDimensions()))

    scals = self.dataset.GetPointData().GetScalars()
    comps = scals.GetNumberOfComponents()
    if comps == 1:
        narray = utils.vtk2numpy(scals).reshape(narray_shape)
        narray = np.transpose(narray, axes=[2, 1, 0])
    else:
        narray = utils.vtk2numpy(scals).reshape(*narray_shape, comps)
        narray = np.transpose(narray, axes=[2, 1, 0, 3])

    # narray = utils.vtk2numpy(self.dataset.GetPointData().GetScalars()).reshape(narray_shape)
    # narray = np.transpose(narray, axes=[2, 1, 0])
    return narray

topoints()

Extract all image voxels as points. This function takes an input Volume and creates an Mesh that contains the points and the point attributes.

Examples:

Source code in vedo/volume/core.py
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
def topoints(self) -> vedo.Points:
    """
    Extract all image voxels as points.
    This function takes an input `Volume` and creates an `Mesh`
    that contains the points and the point attributes.

    Examples:
        - [vol2points.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/vol2points.py)
    """
    v2p = vtki.new("ImageToPoints")
    v2p.SetInputData(self.dataset)
    v2p.Update()
    mpts = vedo.Points(v2p.GetOutput())
    mpts.pipeline = utils.OperationNode(
        "topoints", parents=[self], c="#4cc9f0:#e9c46a"
    )
    return mpts

warp(source, target, sigma=1, mode='3d', fit=True)

Warp volume scalars within a Volume by specifying source and target sets of points.

Parameters:

Name Type Description Default
source (Points, list)

the list of source points

required
target (Points, list)

the list of target points

required
fit bool

fit/adapt the old bounding box to the warped geometry

True
Source code in vedo/volume/core.py
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
def warp(
    self,
    source: vedo.Points | list,
    target: vedo.Points | list,
    sigma=1,
    mode="3d",
    fit=True,
) -> Self:
    """
    Warp volume scalars within a Volume by specifying
    source and target sets of points.

    Args:
        source (Points, list):
            the list of source points
        target (Points, list):
            the list of target points
        fit (bool):
            fit/adapt the old bounding box to the warped geometry
    """
    if isinstance(source, vedo.Points):
        source = source.coordinates
    if isinstance(target, vedo.Points):
        target = target.coordinates

    NLT = transformations.NonLinearTransform()
    NLT.source_points = source
    NLT.target_points = target
    NLT.sigma = sigma
    NLT.mode = mode

    self.apply_transform(NLT, fit=fit)
    self.pipeline = utils.OperationNode("warp", parents=[self], c="#4cc9f0")
    return self

slicing

VolumeSlicingMixin

Source code in vedo/volume/slicing.py
 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
class VolumeSlicingMixin:
    def xslice(self, i: int) -> Mesh:
        """Extract the slice at index `i` of volume along x-axis."""
        vslice = vtki.new("ImageDataGeometryFilter")
        vslice.SetInputData(self.dataset)
        nx, ny, nz = self.dataset.GetDimensions()
        if i > nx - 1:
            i = nx - 1
        vslice.SetExtent(i, i, 0, ny, 0, nz)
        vslice.Update()
        m = Mesh(vslice.GetOutput())
        m.pipeline = utils.OperationNode(
            f"xslice {i}", parents=[self], c="#4cc9f0:#e9c46a"
        )
        return m

    def yslice(self, j: int) -> Mesh:
        """Extract the slice at index `j` of volume along y-axis."""
        vslice = vtki.new("ImageDataGeometryFilter")
        vslice.SetInputData(self.dataset)
        nx, ny, nz = self.dataset.GetDimensions()
        if j > ny - 1:
            j = ny - 1
        vslice.SetExtent(0, nx, j, j, 0, nz)
        vslice.Update()
        m = Mesh(vslice.GetOutput())
        m.pipeline = utils.OperationNode(
            f"yslice {j}", parents=[self], c="#4cc9f0:#e9c46a"
        )
        return m

    def zslice(self, k: int) -> Mesh:
        """Extract the slice at index `i` of volume along z-axis."""
        vslice = vtki.new("ImageDataGeometryFilter")
        vslice.SetInputData(self.dataset)
        nx, ny, nz = self.dataset.GetDimensions()
        if k > nz - 1:
            k = nz - 1
        vslice.SetExtent(0, nx, 0, ny, k, k)
        vslice.Update()
        m = Mesh(vslice.GetOutput())
        m.pipeline = utils.OperationNode(
            f"zslice {k}", parents=[self], c="#4cc9f0:#e9c46a"
        )
        return m

    def slice_plane(
        self,
        origin: list[float],
        normal: list[float],
        autocrop=False,
        border=0.5,
        mode="linear",
    ) -> Mesh:
        """
        Extract the slice along a given plane position and normal.

        Two metadata arrays are added to the output Mesh:
            - "shape" : contains the shape of the slice
            - "original_bounds" : contains the original bounds of the slice
        One can access them with e.g. `myslice.metadata["shape"]`.

        Args:
            origin (list[float]): Position of the plane.
            normal (list[float]): Plane normal.
            autocrop (bool): Crop the output to the minimal possible size.
            border (float): Add a border to the output slice.
            mode (str): Interpolation mode, one of `"linear"`, `"nearest"`, or `"cubic"`.

        Examples:
            - [slice_plane1.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/slice_plane1.py)

                ![](https://vedo.embl.es/images/volumetric/slicePlane1.gif)

            - [slice_plane2.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/slice_plane2.py)

                ![](https://vedo.embl.es/images/volumetric/slicePlane2.png)

            - [slice_plane3.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/slice_plane3.py)

                ![](https://vedo.embl.es/images/volumetric/slicePlane3.jpg)
        """
        newaxis = utils.versor(normal)
        pos = np.array(origin)
        initaxis = (0, 0, 1)
        crossvec = np.cross(initaxis, newaxis)
        angle = np.arccos(np.dot(initaxis, newaxis))
        T = vtki.vtkTransform()
        T.PostMultiply()
        T.RotateWXYZ(np.rad2deg(angle), crossvec.tolist())
        T.Translate(pos.tolist())

        reslice = vtki.new("ImageReslice")
        reslice.SetResliceAxes(T.GetMatrix())
        reslice.SetInputData(self.dataset)
        reslice.SetOutputDimensionality(2)
        reslice.SetTransformInputSampling(True)
        reslice.SetGenerateStencilOutput(False)
        if border:
            reslice.SetBorder(True)
            reslice.SetBorderThickness(border)
        else:
            reslice.SetBorder(False)
        if mode == "linear":
            reslice.SetInterpolationModeToLinear()
        elif mode == "nearest":
            reslice.SetInterpolationModeToNearestNeighbor()
        elif mode == "cubic":
            reslice.SetInterpolationModeToCubic()
        else:
            vedo.logger.error(f"in slice_plane(): unknown interpolation mode {mode}")
            raise ValueError()
        reslice.SetAutoCropOutput(not autocrop)
        reslice.Update()
        img = reslice.GetOutput()

        vslice = vtki.new("ImageDataGeometryFilter")
        vslice.SetInputData(img)
        vslice.Update()

        msh = Mesh(vslice.GetOutput()).apply_transform(T)
        msh.properties.LightingOff()

        d0, d1, _ = img.GetDimensions()
        varr1 = utils.numpy2vtk([d1, d0], name="shape")
        varr2 = utils.numpy2vtk(img.GetBounds(), name="original_bounds")
        msh.dataset.GetFieldData().AddArray(varr1)
        msh.dataset.GetFieldData().AddArray(varr2)
        msh.pipeline = utils.OperationNode(
            "slice_plane", parents=[self], c="#4cc9f0:#e9c46a"
        )
        return msh

    def slab(self, slice_range=(), axis="z", operation="mean") -> Mesh:
        """
        Extract a slab from a `Volume` by combining
        all of the slices of an image to create a single slice.

        Returns a `Mesh` containing metadata which
        can be accessed with e.g. `mesh.metadata["slab_range"]`.

        Metadata:
            slab_range (list):
                contains the range of slices extracted
            slab_axis (str):
                contains the axis along which the slab was extracted
            slab_operation (str):
                contains the operation performed on the slab
            slab_bounding_box (list):
                contains the bounding box of the slab

        Args:
            slice_range (list): Range of slices to extract.
            axis (str): Axis along which to extract the slab.
            operation (str): Operation to perform on the slab. Allowed values are
                `"sum"`, `"min"`, `"max"`, and `"mean"`.

        Examples:
            - [slab.py](https://github.com/marcomusy/vedo/blob/master/examples/volumetric/slab_vol.py)

            ![](https://vedo.embl.es/images/volumetric/slab_vol.jpg)
        """
        if len(slice_range) != 2:
            vedo.logger.error("in slab(): slice_range is empty or invalid")
            raise ValueError()
        slab_range = [int(slice_range[0]), int(slice_range[1])]

        islab = vtki.new("ImageSlab")
        islab.SetInputData(self.dataset)

        if operation in ["+", "add", "sum"]:
            islab.SetOperationToSum()
        elif "min" in operation:
            islab.SetOperationToMin()
        elif "max" in operation:
            islab.SetOperationToMax()
        elif "mean" in operation:
            islab.SetOperationToMean()
        else:
            vedo.logger.error(f"in slab(): unknown operation {operation}")
            raise ValueError()

        dims = self.dimensions()
        if axis == "x":
            islab.SetOrientationToX()
            if slab_range[0] > dims[0] - 1:
                slab_range[0] = int(dims[0] - 1)
            if slab_range[1] > dims[0] - 1:
                slab_range[1] = int(dims[0] - 1)
        elif axis == "y":
            islab.SetOrientationToY()
            if slab_range[0] > dims[1] - 1:
                slab_range[0] = int(dims[1] - 1)
            if slab_range[1] > dims[1] - 1:
                slab_range[1] = int(dims[1] - 1)
        elif axis == "z":
            islab.SetOrientationToZ()
            if slab_range[0] > dims[2] - 1:
                slab_range[0] = int(dims[2] - 1)
            if slab_range[1] > dims[2] - 1:
                slab_range[1] = int(dims[2] - 1)
        else:
            vedo.logger.error(f"Error in slab(): unknown axis {axis}")
            raise RuntimeError()

        islab.SetSliceRange(slab_range)
        islab.Update()

        msh = Mesh(islab.GetOutput()).lighting("off")
        msh.mapper.SetLookupTable(utils.ctf2lut(self, msh))
        msh.mapper.SetScalarRange(self.scalar_range())

        msh.metadata["slab_range"] = slab_range
        msh.metadata["slab_axis"] = axis
        msh.metadata["slab_operation"] = operation

        # compute bounds of slab
        origin = list(self.origin())
        spacing = list(self.spacing())
        if axis == "x":
            msh.metadata["slab_bounding_box"] = [
                origin[0] + slab_range[0] * spacing[0],
                origin[0] + slab_range[1] * spacing[0],
                origin[1],
                origin[1] + dims[1] * spacing[1],
                origin[2],
                origin[2] + dims[2] * spacing[2],
            ]
        elif axis == "y":
            msh.metadata["slab_bounding_box"] = [
                origin[0],
                origin[0] + dims[0] * spacing[0],
                origin[1] + slab_range[0] * spacing[1],
                origin[1] + slab_range[1] * spacing[1],
                origin[2],
                origin[2] + dims[2] * spacing[2],
            ]
        elif axis == "z":
            msh.metadata["slab_bounding_box"] = [
                origin[0],
                origin[0] + dims[0] * spacing[0],
                origin[1],
                origin[1] + dims[1] * spacing[1],
                origin[2] + slab_range[0] * spacing[2],
                origin[2] + slab_range[1] * spacing[2],
            ]

        msh.pipeline = utils.OperationNode(
            f"slab{slab_range}",
            comment=f"axis={axis}, operation={operation}",
            parents=[self],
            c="#4cc9f0:#e9c46a",
        )
        msh.name = "SlabMesh"
        return msh

slab(slice_range=(), axis='z', operation='mean')

Extract a slab from a Volume by combining all of the slices of an image to create a single slice.

Returns a Mesh containing metadata which can be accessed with e.g. mesh.metadata["slab_range"].

Parameters:

Name Type Description Default
slice_range list

Range of slices to extract.

()
axis str

Axis along which to extract the slab.

'z'
operation str

Operation to perform on the slab. Allowed values are "sum", "min", "max", and "mean".

'mean'

Examples:

Source code in vedo/volume/slicing.py
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
def slab(self, slice_range=(), axis="z", operation="mean") -> Mesh:
    """
    Extract a slab from a `Volume` by combining
    all of the slices of an image to create a single slice.

    Returns a `Mesh` containing metadata which
    can be accessed with e.g. `mesh.metadata["slab_range"]`.

    Metadata:
        slab_range (list):
            contains the range of slices extracted
        slab_axis (str):
            contains the axis along which the slab was extracted
        slab_operation (str):
            contains the operation performed on the slab
        slab_bounding_box (list):
            contains the bounding box of the slab

    Args:
        slice_range (list): Range of slices to extract.
        axis (str): Axis along which to extract the slab.
        operation (str): Operation to perform on the slab. Allowed values are
            `"sum"`, `"min"`, `"max"`, and `"mean"`.

    Examples:
        - [slab.py](https://github.com/marcomusy/vedo/blob/master/examples/volumetric/slab_vol.py)

        ![](https://vedo.embl.es/images/volumetric/slab_vol.jpg)
    """
    if len(slice_range) != 2:
        vedo.logger.error("in slab(): slice_range is empty or invalid")
        raise ValueError()
    slab_range = [int(slice_range[0]), int(slice_range[1])]

    islab = vtki.new("ImageSlab")
    islab.SetInputData(self.dataset)

    if operation in ["+", "add", "sum"]:
        islab.SetOperationToSum()
    elif "min" in operation:
        islab.SetOperationToMin()
    elif "max" in operation:
        islab.SetOperationToMax()
    elif "mean" in operation:
        islab.SetOperationToMean()
    else:
        vedo.logger.error(f"in slab(): unknown operation {operation}")
        raise ValueError()

    dims = self.dimensions()
    if axis == "x":
        islab.SetOrientationToX()
        if slab_range[0] > dims[0] - 1:
            slab_range[0] = int(dims[0] - 1)
        if slab_range[1] > dims[0] - 1:
            slab_range[1] = int(dims[0] - 1)
    elif axis == "y":
        islab.SetOrientationToY()
        if slab_range[0] > dims[1] - 1:
            slab_range[0] = int(dims[1] - 1)
        if slab_range[1] > dims[1] - 1:
            slab_range[1] = int(dims[1] - 1)
    elif axis == "z":
        islab.SetOrientationToZ()
        if slab_range[0] > dims[2] - 1:
            slab_range[0] = int(dims[2] - 1)
        if slab_range[1] > dims[2] - 1:
            slab_range[1] = int(dims[2] - 1)
    else:
        vedo.logger.error(f"Error in slab(): unknown axis {axis}")
        raise RuntimeError()

    islab.SetSliceRange(slab_range)
    islab.Update()

    msh = Mesh(islab.GetOutput()).lighting("off")
    msh.mapper.SetLookupTable(utils.ctf2lut(self, msh))
    msh.mapper.SetScalarRange(self.scalar_range())

    msh.metadata["slab_range"] = slab_range
    msh.metadata["slab_axis"] = axis
    msh.metadata["slab_operation"] = operation

    # compute bounds of slab
    origin = list(self.origin())
    spacing = list(self.spacing())
    if axis == "x":
        msh.metadata["slab_bounding_box"] = [
            origin[0] + slab_range[0] * spacing[0],
            origin[0] + slab_range[1] * spacing[0],
            origin[1],
            origin[1] + dims[1] * spacing[1],
            origin[2],
            origin[2] + dims[2] * spacing[2],
        ]
    elif axis == "y":
        msh.metadata["slab_bounding_box"] = [
            origin[0],
            origin[0] + dims[0] * spacing[0],
            origin[1] + slab_range[0] * spacing[1],
            origin[1] + slab_range[1] * spacing[1],
            origin[2],
            origin[2] + dims[2] * spacing[2],
        ]
    elif axis == "z":
        msh.metadata["slab_bounding_box"] = [
            origin[0],
            origin[0] + dims[0] * spacing[0],
            origin[1],
            origin[1] + dims[1] * spacing[1],
            origin[2] + slab_range[0] * spacing[2],
            origin[2] + slab_range[1] * spacing[2],
        ]

    msh.pipeline = utils.OperationNode(
        f"slab{slab_range}",
        comment=f"axis={axis}, operation={operation}",
        parents=[self],
        c="#4cc9f0:#e9c46a",
    )
    msh.name = "SlabMesh"
    return msh

slice_plane(origin, normal, autocrop=False, border=0.5, mode='linear')

Extract the slice along a given plane position and normal.

One can access them with e.g. myslice.metadata["shape"].

Parameters:

Name Type Description Default
origin list[float]

Position of the plane.

required
normal list[float]

Plane normal.

required
autocrop bool

Crop the output to the minimal possible size.

False
border float

Add a border to the output slice.

0.5
mode str

Interpolation mode, one of "linear", "nearest", or "cubic".

'linear'

Examples:

Source code in vedo/volume/slicing.py
 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
def slice_plane(
    self,
    origin: list[float],
    normal: list[float],
    autocrop=False,
    border=0.5,
    mode="linear",
) -> Mesh:
    """
    Extract the slice along a given plane position and normal.

    Two metadata arrays are added to the output Mesh:
        - "shape" : contains the shape of the slice
        - "original_bounds" : contains the original bounds of the slice
    One can access them with e.g. `myslice.metadata["shape"]`.

    Args:
        origin (list[float]): Position of the plane.
        normal (list[float]): Plane normal.
        autocrop (bool): Crop the output to the minimal possible size.
        border (float): Add a border to the output slice.
        mode (str): Interpolation mode, one of `"linear"`, `"nearest"`, or `"cubic"`.

    Examples:
        - [slice_plane1.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/slice_plane1.py)

            ![](https://vedo.embl.es/images/volumetric/slicePlane1.gif)

        - [slice_plane2.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/slice_plane2.py)

            ![](https://vedo.embl.es/images/volumetric/slicePlane2.png)

        - [slice_plane3.py](https://github.com/marcomusy/vedo/tree/master/examples/volumetric/slice_plane3.py)

            ![](https://vedo.embl.es/images/volumetric/slicePlane3.jpg)
    """
    newaxis = utils.versor(normal)
    pos = np.array(origin)
    initaxis = (0, 0, 1)
    crossvec = np.cross(initaxis, newaxis)
    angle = np.arccos(np.dot(initaxis, newaxis))
    T = vtki.vtkTransform()
    T.PostMultiply()
    T.RotateWXYZ(np.rad2deg(angle), crossvec.tolist())
    T.Translate(pos.tolist())

    reslice = vtki.new("ImageReslice")
    reslice.SetResliceAxes(T.GetMatrix())
    reslice.SetInputData(self.dataset)
    reslice.SetOutputDimensionality(2)
    reslice.SetTransformInputSampling(True)
    reslice.SetGenerateStencilOutput(False)
    if border:
        reslice.SetBorder(True)
        reslice.SetBorderThickness(border)
    else:
        reslice.SetBorder(False)
    if mode == "linear":
        reslice.SetInterpolationModeToLinear()
    elif mode == "nearest":
        reslice.SetInterpolationModeToNearestNeighbor()
    elif mode == "cubic":
        reslice.SetInterpolationModeToCubic()
    else:
        vedo.logger.error(f"in slice_plane(): unknown interpolation mode {mode}")
        raise ValueError()
    reslice.SetAutoCropOutput(not autocrop)
    reslice.Update()
    img = reslice.GetOutput()

    vslice = vtki.new("ImageDataGeometryFilter")
    vslice.SetInputData(img)
    vslice.Update()

    msh = Mesh(vslice.GetOutput()).apply_transform(T)
    msh.properties.LightingOff()

    d0, d1, _ = img.GetDimensions()
    varr1 = utils.numpy2vtk([d1, d0], name="shape")
    varr2 = utils.numpy2vtk(img.GetBounds(), name="original_bounds")
    msh.dataset.GetFieldData().AddArray(varr1)
    msh.dataset.GetFieldData().AddArray(varr2)
    msh.pipeline = utils.OperationNode(
        "slice_plane", parents=[self], c="#4cc9f0:#e9c46a"
    )
    return msh

xslice(i)

Extract the slice at index i of volume along x-axis.

Source code in vedo/volume/slicing.py
20
21
22
23
24
25
26
27
28
29
30
31
32
33
def xslice(self, i: int) -> Mesh:
    """Extract the slice at index `i` of volume along x-axis."""
    vslice = vtki.new("ImageDataGeometryFilter")
    vslice.SetInputData(self.dataset)
    nx, ny, nz = self.dataset.GetDimensions()
    if i > nx - 1:
        i = nx - 1
    vslice.SetExtent(i, i, 0, ny, 0, nz)
    vslice.Update()
    m = Mesh(vslice.GetOutput())
    m.pipeline = utils.OperationNode(
        f"xslice {i}", parents=[self], c="#4cc9f0:#e9c46a"
    )
    return m

yslice(j)

Extract the slice at index j of volume along y-axis.

Source code in vedo/volume/slicing.py
35
36
37
38
39
40
41
42
43
44
45
46
47
48
def yslice(self, j: int) -> Mesh:
    """Extract the slice at index `j` of volume along y-axis."""
    vslice = vtki.new("ImageDataGeometryFilter")
    vslice.SetInputData(self.dataset)
    nx, ny, nz = self.dataset.GetDimensions()
    if j > ny - 1:
        j = ny - 1
    vslice.SetExtent(0, nx, j, j, 0, nz)
    vslice.Update()
    m = Mesh(vslice.GetOutput())
    m.pipeline = utils.OperationNode(
        f"yslice {j}", parents=[self], c="#4cc9f0:#e9c46a"
    )
    return m

zslice(k)

Extract the slice at index i of volume along z-axis.

Source code in vedo/volume/slicing.py
50
51
52
53
54
55
56
57
58
59
60
61
62
63
def zslice(self, k: int) -> Mesh:
    """Extract the slice at index `i` of volume along z-axis."""
    vslice = vtki.new("ImageDataGeometryFilter")
    vslice.SetInputData(self.dataset)
    nx, ny, nz = self.dataset.GetDimensions()
    if k > nz - 1:
        k = nz - 1
    vslice.SetExtent(0, nx, 0, ny, k, k)
    vslice.Update()
    m = Mesh(vslice.GetOutput())
    m.pipeline = utils.OperationNode(
        f"zslice {k}", parents=[self], c="#4cc9f0:#e9c46a"
    )
    return m