extract_subsection#

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()
[17:44:45] ERROR    PARDISO solver not installed, run `pip install pypardiso`. Otherwise,          _workspace.py:56
                    simulations will be slow. Apple M chips not supported.                                         

Generate image for testing#

im = np.random.rand(100, 100)
fig, ax = plt.subplots(figsize=[4, 4])
ax.axis(False)
ax.imshow(im)
<matplotlib.image.AxesImage at 0x7fca4910a380>
../../../_images/6a091532dacb20ba150e755287a4df9bc879d70303ea7b60cf818f1f7c6e7846.png

Demonstration#

This tool was designed to ‘uppad’ an image that has had an equal amount of padding applied to all sides. The arguments assume that you know the original size of the image and wish to retrieve it back:

im2 = np.pad(im, pad_width=20, constant_values=0)
im = ps.tools.extract_subsection(im=im2, shape=im.shape)
fig, ax = plt.subplots(1, 2, figsize=[8, 4])
ax[0].axis(False)
ax[0].imshow(im2);
ax[1].axis(False)
ax[1].imshow(im);
../../../_images/a7c270df5e57d23608078dcba4b38a6212ce5d17cad57b00392e237aa515cdca.png