typedef struct EXOBJ_FILTER_OPTIONS
{
L_UINT uStructSize;
L_UINT uFlags;
pEXOBJ_OBJECTLIST pRemoved;
L_INT nSmallObjectThreshold;
L_INT nLargeObjectThreshold;
} EXOBJ_FILTER_OPTIONS, * pEXOBJ_FILTER_OPTIONS;
Provides the options for filtering the objects.
Size of this structure in bytes, for versioning. Use the sizeof(EXOBJ_FILTER_OPTIONS) operator to calculate this value.
Flag that must be a combination of the following values:
Value | Meaning |
---|---|
EXOBJ_FILTER_REPORT_REMOVED_OBJECTS | [0x1] Return a new list containing the filtered out objects (refer to pRemoved) |
EXOBJ_FILTER_INVERT_RANGE | [0x2] Invert the range (min <= filtered out <= max [instead of: filtered out < min or max < filtered out]) |
Pointer to be updated with the list of the removed objects.
The maximum size of an object that will be considered too small.
The minimum size of an object that will be considered too large (if specified, must be larger than nSmallObjectThreshold).
EXOBJ_FILTER_REPORT_REMOVED_OBJECTS must be set in uFlags
in order for pRemoved
to be updated.
Use -1 for either nLargeObjectThreshold
or nSmallObjectThreshold
to disable that size filter.
If neither nLargeObjectThreshold
nor nSmallObjectThreshold
are -1, nLargeObjectThreshold
must be larger than nSmallObjectThreshold
.
The structure is used by:
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document