Skip to content
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

Proof of concept on how to fix issues #531, #535 and #570 #574

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

amanita-citrina
Copy link

This pull request is intended as a proof of concept to fix several issues of the CWT:

The issues are due to some pecularities of the CWT implementation:

This pull request is intended as a starting point to remedy these problems.
The attached plots show that the problems described in #531 and #535 are no longer visible.

  • The integration/differentation step has been removed.
  • Sample values are taken at the correct sampling instants.
  • If the range of the wavelet includes 0, samples are chosen such that 0 is a sampling instant.

Nevertheless, there are some open issues that have to be addressed:

  • Currently, the samples are interpolated from 2**precision samples of the wavelet, which is a computationally efficient solution. There seems to be no need to increase precision beyond 10. However, this creates a dependency on scipy.interpolate due to the cubic spline interpolation.
    There are at least two alternatives:
    • Apply linear interpolation with np.interp, which might impact accuracy
    • Evaluate the original wavelet, which likely increases computation time
  • The scaling seems correct, but is it?
  • Sampling instants might exclude upper and/or lower boundary points.
  • One pywt test fails (test_cwt_small_scales).
    Issue_531
    Issue_535

@grlee77
Copy link
Contributor

grlee77 commented Oct 12, 2020

Thanks for looking at this @amanita-citrina. I will ping @OverLordGoldDragon, who has also been looking at CWT recently (e.g. #570), for awareness.

In general, it will be good for PyWavelets to have additional contributors working on CWT because I am personally more familiar with the DWT and SWT code.

There are probably other test cases comparing to legacy Matlab outputs that will fail here, but I don't know that we need to maintain that compatibility long-term going forward. Matlab's own CWT since 2015 or so has defaulted to a newer implementation and no longer matches the behavior that those cases tested against.

@OverLordGoldDragon
Copy link

I'll take a closer look later - for now, I'm opposed to ridding of the integrated wavelet; it confers advantages over scipy's direct wavelet recomputing approach. In-depth here and here.

@OverLordGoldDragon
Copy link

OverLordGoldDragon commented Oct 14, 2020

Had a look; this looks more like a PR for scipy's CWT. Have a look at more comparisons here, also against another CWT I'm working on right now which may beat all (pywt, scipy, MATLAB) and suit your needs.

Low scales are indeed challenging, and pywt's integrated wavelet handles them better than scipy's recomputed approach; detailed comparison here. The singles-length wavelets for low scales exacerbate this problem. I haven't looked into fixing symmetry, but there'll be challenges at low scales due to sampling limitations; forcing symmetry may forbid some scales entirely (ssqueezepy's doesn't have this problem).

The interpolation idea for resampling seems to have potential, so I wouldn't toss the idea - just need to rework the resampling length. Behavior at low scales should be verified with test signals, for example as here (code provided); I haven't done it for your PR.

Whatever the case, I'd suggest against ridding of integrated wavelet, as it's a unique alternative to other implementations that works well and may be further improved. (And no, it's not quite undone by diff; also addressed here).

@amanita-citrina
Copy link
Author

My tentative pull request addressed three different issues, which in retrospect was not a great idea.

In my opinion, the most important issue is the artefacts at low scales (high frequencies). These are due to incorrect sampling instants (issue #531), easy to notice in a plot and very confusing. In fact, I gave up on pywt for my application because I did not trust the results.

There are several ways to get rid of the artefacts:

  • Increase precision, i.e., compute more samples of the wavelet to reduce the sampling offsets
  • Resample the original wavelet at the correct sampling instants
  • Interpolate from the precomputed samples

I favour interpolation (perhaps combined with someewhat increased precision) because it addresses the root problem - incorrect sampling instants - in a low-complexity way. Also, it is very easy to integrate in the current implementation.
I pushed a branch in my fork (https://github.com/amanita-citrina/pywt/tree/Issue_531_Interpolation) to sketch how to do it. To avoid a dependency on scipy, I used linear interpolation (numpy.interp). With precision=10, this eliminates the visible artefacts of #531.

Some quick remarks on the other issues addressed in my pull request:

  • Integration of wavelet: This seems to be a deeper issues than I thought. I tried to understand the material @OverLordGoldDragon provided, but failed at some point. Therefore, I cannot argue against the current implementation with cumsum/diff.
  • Symmetry of sampling instants around 0: This might be more of an aesthetic problem when you convolve a symmetric wavelet
    with a Dirac function (impulse). Any regular sampling should be OK as long as there is no aliasing, i.e., the scale is sufficiently large. In any case, Complex Morlet wavelet in CWT is not symmetric at fractional scale #535 should not distract from the main issue - incorrect sampling instants.

@OverLordGoldDragon
Copy link

@amanita-citrina Have you tried cwt_fwd? It excels at low scales and crushes pywt and scipy.

But yeah, tackling multiple issues in one PR isn't a safe bet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants