[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Initialisiert eine neue Instanz von RGBImage-Klasse mit Hilfe von drei Matrizen für die Farbkanäle.

Namespace: DynamicNode.Types.Imaging
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)

Syntax

C#
public RGBImage(
	Matrix<byte> r,
	Matrix<byte> g,
	Matrix<byte> b
)
Visual Basic
Public Sub New ( _
	r As Matrix(Of Byte), _
	g As Matrix(Of Byte), _
	b As Matrix(Of Byte) _
)
F#
new : 
        r:Matrix<byte> * 
        g:Matrix<byte> * 
        b:Matrix<byte> -> RGBImage

Parameters

r
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Byte>)>)>
Der Rot-Kanal.
g
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Byte>)>)>
Der Grün-Kanal.
b
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Byte>)>)>
Der Blau-Kanal.

See Also