Click or drag to resize

IMG_DECOMP Enumeration

Page parse method.

Namespace:  Kofax.OmniPageCSDK.IproPlus
Assembly:  Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntax
public enum IMG_DECOMP
Members
  Member nameValueDescription
DCM_AUTO0 Automatic. The Engine will determine at runtime which algorithm will be applied. This depends on the trade-off setting: DCM_LEGACY algorithm is applied when trade-off is TO_FAST and DCM_STANDARD is applied otherwise (Default.)
DCM_LEGACY1 Simple page decomposition. This is faster but less accurate than the standard mode.
DCM_STANDARD2 The most accurate page parsing module.
DCM_FAST3 For non-Asian languages this algorithm can be treated as a simplified variant of DCM_LEGACY: this algorithm does not try to find tables on the page. It is the fastest (but least accurate) parsing algorithm available. Use it only for simple page parsing tasks! For Asian languages this is the same as DCM_LEGACY.
Remarks
This enum lists the possible values of the Page parser algorithm settings of the Document. This setting makes it possible to specify one of the three different page parser algorithms for Latin-alphabet languages, or one of the two different algorithms for Asian languages. In the latter case DCM_LEGACY and DCM_FAST are the same.
See Also