-
Notifications
You must be signed in to change notification settings - Fork 4
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
Messy data structure of SIWPD #45
Comments
Current plan is to create a new data structure for this purpose.
Will probably be memory intensive, but this method seems to be focused more heavily on analysis side anyway, so I'll prioritize functionality and analysis capability over performance and memory consumption for now. |
|
|
Decomposition process for SIWT is quite slow, will look out for further improvements. |
Some functions on the Shift-Invariant Wavelet Packet Decomposition (SIWPD) have been implemented, but the tree structure and the best basis algorithm are quite different from the usual implementations in the standard, stationary, and the autocorrelation wavelet transforms. The latter transforms all involve binary trees (for 1D signals) and quadtrees (for 2D signals).
For SIWPD however, each level of decomposition also comes with a corresponding shifted decomposition, ie. in the case of 1D signals, each node will decompose into 2 nodes for approximate and detail coefficients of the original node, plus 2 more nodes for the approximate and detail coefficients of the right circularly shifted version (via
circshift
) of the node.The current implementation is quite messy. Here's an example of the difference in tree structures between the SIWPD and the other transforms:
Hence, the issues that need to be resolved are:
BitVector
s used for the standard, stationary, and autocorrelation wavelet transforms' binary and quadtrees?The text was updated successfully, but these errors were encountered: