#include <F2DAmosHeatFlowOp.hpp>
Inheritance diagram for F2DAmosHeatFlowOp:


 
Purpose:        Fast Computation of 2D Heat recursive flow.
                AMOS implicit solver using 2D Pentadiagonal solvers
            (I - tau/2 * Ax) * u$=  (I + tau/2 * Ax) * uOld             // X-sweep
            (I - tau/2 * Ay) * u1=  (I + tau/2 * Ay) * u$               // Y-sweep
            (I - tau/2 * Ay) * u$=  (I + tau/2 * Ay) * uOld             // Y-sweep
            (I - tau/2 * Ax) * u2=  (I + tau/2 * Ax) * u$               // X-sweep
                 u= (u1+u2)/2                                                   // average sub-solutions
Papers:         "Recursivity and PDE's in image processing", 
                        L. Alvarez, R. Deriche and F Santana, Spain 1998.
                @ Copyrights: Bernard De Cuyper 2004, Eggs & Pictures. MIT/Open BSD copyright model.
| Public Methods | |
| F2DAmosHeatFlowOp (int typeSolver, int iter=1, int innerIter=8, float t=0.5, float eps=1.0e-4) | |
| Can be used as alternative of IIR for large sigma blurring when t=(sigma*sigma)/2. | |
| virtual | ~F2DAmosHeatFlowOp () | 
| virtual FImage * | filter (FImage *src, FImage *dest=0) | 
| Local full image filtering. | |
| virtual void | report (FILE *file) | 
| 
 | ||||||||||||
| Local full image filtering. 
 
 Reimplemented from F2DAdiHeatFlowOp. | 
|  | 
