Releases: erdogant/findpeaks
Releases · erdogant/findpeaks
v2.5.1
v2.5.0
- Denoise filter *lee sigma" is added for (among others) SAR images by @carolinegoehner #20.
- The parameters
window
andcu
need to specified inparams={'window': 7, 'cu': 1}
See the documentation pages for the details!
Thank you for this awesome contribution @carolinegoehner
v2.4.7
v2.4.6
v2.4.5
v2.4.4
v2.4.3
- various fixes for plotting the persistence, and adding fontsize
# Import library
from findpeaks import findpeaks
# Initialize
fp = findpeaks(method='topology')
# Example 1d-vector
X = fp.import_example('1dpeaks')
# Fit topology method on the 1d-vector
results = fp.fit(X)
# Plot the results
fp.plot_persistence(fontsize_ax1=12, fontsize_ax2=14)
# Remove labels for ax1
fp.plot_persistence(fontsize_ax1=None, fontsize_ax2=14)
v2.4.2
v2.4.1
2.4.0
- verbosity messaging is now consistently encoded. Progress bar is only shown if verbose>=4. nothing is shown with verbose=0
- input parameter
params
changed intoparams_caerus
- bug fix for unicodebyte
- code refactoring
- docstrings with examples added for the filtering approaches
- pytests included in github pipeline