Skip to content

ElsevierSoftwareX/SOFTX-D-18-00011

 
 

Repository files navigation

image

image

image

image

Overview of pytrax

pytrax is an implementation of a random walk to calculate the tortuosity tensor of images.

Example Usage

The following code block illustrates how to use pytrax to perform a random walk simulation in open space, view the results and plot the mean square displacement to get the tortuosity:

>>> import pytrax as pt
>>> import numpy as np
>>> image = np.ones([3, 3])
>>> rw = pt.RandomWalk(image)
>>> rw.run(1000, 1000)
>>> rw.plot_walk_2d()
>>> rw.calc_msd()
>>> rw.plot_msd()

About

Random walk to calculate the tortuosity tensor of images. To cite this software publication: https://www.sciencedirect.com/science/article/pii/S2352711019302286

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%