#include <IMNonLinearLaplaceEdgeOp.hpp>
Inheritance diagram for IMNonLinearLaplaceEdgeOp:
Purpose: NonLinear Laplace Edge Operator) with a Structured Element. Use Zero crossing with morphological laplacian and gradient strength with Lee Edge detector Combined result must be thresholded with NMS and hysteresis. Papers: "An Edge Detection Model Based on Non-Linear Laplace Filtering", Lucas Van Vliet, Ian Young, & all, Delft University of Technology, Netherlands 1988. "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 | |
IMNonLinearLaplaceEdgeOp () | |
IMNonLinearLaplaceEdgeOp (StructuredElement *aStructuredElement) | |
virtual | ~IMNonLinearLaplaceEdgeOp () |
virtual void | setIterations (int iter) |
virtual void | setLuminanceFlag (bool autoGrey=true) |
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 | |
IMZeroCrossingOp | zeroCrossing |
ILargeDynamicLeeDetectorOp | edgeStrength |
|
Local full image filtering.
Reimplemented from ILargeMorphologicalOp. |