Functions
contrib/tbl/vepl/vepl_erode_disk.h File Reference

morphological erosion with circular element More...

#include <vil/vil_image_resource.h>

Go to the source code of this file.

Functions

vil_image_resource_sptr vepl_erode_disk (vil_image_resource_sptr, float radius)
 morphological erosion with circular element of supplied radius.

Detailed Description

morphological erosion with circular element

Erosion is a morphological operation that replaces a pixel with the minimum value of its surrounding pixels, in a certain neighbourhood. Here, the neighbourhood is circular, with an arbitrary (float) radius, which is to be passed to the constructor.

Note that the function min(DataIn,DataIn) is being used; for non-scalar data types (like colour pixels) an appropriate min() function must thus be supplied.

Note also the implicit use of DataOut::DataOut(DataIn), which you probably will have to provide when DataIn and DataOut are not the same type. It could even be argued that these types should always be the same!

Author:
Peter Vanroose, K.U.Leuven (ESAT/PSI)
Date:
7 October 2002
    Modifications
     Peter Vanroose - 20 aug 2003 - changed parameter and return types from vil_image_view_base_sptr to vil_image_resource_sptr
   

Definition in file vepl_erode_disk.h.


Function Documentation

vil_image_resource_sptr vepl_erode_disk ( vil_image_resource_sptr  ,
float  radius 
)

morphological erosion with circular element of supplied radius.

Definition at line 11 of file vepl_erode_disk.cxx.