pub fn inverse_deconv<T>(
input: &Array<T>,
kernel: &Array<f32>,
gamma: f32,
algo: InverseDeconvAlgo
) -> Array<T::AbsOutType> where
T: DeconvInput,
T::AbsOutType: HasAfEnum,
Inverse deconvolution
This is a linear algorithm i.e. they are non-iterative in nature and usually faster than iterative deconvolution algorithms.
Depending on the values passed on to algo
of type enum InverseDeconvAlgo, different equations are used to compute the final result.
The update equation for this algorithm is as follows:
\begin{equation} \hat{I}_{\omega} = \frac{ I_{\omega} * P^{*}_{\omega} } { |P_{\omega}|^2 + \gamma } \end{equation}
where
The type of output Array from deconvolution will be double if the input array type is double. Otherwise, it will be float in rest of the cases. Should the caller want to save the image to disk or require the values of output to be in a fixed range, that should be done by the caller explicitly.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4