I think it would be nice to have unweighted second central moment properties for our analytic GSObjects:
obj = galsim.Gaussian(half_light_radius=1)
print(obj.Ixx) # 0.7205
print(obj.Ixy) # 0.0
I think it's straightforward to define these for at least the analytic profiles in base.py. It should also be straightforward to propagate these through transformations and sums/convolutions, though it's probably good to avoid InterpolatedImage moments, or using moments as input.
I think it would be nice to have unweighted second central moment properties for our analytic GSObjects:
I think it's straightforward to define these for at least the analytic profiles in base.py. It should also be straightforward to propagate these through transformations and sums/convolutions, though it's probably good to avoid InterpolatedImage moments, or using moments as input.