Gets or sets the images minimum grayscale value.
public int MinValue { get; set; }
Public Property MinValue As Integer
public int MinValue {get; set;}
@property (nonatomic, assign) NSInteger minValue
public int getMinValue()
public void setMinValue(int value)
<br/>get_MinValue();<br/>set_MinValue(value);<br/>Object.defineProperty('MinValue');
Minimum grayscale value.
For every value between 0 and MinValue, Black (RGB(0,0,0)) will be used. For values between MinValue and MaxValue, the gray value to be displayed is calculated by : gray = (index - MinValue) * 255 / (MaxValue - MinValue).
index is the intensity value of the pixel. If the intensity value is > MaxValue, the color will be White. If the intensity value is < MinValue, the color will be Black. For those intensity values between MinValue and MaxValue, the above equation is used to determine the color, with index equal to the intensity value.
For more information, refer to Grayscale Images.
For an example, refer to WindowLevel
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