Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ConvertSignedToUnsignedCommandType Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : ConvertSignedToUnsignedCommandType Enumeration



Flag that indicates how the shift will be done when converting images.

Syntax

Visual Basic (Declaration) 
Public Enum ConvertSignedToUnsignedCommandType 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As ConvertSignedToUnsignedCommandType
C# 
public enum ConvertSignedToUnsignedCommandType : Enum 
C++/CLI 
public enum class ConvertSignedToUnsignedCommandType : public Enum 

Members

MemberDescription
ShiftZeroToCenter Shift by 32768 (16-bit images) or by 2048 (12-bit images).
ShiftMinimumToZero Shift all image data to make the minimum value in the image 0 and the maximum value to the maximum possible value (65535 for 16-bit, 4095 for 12-bit).
ShiftNegativeToZero Set all the negative pixels to 0 and leave the positive pixels unchanged. (Achieves the same result as ClearNegativePixelsCommand).
ShiftRangeOnly Shift data by adding half the range to each pixel without changing bits outside the (LowBit-HighBit) range.
ShiftRangeProcessOutSide Shift data by adding half the range to each pixel and set to zero all bits outside the (LowBit-HighBit) range.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.ConvertSignedToUnsignedCommandType

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also