We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
TotalVariation proximal is not calculated in place correctly. This was spotted when trying to run SIRT with a TV constraint in #1514.
data = dataexample.SIMPLE_PHANTOM_2D.get(size=(128,128)) plt.figure() plt.imshow(data.as_array()) plt.show() out=data.geometry.allocate('random') TotalVariation().proximal(data, tau=1, out=out) plt.figure() plt.imshow(out.as_array()) plt.show()
gives
data = dataexample.SIMPLE_PHANTOM_2D.get(size=(128,128)) plt.figure() plt.imshow(data.as_array()) plt.show() TotalVariation().proximal(data, tau=1, out=data) plt.figure() plt.imshow(data.as_array()) plt.show()
The text was updated successfully, but these errors were encountered:
Need to also test with strong convexity constant >0
Sorry, something went wrong.
MargaretDuff
Successfully merging a pull request may close this issue.
TotalVariation proximal is not calculated in place correctly. This was spotted when trying to run SIRT with a TV constraint in #1514.
gives
gives
The text was updated successfully, but these errors were encountered: