deconvolution 0.2.1

Rust image deconvolution and restoration library.
Documentation
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
//! Known-PSF `ndarray` deconvolution wrappers.
//!
//! Inputs use `(height, width)` order. The `f16` feature enables half-precision
//! sample inputs, but computation still runs through `f32`.

use ndarray::Array2;

use super::convert::{NdSample, array2_from_f32, array2_to_f32, kernel2_from_samples};
use crate::algorithms;
use crate::iterative::{
    Ictm, Landweber, RichardsonLucy, RichardsonLucyTv, TikhonovMiller, VanCittert,
};
use crate::optimization::{Bvls, Cgls, Fista, Hybr, Ista, Mrnsd, Nnls, Wpl};
use crate::spectral::{UnsupervisedWiener, Wiener};
use crate::{Result, SolveReport};

/// Restore a 2D ndarray with Wiener filtering and default settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or the Wiener solver rejects its settings.
pub fn wiener<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<Array2<T>> {
    wiener_with(image, psf, &Wiener::new())
}

/// Restore a 2D ndarray with Wiener filtering and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or the Wiener solver rejects `config`.
pub fn wiener_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Wiener,
) -> Result<Array2<T>> {
    run_array_only(image, psf, |input, kernel| {
        algorithms::wiener_array2_with(input, kernel, config)
    })
}

/// Estimate NSR and restore a 2D ndarray with Wiener filtering.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or NSR estimation fails.
pub fn unsupervised_wiener<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
) -> Result<(Array2<T>, SolveReport)> {
    unsupervised_wiener_with(image, psf, &UnsupervisedWiener::new())
}

/// Estimate NSR and restore a 2D ndarray with explicit Wiener settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid NSR settings.
pub fn unsupervised_wiener_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &UnsupervisedWiener,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::unsupervised_wiener_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with Richardson-Lucy Poisson EM.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or the EM solver fails.
pub fn richardson_lucy<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
) -> Result<(Array2<T>, SolveReport)> {
    richardson_lucy_with(image, psf, &RichardsonLucy::new())
}

/// Restore a 2D ndarray with Richardson-Lucy and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid EM settings.
pub fn richardson_lucy_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &RichardsonLucy,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::richardson_lucy_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with Richardson-Lucy and total variation.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or TV/EM settings are invalid.
pub fn richardson_lucy_tv<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
) -> Result<(Array2<T>, SolveReport)> {
    richardson_lucy_tv_with(image, psf, &RichardsonLucyTv::new())
}

/// Restore a 2D ndarray with RL-TV and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid TV/EM settings.
pub fn richardson_lucy_tv_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &RichardsonLucyTv,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::richardson_lucy_tv_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with Landweber iteration.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or step-size estimation fails.
pub fn landweber<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
) -> Result<(Array2<T>, SolveReport)> {
    landweber_with(image, psf, &Landweber::new())
}

/// Restore a 2D ndarray with Landweber iteration and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid solver settings.
pub fn landweber_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Landweber,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::landweber_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with Van Cittert iteration.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or step-size estimation fails.
pub fn van_cittert<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
) -> Result<(Array2<T>, SolveReport)> {
    van_cittert_with(image, psf, &VanCittert::new())
}

/// Restore a 2D ndarray with Van Cittert iteration and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid solver settings.
pub fn van_cittert_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &VanCittert,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::van_cittert_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with Tikhonov-Miller iteration.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or regularized step-size estimation fails.
pub fn tikhonov_miller<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
) -> Result<(Array2<T>, SolveReport)> {
    tikhonov_miller_with(image, psf, &TikhonovMiller::new())
}

/// Restore a 2D ndarray with Tikhonov-Miller and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid regularization settings.
pub fn tikhonov_miller_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &TikhonovMiller,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::tikhonov_miller_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with constrained Tikhonov-Miller iteration.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or regularized step-size estimation fails.
pub fn ictm<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    ictm_with(image, psf, &Ictm::new())
}

/// Restore a 2D ndarray with ICTM and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid regularization settings.
pub fn ictm_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Ictm,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::ictm_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with non-negative least squares.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or step-size estimation fails.
pub fn nnls<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    nnls_with(image, psf, &Nnls::new())
}

/// Restore a 2D ndarray with NNLS and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid solver settings.
pub fn nnls_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Nnls,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::nnls_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with bounded-variable least squares.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, bounds are invalid, or step-size estimation fails.
pub fn bvls<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    bvls_with(image, psf, &Bvls::new())
}

/// Restore a 2D ndarray with BVLS and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid bounds or settings.
pub fn bvls_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Bvls,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::bvls_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with ISTA.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or proximal step-size estimation fails.
pub fn ista<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    ista_with(image, psf, &Ista::new())
}

/// Restore a 2D ndarray with ISTA and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid sparsity settings.
pub fn ista_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Ista,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::ista_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with FISTA.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or proximal step-size estimation fails.
pub fn fista<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    fista_with(image, psf, &Fista::new())
}

/// Restore a 2D ndarray with FISTA and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid sparsity settings.
pub fn fista_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Fista,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::fista_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with MRNSD.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or iterative updates become non-finite.
pub fn mrnsd<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    mrnsd_with(image, psf, &Mrnsd::new())
}

/// Restore a 2D ndarray with MRNSD and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid solver settings.
pub fn mrnsd_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Mrnsd,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::mrnsd_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with CGLS.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or Krylov updates become non-finite.
pub fn cgls<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    cgls_with(image, psf, &Cgls::new())
}

/// Restore a 2D ndarray with CGLS and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid solver settings.
pub fn cgls_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Cgls,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::cgls_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with WPL.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or preconditioner settings are invalid.
pub fn wpl<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    wpl_with(image, psf, &Wpl::new())
}

/// Restore a 2D ndarray with WPL and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid preconditioner settings.
pub fn wpl_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Wpl,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::wpl_array2_with(input, kernel, config)
    })
}

/// Restore a 2D ndarray with HyBR.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or Krylov updates become non-finite.
pub fn hybr<T: NdSample>(image: &Array2<T>, psf: &Array2<T>) -> Result<(Array2<T>, SolveReport)> {
    hybr_with(image, psf, &Hybr::new())
}

/// Restore a 2D ndarray with HyBR and explicit settings.
///
/// # Errors
///
/// Returns an error when sample conversion fails, the PSF is invalid, the
/// arrays are empty or non-finite, or `config` has invalid Tikhonov settings.
pub fn hybr_with<T: NdSample>(
    image: &Array2<T>,
    psf: &Array2<T>,
    config: &Hybr,
) -> Result<(Array2<T>, SolveReport)> {
    run_array_report(image, psf, |input, kernel| {
        algorithms::hybr_array2_with(input, kernel, config)
    })
}

fn run_array_only<T, F>(image: &Array2<T>, psf: &Array2<T>, run: F) -> Result<Array2<T>>
where
    T: NdSample,
    F: FnOnce(&Array2<f32>, &crate::Kernel2D) -> Result<Array2<f32>>,
{
    let image = array2_to_f32(image)?;
    let kernel = kernel2_from_samples(psf)?;
    let restored = run(&image, &kernel)?;
    array2_from_f32(&restored)
}

fn run_array_report<T, F>(
    image: &Array2<T>,
    psf: &Array2<T>,
    run: F,
) -> Result<(Array2<T>, SolveReport)>
where
    T: NdSample,
    F: FnOnce(&Array2<f32>, &crate::Kernel2D) -> Result<(Array2<f32>, SolveReport)>,
{
    let image = array2_to_f32(image)?;
    let kernel = kernel2_from_samples(psf)?;
    let (restored, report) = run(&image, &kernel)?;
    let restored = array2_from_f32(&restored)?;
    Ok((restored, report))
}