ILMVMosaic Interface

Data Types

MOSAIC_ATTRIBUTES

Summary

Describes the mosaic effect properties.

Syntax

typedef struct 
{ 
   long lSquareSize; 
   BOOL bEnabled; 
   long lDSquareSize; 
   BOOL bDEnabled; 
} MOSAIC_ATTRIBUTES; 

Members

lSquareSize

Size of the mosaic square, 1 to 64.

bEnabled

Indicates weather Mosaic effect is enabled (TRUE) or not (FALSE).

lDSquareSize

Default square size. Original default value is 1.

bDEnabled

Default mosaic Enable value. Original default value is TRUE.

CROP_ATTRIBUTES

Summary

Describes the area exposed to the mosaic effect.

Syntax

typedef struct 
{ 
   long lLeft; 
   long lTop; 
   long lRight; 
   long lBottom; 
   BOOL bEnabled; 
   long lDLeft; 
   long lDTop; 
   long lDRight; 
   long lDBottom; 
   BOOL bDEnabled; 
} CROP_ATTRIBUTES; 

Members

lLeft

The left coordinate of the effect area rectangle.

lTop

The top coordinate of the effect area rectangle.

lRight

The right coordinate of the effect area rectangle.

lBottom

The bottom coordinate of the effect area rectangle.

bEnabled

Enables (TRUE) or disables (FALSE) the effect area.

lDLeft

Default left. Original value is 0.

lDTop

Default top. Original value is 0.

lDRight

Default right. Original value is 1.

lDBottom

Default bottom. Original value is 1.

bDEnabled

Default effect area enable status.

Methods

HRESULT IsLEADInputPinConnected()

Description

Determines whether the filter input pin is currently connected.

Returns

Return Description
S_OK Connected.
S_FALSE Otherwise.

HRESULT IsLEADOutputPinConnected()

Description

Determines whether the filter output pin is currently connected.

Returns

Return Description
S_OK Connected.
S_FALSE Otherwise.

HRESULT SetMosaicAttributes(MOSAIC_ATTRIBUTES mosaic_attributes)

Description

Sets the properties for the mosaic effect.

Parameters

mosaic_attributes

A MOSIAC_ATTRIBUTES structure that contains the mosaic attributes to set.

Returns

Return Description
S_OK Successful.
S_FALSE Otherwise.

HRESULT GetMosaicAttributes(MOSAIC_ATTRIBUTES *mosaic_attributes)

Description

Retrieves the current mosaic attributes.

Parameters

mosaic_attributes

A valid pointer to a MOSIAC_ATTRIBUTES structure to be updated with the current mosaic attributes.

Returns

Return Description
S_OK Successful.
S_FALSE Otherwise.

HRESULT SetCropAttributes(CROP_ATTRIBUTES crop_attributes)

Description

Sets the effect area attributes.

Parameters

crop_attributes

A CROP_ATTRIBUTES structure that contains the effect area attributes to set.

Comments

If successful, effect is applied only to the passed rectangle.

Returns

Return Description
S_OK Successful.
S_FALSE Otherwise.

HRESULT GetCropAttributes(CROP_ATTRIBUTES *crop_attributes)

Description

Retrieves the current effect area attributes.

Parameters

crop_attributes

A valid pointer to a CROP_ATTRIBUTES structure to be updated with the current effect area attributes.

Returns

Return Description
S_OK Successful.
S_FALSE Otherwise.

HRESULT GetIODimensions(long *plInWidth, long *plInHeight, long *plOutWidth, long *plOutHeight)

Description

Retrieves the current media dimensions.

Parameters

plInWidth

A valid pointer to a long variable to be updated with the input media width. NULL can be passed if this value is not needed.

plInHeight

A valid pointer to a long variable to be updated with the input media height. NULL can be passed if this value is not needed.

plOutWidth

A valid pointer to a long variable to be updated with the output media width. NULL can be passed if this value is not needed.

plOutHeight

A valid pointer to a long variable to be updated with the output media height. NULL can be passed if this value is not needed.

Returns

Return Description
S_OK Successful.
S_FALSE Otherwise.

HRESULT GetIOBitCount(int *plInBits, int *plOutBits)

Description

Gets the bits per pixel of the current connected input and output media formats.

Parameters

pInBitCount

A valid pointer to an integer to be updated with the input media bits per pixel value. NULL can be passed if this value is not needed.

pPBitCount

A valid pointer to an integer to be updated with the output media bits per pixel value. NULL can be passed if this value is not needed.

Returns

Return Description
S_OK Successful.
S_FALSE Otherwise.
Help Version 22.0.2023.2.15
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Filters C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.