Image Constructor (Int32, Int32, Int32, DataType)

CVB.Net Documentation
Creates an uninitialized image with the given width and height, numPlanes infos.

Namespace:  Stemmer.Cvb
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public Image(
	int width,
	int height,
	int numPlanes,
	DataType dataType
)

Parameters

width
Type: SystemInt32
Width of the image in pixels.
height
Type: SystemInt32
Height of the image in pixels.
numPlanes
Type: SystemInt32
Number of (color) infos.
dataType
Type: Stemmer.CvbDataType
Pixel data type.
Exceptions

ExceptionCondition
ArgumentOutOfRangeExceptionIf width, height are negative; or if numPlanes is smaller than one.
InsufficientMemoryExceptionIf not enough memory is available to create the image.
Remarks

This constructor defines also the all plane's pixels data format via the dataType.
See Also

Reference