Dilate

Description

Does a binary dilation on the image. The constructor expects a structuring element in form of an ImageHandle. The structuring element can either be created manually or one of the default elements? can be taken.

Full scope is iplt::alg::morph::Dilate in C++, resp iplt.alg.morph.Dilate in Python.

Examples

C++

#include <iplt/image.hh>
#include <iplt/alg/morph/dilate.hh>

using namespace iplt;

int main() 
{
  ImageHandle img = LoadImage("...");
  img.ApplyIP( alg::morph::Dilate(alg::morph::Create4n()) );

  return 0;
}

Python

from iplt import *
img = LoadImage("...")
img.ApplyIP( alg.morph.Dilate(alg.morph.Create4n()) )
Error: Macro Image(dilate.png,nolink) failed
Attachment AlgDilate: dilate.png does not exist.
Error: Macro Image(dilate2.png,nolink) failed
Attachment AlgDilate: dilate2.png does not exist.
original image after open operation

Back to Algorithm List