Flags that indicate whether to deskew the image, which background color to use, whether to deskew the image if the skew angle is very small, which type of interpolation to use, whether the image contains mostly text, and whether to use normal or fast rotation. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[FlagsAttribute()]
public enum DeskewDetectionDataFlags
<FlagsAttribute()>
Public Enum DeskewDetectionDataFlags
public:
[FlagsAttribute]
enum class DeskewDetectionDataFlags sealed
Value | Member | Description |
---|---|---|
0x00000000 | UseSelectiveDetection | Use the selective detection technique which is faster. |
0x00000000 | DocumentImage | The image contains only text. |
0x00000000 | RotateLinear | Do not perform any interpolation methods when rotating. |
0x00000000 | None | Use the default settings, such as processing image, applying linear interpolation to rotate the image, and running Document image algorithm. |
0x00000001 | ReturnAngleOnly | Do not deskew (rotate) the image. Use this flag to find the angle of rotation. |
0x00000010 | DoNotFillExposedArea | Determine the suitable background color for fill areas exposed by rotation automatically. The FillColor is ignored. |
0x00000100 | Threshold | Do not deskew the image if the deskew angle is very small (less than 0.5 degrees). |
0x00001000 | RotateResample | Perform bilinear interpolation when rotating. |
0x00002000 | RotateBicubic | Perform bicubic interpolation when rotating. |
0x00010000 | DocumentAndPictures | The image contains text and pictures or light text. |
0x00100000 | UseHighSpeedRotate | Use fast rotation speed (moderate quality, only for 1-bit images). |
0x01000000 | UseCheckDeskew | Use the bank check algorithm to deskew the image. This algorithm considers many features common to standard bank checks in order to determine orientation. |
0x02000000 | UseLineDetectionCheckDeskew | Use the bank check line detection algorithm to deskew the image. |
0x04000000 | UseExtendedDeskew | Increase the possible deskew angle (from 10 degrees to 45 degrees in either direction). In addition, it adds the capability to specify the resolution of the rotation step. |
0x10000000 | DoNotPerformPreProcessing | Do not perform pre-processing on the image before deskewing it. |
0x20000000 | UseNormalDetection | Do not use the selective detection technique which is more accurate. |
You can use a bitwise OR ( ¦ ) to specify one flag from each of the following groups:
Group | Flags |
Flags that indicate whether to deskew the image after the method finds the skew angle. | ReturnAngleOnly |
Flags that indicate which background color to use. | DoNotFillExposedArea |
Flags that indicate whether to deskew the image if the skew angle is very small. | Threshold |
Flags that specify which type of interpolation to use. | RotateLinear, RotateResample, RotateBicubic |
Flags that indicate whether the image contains mostly text, or text and pictures. | DocumentImage, DocumentAndPictures |
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