Table Of Contents

Previous topic

Canny

Next topic

Connectivity Counter

Close

Description

Calculates the binary morphological operation close on the image. The constructor expects a structuring element in form of an image. The structuring element can either be created manually or one of the default elements can be taken.

Examples

C++

#include <iplt/image.hh>
#include <iplt/alg/close.hh>

using namespace iplt;

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

  return 0;
}

Python

from iplt import *
img = LoadImage("...")
img.ApplyIP( alg.Close(alg.morph.Create8n()) )

Example image

../_images/close.png

Figure 1: left: original image, right image after close operation

Python interface

class iplt.alg.Close((object)arg1, (ConstImageHandle)arg2)
__init__((object)arg1, (ConstImageHandle)arg2) → None :
C++ signature :
void __init__(_object*,ost::img::ConstImageHandle)

C++ interface