[mmplot] [Up] [mmadd4dil] Obsolete

mmvdome
Obsolete, use mmvmax.

Synopsis

y = mmvdome( f, v = 1, Bc = None )

Implemented in Python.

Input

f Image Gray-scale (uint8 or uint16) image.
v Double

Volume parameter.

Default: 1

Bc Structuring Element

Structuring element (connectivity).

Default: None (3x3 elementary cross)

Output

y Image Gray-scale (uint8 or uint16) or binary image.

Description

The correct name for this operator mmvdome is mmvmax.

Source Code

def mmvdome(f, v=1, Bc=None):
    if Bc is None: Bc = mmsecross()
    y = mmhmax(f,v,Bc);
    return y
    
[mmplot] [Up] [mmadd4dil] Python