get_planes
#
Import packages#
import numpy as np
import porespy as ps
import scipy.ndimage as spim
import matplotlib.pyplot as plt
import skimage
ps.visualization.set_mpl_style()
/opt/hostedtoolcache/Python/3.8.16/x64/lib/python3.8/site-packages/openpnm/algorithms/_invasion_percolation.py:358: NumbaDeprecationWarning: The 'nopython' keyword argument was not supplied to the 'numba.jit' decorator. The implicit default value for this argument is currently False, but it will be changed to True in Numba 0.59.0. See https://numba.readthedocs.io/en/stable/reference/deprecation.html#deprecation-of-object-mode-fall-back-behaviour-when-using-jit for details.
def _find_trapped_pores(inv_seq, indices, indptr, outlets): # pragma: no cover
Generate image for testing#
im = ps.generators.blobs([100, 100, 100], blobiness=[1, 2, 3])
fig, ax = plt.subplots(figsize=[4, 4]);
ax.imshow(im[50, ...])
ax.axis(False);

Demonstrate function#
im1,im2,im3 = ps.tools.get_planes(im=im, squeeze=True)
fig, ax = plt.subplots(1, 3, figsize=[8, 4]);
ax[0].axis(False)
ax[0].imshow(im1)
ax[1].axis(False)
ax[1].imshow(im2)
ax[2].axis(False)
ax[2].imshow(im3);
