#include <ILargeRampThresholdOp.hpp>
Inheritance diagram for ILargeRampThresholdOp:
Purpose: Ramp Threshold (RAT) with a Structured Element. Ramp threshold is similar to dynamic threshold but use closing and opening in place of dynamic threshold and texture threshold RAT= origin + DYT - TET Papers: "Fast Computation of Morphological Operations with Arbitrary Structuring Elements", Marc Van Droogenbroeck, H. Talbot, CSRIO, Belgium 1998?. "Low level Image Processing by Max-Min Filters", P.W. Verbeek, & all, Delft University of Technology 1988. "Fundamentals of Image Processing", Ian T. Young, J.J. Gerbrands, Lucas Van Vliet, Delft University of Technology 1998.
@ Copyrights: Bernard De Cuyper & Eddy Fraiha 2003, Eggs & Pictures. MIT/Open BSD copyright model.
Public Methods | |
ILargeRampThresholdOp (bool used=false) | |
ILargeRampThresholdOp (int lowLabel, int upLabel, bool used=true) | |
ILargeRampThresholdOp (StructuredElement *aStructuredElement, int lowLabel=0, int upLabel=255, bool used=true) | |
virtual | ~ILargeRampThresholdOp () |
virtual void | setUsage (bool use) |
virtual void | setIterations (int iter) |
virtual void | setStructuredElement (StructuredElement *aStructuredElement) |
virtual AnImage * | filter (AnImage *src, AnImage *dest=0) |
Local full image filtering. | |
virtual void | report (FILE *file) |
Protected Methods | |
virtual int | operation (AnImage *src, int channel, int i, int j) |
Protected Attributes | |
bool | applied |
int | up |
int | low |
ILargeLocalThresholdOp | dyt |
ILargeTextureThresholdOp | tet |
|
Local full image filtering.
Reimplemented from ILargeMorphologicalOp. |