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

[BUG] Wavelet Transform of BsplineWaveletTransformATrousAlgorithm gives errors #30

Open
chaithyagr opened this issue Sep 27, 2019 · 0 comments
Assignees
Labels

Comments

@chaithyagr
Copy link

Here is a simple python code that tries to use the bindings to get the results:

import pysap
import numpy as np
transform = pysap.load_transform('BsplineWaveletTransformATrousAlgorithm')
linear_op = transform(nb_scale=4)
x = np.random.random((100, 100))
linear_op.data = x
linear_op.analysis()
y = linear_op.analysis_data

On running this, I see a huge set of prints as follows:
get_indexError: bad parameter bord in get_indexError: and so on.

On debugging I noticed that this particularly happened at line linear_op.analysis(), so to me it looks like a bug in this particular Wavelet.

@sfarrens sfarrens self-assigned this Jan 18, 2023
@sfarrens sfarrens added the bug label Jan 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants