Skip to content

Commit ef5ba9e

Browse files
committed
finish
1 parent 731fcb5 commit ef5ba9e

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

autoarray/inversion/inversion/imaging/w_tilde.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ def mapped_reconstructed_data_dict(self) -> Dict[LinearObj, Array2D]:
525525
values=mapped_reconstructed_image, mask=self.mask
526526
)
527527

528-
mapped_reconstructed_image = self.convolver.convolve_image_no_blurring(
528+
mapped_reconstructed_image = self.psf.convolve_image_no_blurring(
529529
image=mapped_reconstructed_image, mask=self.mask
530530
)
531531

autoarray/structures/arrays/kernel_2d.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -487,12 +487,12 @@ def convolved_array_from(self, array: Array2D) -> Array2D:
487487

488488
def convolve_image(self, image, blurring_image, jax_method="fft"):
489489
"""
490-
For a given 1D array and blurring array, convolve the two using this convolver.
490+
For a given 1D array and blurring array, convolve the two using this psf.
491491
492492
Parameters
493493
----------
494494
image
495-
1D array of the values which are to be blurred with the convolver's PSF.
495+
1D array of the values which are to be blurred with the psf's PSF.
496496
blurring_image
497497
1D array of the blurring values which blur into the array after PSF convolution.
498498
jax_method
@@ -530,12 +530,12 @@ def convolve_image(self, image, blurring_image, jax_method="fft"):
530530

531531
def convolve_image_no_blurring(self, image, mask, jax_method="fft"):
532532
"""
533-
For a given 1D array and blurring array, convolve the two using this convolver.
533+
For a given 1D array and blurring array, convolve the two using this psf.
534534
535535
Parameters
536536
----------
537537
image
538-
1D array of the values which are to be blurred with the convolver's PSF.
538+
1D array of the values which are to be blurred with the psf's PSF.
539539
blurring_image
540540
1D array of the blurring values which blur into the array after PSF convolution.
541541
jax_method
@@ -562,12 +562,12 @@ def convolve_image_no_blurring(self, image, mask, jax_method="fft"):
562562
return Array2D(values=convolved_array_1d, mask=mask)
563563

564564
def convolve_mapping_matrix(self, mapping_matrix, mask):
565-
"""For a given 1D array and blurring array, convolve the two using this convolver.
565+
"""For a given 1D array and blurring array, convolve the two using this psf.
566566
567567
Parameters
568568
----------
569569
image
570-
1D array of the values which are to be blurred with the convolver's PSF.
570+
1D array of the values which are to be blurred with the psf's PSF.
571571
"""
572572
return jax.vmap(self.convolve_image_no_blurring, in_axes=(1, None))(
573573
mapping_matrix, mask
Binary file not shown.

0 commit comments

Comments
 (0)