Tool to build synthetic Particle Image Velocimetry (PIV) images
Project description
synpivimage - A transparent way of generating synthetic PIV images
This tool lets you generate synthetic Particle Image Velocimetry (PIV) images based on methods described in literature (mainly based on "Particle Image Velocimetry: A Practical Guide" by Raffel et al. (https://doi.org/10.1007/978-3-319-68852-7)).
Highlights
- The user has full control over the parameters.
- Data and metadata can be stored in a single HDF5 file or classically in TIF files.
- The metadata (camera and laser settings) can be stored in a separate JSON-LD file, which adheres to the state of the art way of storing metadata, allowing for easy integration into any other software or database.
Installation
Manual installation
Clone the repository
git clone https://github.com/matthiasprobst/synpivimage
Then navigate into the repo directory and install the package:
cd synpivimage/
pip install .
For development adjust the installation to:
pip install -e .
Other installation options: For running tests:
pip install .[test]
For using the GUI (experimentally at this stage!!! see gui doc section):
pip install .[gui]
For installing everything:
pip install .[all]
Via pypi
Not yet available
Documentation
A comprehensive documentation can be found here.
Minimal example:
import numpy as np
import synpivimage
cam = synpivimage.Camera(
nx=256,
ny=256,
bit_depth=16,
qe=1,
sensitivity=1,
baseline_noise=50,
dark_noise=10,
shot_noise=False,
fill_ratio_x=1.0,
fill_ratio_y=1.0,
particle_image_diameter=4 # px
)
laser = synpivimage.Laser(
width=0.25,
shape_factor=2
)
n = 100
particles = synpivimage.Particles(
x=np.random.uniform(-3, cam.nx - 1, n),
y=np.random.uniform(-4, cam.ny - 1, n),
z=np.zeros(n),
size=np.ones(n) * 2,
)
imgA, partA = synpivimage.take_image(laser,
cam,
particles,
particle_peak_count=1000)
displaced_particles = partA.displace(dx=2.1, dy=3.4)
imgB, partB = synpivimage.take_image(laser,
cam,
displaced_particles,
particle_peak_count=1000)
with synpivimage.Imwriter(case_name="test_case",
camera=cam,
laser=laser) as iw:
iw.writeA(0, imgA, partA)
iw.writeB(0, imgB, partB)
with synpivimage.HDF5Writer(filename='data.hdf',
n_images=1,
camera=cam,
laser=laser) as hw:
hw.writeA(0, imgA, partA)
hw.writeB(0, imgB, partB)
GUI
Is experimental and more for demonstrating and debugging purposes.
Go to synpivimage/gui and run python core.py to start the GUI.
Developers
Testing
Call the following inside the package directory to run the tests (with coverage)
pytest --cov=synpivimage --cov-report html
Contributing
Contributions are welcome! Please open an issue or a pull request.
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file synpivimage-1.0.0a9.tar.gz.
File metadata
- Download URL: synpivimage-1.0.0a9.tar.gz
- Upload date:
- Size: 48.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b8aeb95b262dfc1a53bda2998ea4fed0d5457da3b2cb209dc7bf14dc4e017af
|
|
| MD5 |
9d451975863e13dd10a7ccdcd6c5e903
|
|
| BLAKE2b-256 |
4141ca3c8a7092caa97093fcd4d32ac692ccf24130613480adb1ee58ac26f86d
|
File details
Details for the file synpivimage-1.0.0a9-py3-none-any.whl.
File metadata
- Download URL: synpivimage-1.0.0a9-py3-none-any.whl
- Upload date:
- Size: 43.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e0cb43c5e477f15df46e920efb61cc0c16351b45d07eca3cdd86df0cddc9eec
|
|
| MD5 |
2c97aba41e40ca1334657e199bfa39fd
|
|
| BLAKE2b-256 |
aff683d78d2ac87b854c6ff07de835ad6396f256722dd1a52e93d36b4c9ac432
|