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


Purpose: Ramp Lee Edge Detector(DYR) with a Structured Element.
Ramp Lee Edge Detector uses dilatation(MAX), erosion(MIN), closing(UPP), opening(LOW)
RA+ = (dilatation - closing)
RA- = (opening - erosion)
Ramp Lee edge detector= min( RA+, RA- )
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 | |
| ILargeRampLeeDetectorOp () | |
| ILargeRampLeeDetectorOp (StructuredElement *aStructuredElement) | |
| virtual | ~ILargeRampLeeDetectorOp () |
| 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 | |
| ILargeErosionOp | erosion |
| ILargeDilatationOp | dilatation |
| ILargeOpeningOp | opening |
| ILargeClosingOp | closing |
|
||||||||||||
|
Local full image filtering.
Reimplemented from ILargeMorphologicalOp. |
![]() |
