#include <FPyramidalAosOp.hpp>
Inheritance diagram for FPyramidalAosOp:
Purpose: Fast Computation of Pyramidal AOS recursive flow. Use the Thomas LU model. Semi-Implicit solver using AOS additive splitting (I - tau * A) * uNew= uOld Should be better than LOD: Rotation invariant. LOD is sequential (handelling each direction x y z in sequence) AOS is parallel (handelling each direction x y z at the same time) AOS build an average operator Both LOD and AOS are designed for large image restoration, O(N) in time ang space!!! Papers: "Recursivity and PDE's in image processing", L. Alvarez, R. Deriche and F Santana, Spain 1998. "Efficient and Reliable Schemes for Nonlinear Diffusion Filtering", Joachim. Weickert & all, IEEE transactions on Image Processing, vol7, n3, March 1998.
@ Copyrights: Bernard De Cuyper & Eddy Fraiha 2002, Eggs & Pictures. MIT/Open BSD copyright model.
Public Methods | |
FPyramidalAosOp (int model, int iter, float t=0.5, float alambda=0.1, float asigma=5.0) | |
virtual | ~FPyramidalAosOp () |
virtual FImage * | filter (FImage *src, FImage *dest=0) |
Local full image filtering. | |
virtual FImage * | selectedFilter (AnImage *mask, FImage *src, FImage *dest=0) |
Local filtering in a mask area. | |
virtual void | report (FILE *file) |
Protected Methods | |
void | init (FImage *src) |
void | clear () |
used to globally destroy subimages avoiding decons | |
FImage * | linearInterpolation (FImage *coarseSolution, FImage *I0level) |
Protected Attributes | |
int | maxLevels |
int | w |
int | h |
float | alpha0 |
float | K0 |
float * | alpha |
float * | K |
FImage ** | f |
FBlurrOp | blurr |
int | model |
float | tau |
float | lambda |
float | sigma |
FFastRestorationFactory | factory |
int | iterations |
FRegularizedAosOp * | op |
|
Local full image filtering.
Implements AbsFImageFilter. |
|
Local filtering in a mask area.
Reimplemented from AbsFImageFilter. |