porespy.visualization.satn_to_panels#
- porespy.visualization.satn_to_panels(satn, im, bins=None, axis=0, slice=None, **kwargs)#
Produces a set of images with each panel containing one saturation
- Parameters:
satn (ndarray) – An image with each voxel indicating the global saturation at which it was invaded. 0 indicates solid and -1 indicates uninvaded.
im (ndarray) – A boolean image with
Truevalues indicating the void voxels andFalsefor solid.bins (int) – Indicates for which saturations images should be made. If an
intthen a list of equally space values between 0 and 1 is generated. IfNone(default) than all saturation values in the image are used.axis (int, optional) – If the image is 3D, a 2D image is extracted at the specified
slicetaken along this axis. If the image is 2D this is ignored.slice (int, optional) – If the image is 3D, a 2D image is extracted from this slice along the given
axis. IfNone, then a slice at the mid-point of the axis is returned. If 2D this is ignored.**kwargs (various) – Additional keyword arguments are sent to the
imshowfunction, such asinterpolation.
- Returns:
fig, ax – The same things as returned by
plt.subplots- Return type:
Matplotlib figure and axis objects
Examples
Click here to view online example.