[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Bildet einen Mittelwert für die quadratische Umgebung eines Pixels.

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

Syntax

C#
public static byte BuildMean(
	Matrix<byte> bitmap,
	int radius,
	int bmpW,
	int bmpH,
	int x,
	int y
)
Visual Basic
Public Shared Function BuildMean ( _
	bitmap As Matrix(Of Byte), _
	radius As Integer, _
	bmpW As Integer, _
	bmpH As Integer, _
	x As Integer, _
	y As Integer _
) As Byte
F#
static member BuildMean : 
        bitmap:Matrix<byte> * 
        radius:int * 
        bmpW:int * 
        bmpH:int * 
        x:int * 
        y:int -> byte 

Parameters

bitmap
Type: DynamicNode.Types.Base..::..Matrix<(Of <(<'Byte>)>)>
Eine Matrix als Bitmap.
radius
Type: System..::..Int32
Der Radius (halbe Quadratgröße).
bmpW
Type: System..::..Int32
Die Breite des Bitmaps.
bmpH
Type: System..::..Int32
Die Höhe des Bitmaps.
x
Type: System..::..Int32
Die X-Koordinate des Pixels.
y
Type: System..::..Int32
Die Y-Koordinate des Pixels.

Return Value

Den Mittelwert der Umgebung eines Pixels.

See Also