Enumeration values that specify whether to disable deskew or orientation detection functionality. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[FlagsAttribute()]public enum DetectDeskewOrientationCommandFlags
public:[FlagsAttribute]enum class DetectDeskewOrientationCommandFlags sealed
class DetectDeskewOrientationCommandFlags(Enum):None = 0DoNotDetectDeskewAngle = 1DoNotDetectOrientationAngle = 2
| Value | Member | Description |
|---|---|---|
| 0x00000000 | None | Detect both deskew and orientation angles |
| 0x00000001 | DoNotDetectDeskewAngle | Do not detect the deskew angle |
| 0x00000002 | DoNotDetectOrientationAngle | Do not detect the orientation angle |
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void DetectDeskewOrientationCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"Forms\Forms to be Recognized\OCR\FCC-107_OCR_Filled.tif"));// Prepare the commandDetectDeskewOrientationCommand command = new DetectDeskewOrientationCommand();// Detect/correct skew and orientation, filling with blackcommand.DeskewDetection.FillColor = RasterColor.Black;command.DeskewDetection.Flags = DeskewDetectionDataFlags.DocumentAndPictures | DeskewDetectionDataFlags.RotateBicubic;command.Flags = DetectDeskewOrientationCommandFlags.None;command.OrientationDetection.Flags = OrientationDetectionDataFlags.None;command.Run(image);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";}
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
