-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement PIV uncertainty quantification #58
Comments
Code is implemented and I did some tests, but the results are not good yet. I think I have to make sure that peaks of the multiplication matrix are only located in regions that really have particles in both images. Otherwise the peaks must be reliably rejected. Maybe do something like: only take the highest 5 peaks in the image or so... |
I will post the code snippet here (although it is already in the latest release, but commented out), ideally in a small script that shows the process. Then everyone is cordially invited to help with this... Doesn't seem to be super difficult in principle, but I am doing something wrong I think. |
So here is everything that is needed... I think it doesn't look that bad actually...:
|
I can't attach the data here for some reason, so here it is: You can just run the script to generate the above images. |
here is the updated & latest code giving pretty good looking results now: |
Hi, In the last provided script with the name "uncertainty_PIVlab" you have used the function of "multispot_SUBPIXGAUSS". However, there is no such defined function neither by the PIVlab software nor the first reference. Could you please specify this function? Many thanks |
Hi, it is in the file uncertainty_PIVlab.zip in uncertainty_PIVlab.m |
At first, I highly appreciate your reply. Moreover, I have used the PIVlab to post-process my experimental results, and I need to find its uncertainty. I have already read the mentioned paper and made a look at your code and referenced code. However, it was looking difficult to implement it for the experimental data. Therefore, I was wondering to ask have you ever made any guidance that could help me to measure the uncertainty of the PIV experiment by using your provided script? Thanks a lot |
https://doi.org/10.1088/0957-0233/24/4/045302 , page 6 shows the process:
After image deformation: multiply images, then threshold. White pixels represent particles tht are present in A and B. Use subpixel estimator to find displacement of each particle in A and B. The "mismatch" is then a measure for the uncertainty (after some statistical stuff that I still have to look at).
Matlab code is available here:
http://piv.de/uncertainty/UncertaintyCodes/ParticleDisparity_Code.zip
... but it is probably better to code on my own to understand whats going on.
The text was updated successfully, but these errors were encountered: