[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Initialisiert eine neue Instanz von LCHImage32-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 LCHImage32(
	Matrix<float> l,
	Matrix<float> c,
	Matrix<float> h
)
Visual Basic
Public Sub New ( _
	l As Matrix(Of Single), _
	c As Matrix(Of Single), _
	h As Matrix(Of Single) _
)
F#
new : 
        l:Matrix<float32> * 
        c:Matrix<float32> * 
        h:Matrix<float32> -> LCHImage32

Parameters

l
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Single>)>)>
Der L-Kanal.
c
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Single>)>)>
Der C-Kanal.
h
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Single>)>)>
Der H-Kanal.

See Also