Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
58722f6
Added constants.py for magic numbers in the image deconvolution module
hiyoneda Jan 7, 2026
8c09b31
Replaced magic numbers with parameters in constants.py
hiyoneda Jan 7, 2026
8d852d7
Introduced _save_standard_results in DeconvolutionAlgorithmBase
hiyoneda Jan 7, 2026
0aa57c2
Modified error messages in ImageDeconvolution class
hiyoneda Jan 7, 2026
f4d4912
Merge branch 'develop' into image_deconvolution_refactoring
hiyoneda Feb 16, 2026
9e2d246
Modified image_deconvolution/constants.py
hiyoneda Feb 16, 2026
01b5490
Refactor RL class hierarchy: add Basic/Advanced, rename Simple->Basic…
hiyoneda Feb 16, 2026
eb640cd
Update tests and config for refactored RL class hierarchy
hiyoneda Feb 16, 2026
689a084
Added ResponseWeightingFilter
hiyoneda Feb 17, 2026
28ade4a
Minor changes
hiyoneda Feb 17, 2026
af3f578
Added _to_float;key name for bkg norm is changed back to background_n…
hiyoneda Feb 17, 2026
2d94bce
Modified the deconvolution parameter files for tutorials
hiyoneda Feb 17, 2026
4e557fd
rename response_weighting_filter.py
hiyoneda Feb 17, 2026
ebb2e25
Added DataInterfaceCollection
hiyoneda Feb 19, 2026
db655ec
Modified the place where the filtering is applied to an original delt…
hiyoneda Feb 19, 2026
d79c5c9
Added AcceleratorBase and MaxStepAccelerator
hiyoneda Feb 19, 2026
52084e7
Refactored finalization in the deconvolution algorithms
hiyoneda Feb 19, 2026
f0fc442
Minor Changes
hiyoneda Feb 20, 2026
fe34ba0
Added calc_source_expectation and calc_bkg_expectation into ImageDeco…
hiyoneda Feb 20, 2026
0bc90e8
Modified the code design of RL accelerator
hiyoneda Feb 20, 2026
7542381
Added accel_bkg_norm to MaxStepAccelerator
hiyoneda Feb 20, 2026
61cc192
Refactor image_deconvolution into subdirectories (algorithms, models,…
hiyoneda Feb 20, 2026
68c283c
Modified unittest for image deconvolution
hiyoneda Feb 20, 2026
8546b6c
Modified tutorial notebooks for image deconvolution
hiyoneda Feb 20, 2026
ce69f52
Refactor: rename do_* to *_enabled, unify _to_float into utils.py, us…
hiyoneda Feb 20, 2026
ca2ab97
Merge branch 'develop' into image_deconvolution_refactoring
hiyoneda Feb 20, 2026
831ed35
Add logged_result_fields to AcceleratorBase to avoid hardcoding accel…
hiyoneda Feb 21, 2026
9478c2c
Remove stale TODO comment and fix docstring example in override_param…
hiyoneda Feb 21, 2026
3a89cf2
Added LineSearchAccelerator
hiyoneda Feb 24, 2026
a97427c
Added parameter_summary
hiyoneda Feb 24, 2026
7659622
Refactor logging in deconvolution modules
hiyoneda Feb 24, 2026
78b9bda
Rename prior_map with reference_map in entropy prior
hiyoneda Feb 24, 2026
cabf398
Added docstring for prior classes
hiyoneda Feb 24, 2026
32d9286
Bug Fix
hiyoneda Feb 24, 2026
5c456a8
Updated Unittest for Image Deconvolution
hiyoneda Feb 24, 2026
a9ac26a
Modified gradient method in line search accelerator
hiyoneda Mar 11, 2026
9002b26
Merge branch 'develop' into image_deconvolution_refactoring
hiyoneda Mar 11, 2026
a2420e2
fix an issue that stopping criteria is not triggered when iteration_m…
hiyoneda Mar 11, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cosipy/image_deconvolution/RLparallelscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ def plot_reconstructed_image(result, source_position=None): # source_position s
MPI.Finalize()

if __name__ == "__main__":
main()
main()
242 changes: 0 additions & 242 deletions cosipy/image_deconvolution/RichardsonLucy.py

This file was deleted.

Loading