The implementation of the one-step direct correlation with different size of the interrogation window and the search area. The increased size of the search areas cope with the problem of loss of pairs due to in-plane motion, allowing for a smaller interrogation window size, without increasing the number of outlier vectors.
See:
Particle-Imaging Techniques for Experimental Fluid Mechanics
Annual Review of Fluid Mechanics Vol. 23: 261-304 (Volume publication date January 1991) DOI: 10.1146/annurev.fl.23.010191.001401
Parameters : | frame_a : 2d np.ndarray
frame_b : 2d np.ndarray
window_size : int
overlap : int
dt : float
search_area_size : int
nfftx : int
nffty : int
|
---|---|
Returns : | u : 2d np.ndarray
v : 2d np.ndarray
sig2noise : 2d np.ndarray
|
Examples
>>> u, v, sn = openpiv.lib.extended_search_area_piv( frame_a, frame_b, window_size=16, overlap=8, search_area_size=48, dt=0.1)