-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathSBDeconvolve.cpp
171 lines (150 loc) · 6.57 KB
/
SBDeconvolve.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* -*- c++ -*-
* Copyright (c) 2012-2023 by the GalSim developers team on GitHub
* https://github.com/GalSim-developers
*
* This file is part of GalSim: The modular galaxy image simulation toolkit.
* https://github.com/GalSim-developers/GalSim
*
* GalSim is free software: redistribution and use in source and binary forms,
* with or without modification, are permitted provided that the following
* conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions, and the disclaimer given in the accompanying LICENSE
* file.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the disclaimer given in the documentation
* and/or other materials provided with the distribution.
*/
//#define DEBUGLOGGING
#include "SBDeconvolve.h"
#include "SBDeconvolveImpl.h"
namespace galsim {
SBDeconvolve::SBDeconvolve(const SBProfile& adaptee, const GSParams& gsparams) :
SBProfile(new SBDeconvolveImpl(adaptee,gsparams)) {}
SBDeconvolve::SBDeconvolve(const SBDeconvolve& rhs) : SBProfile(rhs) {}
SBDeconvolve::~SBDeconvolve() {}
SBProfile SBDeconvolve::getObj() const
{
assert(dynamic_cast<const SBDeconvolveImpl*>(_pimpl.get()));
return static_cast<const SBDeconvolveImpl&>(*_pimpl).getObj();
}
SBDeconvolve::SBDeconvolveImpl::SBDeconvolveImpl(const SBProfile& adaptee,
const GSParams& gsparams) :
SBProfileImpl(gsparams), _adaptee(adaptee)
{
double maxk = maxK();
_maxksq = maxk*maxk;
double flux = GetImpl(_adaptee)->getFlux();
_min_acc_kval = flux * gsparams.kvalue_accuracy;
dbg<<"SBDeconvolve constructor: _maxksq = "<<_maxksq;
dbg<<", _min_acc_kval = "<<_min_acc_kval<<std::endl;
}
// xValue() not implemented for SBDeconvolve.
double SBDeconvolve::SBDeconvolveImpl::xValue(const Position<double>& p) const
{ throw SBError("SBDeconvolve::xValue() not implemented (and not possible)"); }
std::complex<double> SBDeconvolve::SBDeconvolveImpl::kValue(const Position<double>& k) const
{
double ksq = k.x*k.x + k.y*k.y;
if (ksq > _maxksq) {
return 0.;
} else {
std::complex<double> kval = _adaptee.kValue(k);
double abs_kval = std::abs(kval);
if (abs_kval < _min_acc_kval)
return 1./_min_acc_kval;
else
return 1./kval;
}
}
template <typename T>
void SBDeconvolve::SBDeconvolveImpl::fillKImage(ImageView<std::complex<T> > im,
double kx0, double dkx, int izero,
double ky0, double dky, int jzero) const
{
dbg<<"SBDeconvolve fillKImage\n";
dbg<<"kx = "<<kx0<<" + i * "<<dkx<<", izero = "<<izero<<std::endl;
dbg<<"ky = "<<ky0<<" + j * "<<dky<<", jzero = "<<jzero<<std::endl;
GetImpl(_adaptee)->fillKImage(im,kx0,dkx,izero,ky0,dky,jzero);
// Now invert the values, but be careful about not amplifying noise too much.
const int m = im.getNCol();
const int n = im.getNRow();
std::complex<T>* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
for (int j=0; j<n; ++j,ky0+=dky,ptr+=skip) {
double kx = kx0;
double kysq = ky0*ky0;
for (int i=0; i<m; ++i,kx+=dkx) {
double ksq = kx*kx + kysq;
if (ksq > _maxksq) *ptr++ = T(0);
else {
double abs_kval = std::abs(*ptr);
if (abs_kval < _min_acc_kval)
*ptr++ = 1./_min_acc_kval;
else {
std::complex<T> val = *ptr;
*ptr++ = 1./(val);
}
}
}
}
}
template <typename T>
void SBDeconvolve::SBDeconvolveImpl::fillKImage(ImageView<std::complex<T> > im,
double kx0, double dkx, double dkxy,
double ky0, double dky, double dkyx) const
{
dbg<<"SBDeconvolve fillKImage\n";
dbg<<"kx = "<<kx0<<" + i * "<<dkx<<" + j * "<<dkxy<<std::endl;
dbg<<"ky = "<<ky0<<" + i * "<<dkyx<<" + j * "<<dky<<std::endl;
GetImpl(_adaptee)->fillKImage(im,kx0,dkx,dkxy,ky0,dky,dkyx);
// Now invert the values, but be careful about not amplifying noise too much.
const int m = im.getNCol();
const int n = im.getNRow();
std::complex<T>* ptr = im.getData();
int skip = im.getNSkip();
assert(im.getStep() == 1);
for (int j=0; j<n; ++j,kx0+=dkxy,ky0+=dky,ptr+=skip) {
double kx = kx0;
double ky = ky0;
for (int i=0; i<m; ++i,kx+=dkx,ky+=dkyx) {
double ksq = kx*kx + ky*ky;
if (ksq > _maxksq) *ptr++ = 0.;
else {
double abs_kval = std::abs(*ptr);
if (abs_kval < _min_acc_kval)
*ptr++ = 1./_min_acc_kval;
else {
std::complex<T> val = *ptr;
*ptr++ = 1./(val);
}
}
}
}
}
Position<double> SBDeconvolve::SBDeconvolveImpl::centroid() const
{ return -_adaptee.centroid(); }
double SBDeconvolve::SBDeconvolveImpl::getFlux() const
{ return 1./_adaptee.getFlux(); }
double SBDeconvolve::SBDeconvolveImpl::maxSB() const
{
// The only way to really give this any meaning is to consider it in the context
// of being part of a larger convolution with other components. The calculation
// of maxSB for Convolve is
// maxSB = flux_final / Sum_i (flux_i / maxSB_i)
//
// A deconvolution will contribute a -sigma^2 to the sum, so a logical choice for
// maxSB is to have flux / maxSB = -flux_adaptee / maxSB_adaptee, so its contribution
// to the Sum_i 2pi sigma^2 is to subtract its adaptee's value of sigma^2.
//
// maxSB = -flux * maxSB_adaptee / flux_adaptee
// = -maxSB_adaptee / flux_adaptee^2
//
return -_adaptee.maxSB() / std::abs(_adaptee.getFlux() * _adaptee.getFlux());
}
void SBDeconvolve::SBDeconvolveImpl::shoot(PhotonArray& photons, UniformDeviate ud) const
{
throw SBError("SBDeconvolve::shoot() not implemented");
}
}