Skip to content

Releases: erdogant/findpeaks

v2.5.1

13 Jul 20:10
Compare
Choose a tag to compare
  • add limit as parameter for plotting

v2.5.0

12 Jul 20:11
Compare
Choose a tag to compare
  • Denoise filter *lee sigma" is added for (among others) SAR images by @carolinegoehner #20.
  • The parameters window and cu need to specified in params={'window': 7, 'cu': 1}

See the documentation pages for the details!

Thank you for this awesome contribution @carolinegoehner

v2.4.7

20 May 18:38
Compare
Choose a tag to compare
  • Added xlim, ylim, zlim parameter for plot_mesh functionality.

v2.4.6

22 Mar 09:45
Compare
Choose a tag to compare

Update requirements

v2.4.5

24 Feb 22:29
Compare
Choose a tag to compare
  • added function to import image from URL location: fp.imread(path)
  • Update docststrings

v2.4.4

14 Oct 20:27
Compare
Choose a tag to compare
  • Fix in plot when using whitelist for valleys or peaks
  • Added xlabel and ylabel to plot
fp.plot(xlabel='x-axis', ylabel='yaxis')
fp.plot_persistence(xlabel='x-axis', ylabel='yaxis')

v2.4.3

05 Jun 11:09
Compare
Choose a tag to compare
  • 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

04 Jun 15:46
Compare
Choose a tag to compare
  • Fix for plot_persistence() that not always showed up

v2.4.1

20 May 18:09
Compare
Choose a tag to compare
  • Fix for removing verbose messages in case of mask
  • Fix in case of using caerus

2.4.0

05 Dec 15:32
Compare
Choose a tag to compare
  • verbosity messaging is now consistently encoded. Progress bar is only shown if verbose>=4. nothing is shown with verbose=0
  • input parameter params changed into params_caerus
  • bug fix for unicodebyte
  • code refactoring
  • docstrings with examples added for the filtering approaches
  • pytests included in github pipeline