C#
VB
Java
Objective-C
WinRT C#
C++
Flag that indicates how the shift will be done when converting images.
public enum ConvertSignedToUnsignedCommandType
Public Enum ConvertSignedToUnsignedCommandType
public enum ConvertSignedToUnsignedCommandType
typedef NS_ENUM(NSInteger, LTConvertSignedToUnsignedCommandType)
public enum ConvertSignedToUnsignedCommandType
Leadtools.ImageProcessing.Core.ConvertSignedToUnsignedCommandType = function() { };
Leadtools.ImageProcessing.Core.ConvertSignedToUnsignedCommandType.prototype = {<br/>
ShiftZeroToCenter = 0,
ShiftMinimumToZero = 1,
ShiftNegativeToZero = 2,
ShiftRangeOnly = 3,
ShiftRangeProcessOutSide = 4,
};
public enum class ConvertSignedToUnsignedCommandType
Members
Value | Member | Description |
---|---|---|
0 | ShiftZeroToCenter | Shift by 32768 (16-bit images) or by 2048 (12-bit images). |
1 | 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). |
2 | ShiftNegativeToZero | Set all the negative pixels to 0 and leave the positive pixels unchanged. (Achieves the same result as ClearNegativePixelsCommand). |
3 | ShiftRangeOnly | Shift data by adding half the range to each pixel without changing bits outside the (LowBit-HighBit) range. |
4 | ShiftRangeProcessOutSide | Shift data by adding half the range to each pixel and set to zero all bits outside the (LowBit-HighBit) range. |
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET