IMVDyArith

The IMVDyArith interface is used to control the filter's image processing algorithm. Read the filter description to see how the filter is used.

get_DyArithMode Returns the dyadic arithmetic mode.
put_DyArithMode Sets the dyadic arithmetic mode.

Header file: iMVDyArith.h
Interface definition language file: iMVDyArith.idl
Typelib: MVDyArith
Interface ID: IID_IMVDyArith

 

HRESULT get_DyArithMode( [out, retval] int *piMode );

Returns the dyadic arithmetic mode.

Parameter:

piMode A pointer to an integer value that receives the dyadic arithmetic mode as MV_DYADIC_ARITHMETIC_MODE .

 

HRESULT put_DyArithMode( [in ] int iMode );

Sets the dyadic arithmetic mode.

Parameter:

iMode The dyadic arithmetic mode as MV_DYADIC_ARITHMETIC_MODE .

 

 

Filter specific structures and enumerators

typedef enum _MV_DYADIC_ARITHMETIC_MODE

{
    MV_MV_DYARITH_ADD= 0,
    MV_MV_DYARITH_SUBTRACT,
    MV_MV_DYARITH_MULTIPLY,
    MV_MV_DYARITH_MULTIPLY_SCALE,
    MV_MV_DYARITH_SQUARE
} MV_DYADIC_ARITHMETIC_MODE;