#include <ILargeTextureThresholdOp.hpp>
Inheritance diagram for ILargeTextureThresholdOp:
Purpose: Texture Threshold (TET) with a Structured Element. Texture threshold is similar to dynamic threshold but use closing and opening in place of dilatation and erosion TET= (Closing + Opening )/2 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 | |
ILargeTextureThresholdOp (bool used=false) | |
ILargeTextureThresholdOp (int lowLabel, int upLabel, bool used=true) | |
ILargeTextureThresholdOp (StructuredElement *aStructuredElement, int lowLabel=0, int upLabel=255, bool used=true) | |
virtual | ~ILargeTextureThresholdOp () |
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 |
ILargeClosingOp | closing |
ILargeOpeningOp | opening |
|
Local full image filtering.
Reimplemented from ILargeMorphologicalOp. |