|
ArrayToImage Constructor (Int32, Int32, Double, Double)
|
Namespace:
Accord.Imaging.Converters
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntax public ArrayToImage(
int width,
int height,
double min,
double max
)
Public Sub New (
width As Integer,
height As Integer,
min As Double,
max As Double
)
Request Example
View SourceParameters
- width
- Type: SystemInt32
The width of the image to be created. - height
- Type: SystemInt32
The height of the image to be created. - min
- Type: SystemDouble
The minimum double value in the double array
associated with the darkest color. Default is 0.
- max
- Type: SystemDouble
The maximum double value in the double array
associated with the brightest color. Default is 1.
See Also